summaryrefslogtreecommitdiff
path: root/libavformat/rtpdec_qt.c
Commit message (Collapse)AuthorAge
* avio: avio_ prefixes for get_* functionsAnton Khirnov2011-02-22
| | | | | | | | | | | | | | | In the name of consistency: get_byte -> avio_r8 get_<type> -> avio_r<type> get_buffer -> avio_read get_partial_buffer will be made private later get_strz is left out becase I want to change it later to return something useful. Signed-off-by: Ronald S. Bultje <rsbultje@gmail.com> (cherry picked from commit b7effd4e8338f6ed5bda630ad7ed0809bf458648)
* avio: move init_put_byte() to a new private header and rename itAnton Khirnov2011-02-20
| | | | | | | | init_put_byte should never be used outside of lavf, since sizeof(AVIOContext) isn't part of public ABI. Signed-off-by: Ronald S. Bultje <rsbultje@gmail.com> (cherry picked from commit e731b8d8729e75bfb69f5540e6446d6118dac549)
* avio: rename ByteIOContext to AVIOContext.Anton Khirnov2011-02-20
| | | | | Signed-off-by: Ronald S. Bultje <rsbultje@gmail.com> (cherry picked from commit ae628ec1fd7f54c102bf9e667a3edd404b9b9128)
* Remove final semicolon from some macrosMans Rullgard2011-02-11
| | | | | | | This avoids double semicolons after macro expansion. Signed-off-by: Mans Rullgard <mans@mansr.com> (cherry picked from commit 44adbebe1744c68d66d7f811c38270fdcc89665a)
* Replace remaining occurrences of CODEC_TYPE_* with AVMEDIA_TYPE*Anton Khirnov2011-02-04
| | | | | | | Tested to compile with lavc major bump. Signed-off-by: Mans Rullgard <mans@mansr.com> (cherry picked from commit b2ed95ec48aceb21a9bb47af85d259ee52b8b7ea)
* rtpdec: Remove useless NULL initializations when using designated initializersMartin Storsjö2010-11-29
| | | | 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-29
| | | | | | initializers Originally committed as revision 25843 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add RTP depacketization of the X-QT QuickTime formatMartin Storsjö2010-10-06
Originally committed as revision 25371 to svn://svn.ffmpeg.org/ffmpeg/trunk