rtpdec: Rename the free method to close

Many of these functions were named foo_free_context, and since
the functions no longer should free the context itself, only
allocated elements within it, the previous naming was slightly
misleading.

Signed-off-by: Martin Storsjö <martin@martin.st>
This commit is contained in:
Martin Storsjö
2015-02-24 17:01:48 +02:00
parent 8e32b1f096
commit d594dbecce
18 changed files with 38 additions and 38 deletions

View File

@@ -30,7 +30,7 @@ struct PayloadContext {
uint8_t buf[RTP_MAX_PACKET_LENGTH];
};
static void mpegts_free_context(PayloadContext *data)
static void mpegts_close_context(PayloadContext *data)
{
if (!data)
return;
@@ -94,6 +94,6 @@ RTPDynamicProtocolHandler ff_mpegts_dynamic_handler = {
.priv_data_size = sizeof(PayloadContext),
.parse_packet = mpegts_handle_packet,
.init = mpegts_init,
.free = mpegts_free_context,
.close = mpegts_close_context,
.static_payload_id = 33,
};