diff options
author | Michael Niedermayer | 2015-02-25 00:58:35 +0100 |
---|---|---|
committer | Michael Niedermayer | 2015-02-25 00:58:39 +0100 |
commit | 3130e5be92858b9a15622965cacc9fe59f5336c2 (patch) | |
tree | 28d727a541c482d942304d80162b537fcab2580a /libavformat/rdt.c | |
parent | 7f03f75ce72fe1c6adfc63f621eeb69cde13769a (diff) | |
parent | d594dbecce5f3af7f80bbf5bb1b516d740b69ccd (diff) |
Merge commit 'd594dbecce5f3af7f80bbf5bb1b516d740b69ccd'
* commit 'd594dbecce5f3af7f80bbf5bb1b516d740b69ccd':
rtpdec: Rename the free method to close
Merged-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavformat/rdt.c')
-rw-r--r-- | libavformat/rdt.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavformat/rdt.c b/libavformat/rdt.c index 27c5f9e669..737794b6a9 100644 --- a/libavformat/rdt.c +++ b/libavformat/rdt.c @@ -538,7 +538,7 @@ static av_cold int rdt_init(AVFormatContext *s, int st_index, PayloadContext *rd } static void -rdt_free_context (PayloadContext *rdt) +rdt_close_context (PayloadContext *rdt) { int i; @@ -561,7 +561,7 @@ static RTPDynamicProtocolHandler rdt_ ## n ## _handler = { \ .priv_data_size = sizeof(PayloadContext), \ .init = rdt_init, \ .parse_sdp_a_line = rdt_parse_sdp_line, \ - .free = rdt_free_context, \ + .close = rdt_close_context, \ .parse_packet = rdt_parse_packet \ } |