summaryrefslogtreecommitdiffstats
path: root/libavformat/rtpdec_svq3.c
Commit message (Collapse)AuthorAgeFilesLines
* lavc: Consistently prefix input buffer definesVittorio Giovara2015-07-271-1/+1
| | | | Signed-off-by: Vittorio Giovara <vittorio.giovara@gmail.com>
* rtpdec: Rename the free method to closeMartin Storsjö2015-02-241-2/+2
| | | | | | | | | 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>
* rtpdec: Use ffio_free_dyn_bufMartin Storsjö2015-02-241-10/+3
| | | | Signed-off-by: Martin Storsjö <martin@martin.st>
* rtpdec: Don't free the payload context in the .free functionMartin Storsjö2015-02-241-1/+0
| | | | | | | | | | | | | | This makes it more consistent with depacketizers that don't have any .free function at all, where the payload context is freed by the surrounding framework. Always free the context in the surrounding framework, having the individual depacketizers only free any data they've specifically allocated themselves. This is similar to how this works for demuxer/muxers/codecs - a component shouldn't free the priv_data that the framework has allocated for it. Signed-off-by: Martin Storsjö <martin@martin.st>
* rtpdec: Get rid of all trivial .alloc/.free functionsMartin Storsjö2015-02-241-6/+1
| | | | Signed-off-by: Martin Storsjö <martin@martin.st>
* rtpdec: Pass the sequence number to depacketizersMartin Storsjö2012-12-211-1/+2
| | | | | | This allows depacketizers to figure out if packets have been lost. Signed-off-by: Martin Storsjö <martin@martin.st>
* rtpdec: factorize identical code used in several handlersAnton Khirnov2012-11-021-5/+4
|
* Replace all CODEC_ID_* with AV_CODEC_ID_*Anton Khirnov2012-08-071-4/+4
|
* doxygen: use Doxygen markup for authors and web links where appropriateDiego Biurrun2011-07-151-1/+1
|
* rtp: Rename the open/close functions to alloc/freeMartin Storsjö2011-04-241-2/+2
| | | | | | | This avoids clashes if we internally want to override the global open function. Signed-off-by: Martin Storsjö <martin@martin.st>
* avio: avio_ prefix for url_close_dyn_bufAnton Khirnov2011-04-031-3/+3
|
* avio: avio_ prefix for url_open_dyn_bufAnton Khirnov2011-04-031-1/+1
|
* Replace FFmpeg with Libav in licence headersMans Rullgard2011-03-191-4/+4
| | | | Signed-off-by: Mans Rullgard <mans@mansr.com>
* avio: avio: avio_ prefixes for put_* functionsAnton Khirnov2011-02-211-1/+1
| | | | | | | | | | | | In the name of consistency: put_byte -> avio_w8 put_<type> -> avio_w<type> put_buffer -> avio_write put_nbyte will be made private put_tag will be merged with avio_put_str Signed-off-by: Ronald S. Bultje <rsbultje@gmail.com>
* avio: rename ByteIOContext to AVIOContext.Anton Khirnov2011-02-201-1/+1
| | | | Signed-off-by: Ronald S. Bultje <rsbultje@gmail.com>
* rtpdec: Remove useless NULL initializations when using designated initializersMartin Storsjö2010-11-291-1/+0
| | | | Originally committed as revision 25844 to svn://svn.ffmpeg.org/ffmpeg/trunk
* rtpdec: Change the qdm2, qt and svq3 depacketizers to use designated ↵Martin Storsjö2010-11-291-7/+7
| | | | | | initializers Originally committed as revision 25843 to svn://svn.ffmpeg.org/ffmpeg/trunk
* rtpdec_svq3: Don't look for the unused RTP_FLAG_KEY flagMartin Storsjö2010-10-031-3/+0
| | | | Originally committed as revision 25327 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Replace deprecated CODEC_TYPE_AUDIO and CODEC_TYPE_VIDEO with theStefano Sabatini2010-09-251-1/+1
| | | | | | corresponding AVMEDIA_TYPE_* symbols. Originally committed as revision 25201 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove mostly unnecessary rtpdec_*.h files, store the declarations in one fileMartin Storsjö2010-07-301-1/+1
| | | | Originally committed as revision 24596 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Include the correct header that actually is used, use quotes instead of ↵Martin Storsjö2010-07-251-1/+1
| | | | | | angle brackets Originally committed as revision 24501 to svn://svn.ffmpeg.org/ffmpeg/trunk
* rtpdec_svq3: Return the timestamp in *timestamp instead of pkt->ptsMartin Storsjö2010-07-141-1/+1
| | | | | | | | | The timestamp of the first RTP packet forming the output AVPacket is written back in *timestamp, which is used in later calculations in generic rtpdec code (together with RTCP sync timestamps) to form the final pkt->pts value. Originally committed as revision 24235 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add RTP depacketization of SVQ3Josh Allmann2010-07-011-0/+138
Patch by Josh Allmann, joshua dot allmann at gmail Originally committed as revision 23941 to svn://svn.ffmpeg.org/ffmpeg/trunk
OpenPOWER on IntegriCloud