2017-03-25 09:21:39 +00:00
|
|
|
/**
|
|
|
|
* The MIT License (MIT)
|
|
|
|
*
|
2019-12-30 02:10:35 +00:00
|
|
|
* Copyright (c) 2013-2020 Winlin
|
2017-03-25 09:21:39 +00:00
|
|
|
*
|
|
|
|
* Permission is hereby granted, free of charge, to any person obtaining a copy of
|
|
|
|
* this software and associated documentation files (the "Software"), to deal in
|
|
|
|
* the Software without restriction, including without limitation the rights to
|
|
|
|
* use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
|
|
|
|
* the Software, and to permit persons to whom the Software is furnished to do so,
|
|
|
|
* subject to the following conditions:
|
|
|
|
*
|
|
|
|
* The above copyright notice and this permission notice shall be included in all
|
|
|
|
* copies or substantial portions of the Software.
|
|
|
|
*
|
|
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
|
|
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
|
|
|
|
* FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
|
|
|
|
* COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
|
|
|
|
* IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
|
|
|
|
* CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
|
|
*/
|
2014-06-22 12:01:25 +00:00
|
|
|
|
2015-01-23 02:07:20 +00:00
|
|
|
#include <srs_rtmp_msg_array.hpp>
|
2014-06-22 12:01:25 +00:00
|
|
|
|
2015-01-23 02:07:20 +00:00
|
|
|
#include <srs_rtmp_stack.hpp>
|
2014-06-22 12:01:25 +00:00
|
|
|
|
2014-11-14 03:24:49 +00:00
|
|
|
SrsMessageArray::SrsMessageArray(int max_msgs)
|
2014-06-22 12:01:25 +00:00
|
|
|
{
|
2014-11-14 03:24:49 +00:00
|
|
|
srs_assert(max_msgs > 0);
|
2014-06-22 12:01:25 +00:00
|
|
|
|
2014-12-05 15:03:52 +00:00
|
|
|
msgs = new SrsSharedPtrMessage*[max_msgs];
|
2014-11-14 03:24:49 +00:00
|
|
|
max = max_msgs;
|
2014-06-22 12:01:25 +00:00
|
|
|
|
2014-12-05 08:44:11 +00:00
|
|
|
zero(max_msgs);
|
2014-06-22 12:01:25 +00:00
|
|
|
}
|
|
|
|
|
2014-11-13 08:56:41 +00:00
|
|
|
SrsMessageArray::~SrsMessageArray()
|
2014-06-22 12:01:25 +00:00
|
|
|
{
|
2014-11-19 02:44:50 +00:00
|
|
|
// we just free the msgs itself,
|
|
|
|
// both delete and delete[] is ok,
|
2019-04-22 00:12:17 +00:00
|
|
|
// for all msgs is already freed by send_and_free_messages.
|
2015-11-02 03:02:27 +00:00
|
|
|
srs_freepa(msgs);
|
2014-06-22 12:01:25 +00:00
|
|
|
}
|
|
|
|
|
2014-12-05 08:44:11 +00:00
|
|
|
void SrsMessageArray::free(int count)
|
|
|
|
{
|
|
|
|
// initialize
|
|
|
|
for (int i = 0; i < count; i++) {
|
2014-12-05 15:03:52 +00:00
|
|
|
SrsSharedPtrMessage* msg = msgs[i];
|
2014-12-05 08:44:11 +00:00
|
|
|
srs_freep(msg);
|
|
|
|
|
|
|
|
msgs[i] = NULL;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void SrsMessageArray::zero(int count)
|
|
|
|
{
|
|
|
|
// initialize
|
|
|
|
for (int i = 0; i < count; i++) {
|
|
|
|
msgs[i] = NULL;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-08-02 14:18:39 +00:00
|
|
|
|