summaryrefslogtreecommitdiff
path: root/libavformat
Commit message (Collapse)AuthorAge
...
* mpegts: remove invalid error checkMike Williams2011-07-29
| | | | | | | | mpegts_read_header is used by both mpegts and mpegtsraw, so this erro check is no longer valid. Signed-off-by: Mike Williams <mike@mikebwilliams.com> Signed-off-by: Anton Khirnov <anton@khirnov.net>
* lavf: add forgotten attribute_deprecated to av_find_stream_info()Anton Khirnov2011-07-28
|
* ape: adjust some printf format strings to correctly match argument typesDiego Biurrun2011-07-26
|
* riff: Add mpgv MPEG-2 fourccAlex Converse2011-07-22
| | | | Supported by mplayer and seen in the wild.
* rtp: remove disabled codeDiego Biurrun2011-07-21
|
* mov: add clcp type track as Subtitle stream.Thierry Foucu2011-07-21
| | | | Signed-off-by: Ronald S. Bultje <rsbultje@gmail.com>
* matroskadec: fix integer underflow if header length < probe length.Chris Evans2011-07-19
| | | | | | This fixes a crash with specifically crafted files. Signed-off-by: Ronald S. Bultje <rsbultje@gmail.com>
* rtsp: remove disabled codeDiego Biurrun2011-07-18
|
* gxfenc: place variable declarations before statementsDiego Biurrun2011-07-17
| | | | libavformat/gxfenc.c:409: warning: ISO C90 forbids mixed declarations and code
* lavf: rename enc variable in utils.c:has_codec_parameters()Stefano Sabatini2011-07-17
| | | | | | | Rename it to "avctx", the old name was confusing as the function is used also with decoder contexts. Signed-off-by: Anton Khirnov <anton@khirnov.net>
* lavf: use designated initialisers for all (de)muxers.Anton Khirnov2011-07-17
| | | | It's more readable and less prone to breakage.
* wav: remove a use of deprecated AV_METADATA_ macroAnton Khirnov2011-07-17
|
* rmdec: remove useless ap parameter from rm_read_header_old()Anton Khirnov2011-07-17
|
* lavf/utils: drop av_ prefixes from static functions.Anton Khirnov2011-07-15
|
* avio: don't replicate avio_alloc_context functionality.Anton Khirnov2011-07-15
|
* doxygen: replace @sa tag by the more readable but equivalent @seeDiego Biurrun2011-07-15
|
* doxygen: use Doxygen markup for authors and web links where appropriateDiego Biurrun2011-07-15
|
* doxygen: do not include license boilerplate in Doxygen documentationDiego Biurrun2011-07-15
|
* doxygen: consistently place brief descriptionDiego Biurrun2011-07-14
|
* doxygen: place empty line between brief description and detailed descriptionDiego Biurrun2011-07-14
| | | | Without it, Doxygen cannot separate them into different sections.
* avformat_open_input(): Add braces to shut up gcc warning.Diego Biurrun2011-07-14
| | | | | libavformat/utils.c:599: warning: missing braces around initializer libavformat/utils.c:599: warning: (near initialization for ‘ap.time_base’)
* Add an APIChanges entry and bump minor versions for recent changes.Anton Khirnov2011-07-14
|
* doxygen: Make sure parameter names match between .c and .h files.Diego Biurrun2011-07-14
|
* lavf: fix invalid reads in avformat_find_stream_info()Anton Khirnov2011-07-14
|
* lavf: fix segfault in av_open_input_stream()Anton Khirnov2011-07-13
| | | | ic is NULL in case of error.
* mpegtsenc: set Random Access indicator on keyframe start packetsJindrich Makovicka2011-07-13
| | | | | Signed-off-by: Jindrich Makovicka <jindrich.makovicka@nangu.tv> Signed-off-by: Anton Khirnov <anton@khirnov.net>
* lavf: Cleanup try_decode_frame() logic.Alex Converse2011-07-13
| | | | This fixes AAC playback in ffplay.
* build: move tests/seek_test.c to libavformat and reuse generic build rulesDiego Biurrun2011-07-13
|
* mxfenc: include needed header for ff_iso8601_to_unix_time() prototypeKostya Shishkov2011-07-13
| | | | Signed-off-by: Mans Rullgard <mans@mansr.com>
* Add a check for strptime().Anton Khirnov2011-07-13
| | | | It's an XSI extension, not available on some supported systems.
* lavf: factor out conversion of ISO8601 string to unix timeAnton Khirnov2011-07-13
|
* wav: parse 'bext' metadataTomas Härdin2011-07-13
| | | | Signed-off-by: Anton Khirnov <anton@khirnov.net>
* wav: keep parsing until EOF if the input is seekable and we know the size of ↵Tomas Härdin2011-07-13
| | | | | | the data tag Signed-off-by: Anton Khirnov <anton@khirnov.net>
* wav: Refactor the tag checking into a switch statementTomas Härdin2011-07-13
| | | | Signed-off-by: Anton Khirnov <anton@khirnov.net>
* wav: make sure neither data_size nor sample_count is negative.Tomas Härdin2011-07-13
| | | | Signed-off-by: Anton Khirnov <anton@khirnov.net>
* wav: refactor the 'fmt ' tag search and parsing.Tomas Härdin2011-07-13
| | | | | | | | Moving the search and parsing of the 'fmt ' info the main loop of wav_read_header() allows tags that precede it to be parsed. Creating wav_parse_fmt_tag() makes wav_read_header() easier to read. Signed-off-by: Anton Khirnov <anton@khirnov.net>
* wav: add an option for writing BEXT chunkBenjamin Larsson2011-07-13
| | | | Signed-off-by: Anton Khirnov <anton@khirnov.net>
* Musepack SV7: try to read files without number of frames providedKostya Shishkov2011-07-13
| | | | Signed-off-by: Anton Khirnov <anton@khirnov.net>
* lavf: deprecate AVFormatContext.timestampAnton Khirnov2011-07-12
| | | | It's replaced by 'creation_time' metadata tag.
* matroskaenc: make SSA default subtitle codec.Anton Khirnov2011-07-12
| | | | | It's a better format and we have an encoder for it, so it doesn't fail like CODEC_ID_TEXT.
* oggdec: prevent heap corruption.Chris Evans2011-07-11
| | | | | | | | Specifically crafted samples can reinit ogg->streams[] while reading samples, and thus we should not cache old pointers since these may no longer be valid. Signed-off-by: Ronald S. Bultje <rsbultje@gmail.com>
* mpegts: fix Continuity Counter error detectionJindrich Makovicka2011-07-11
| | | | | | | | | According to MPEG-TS specs, the continuity_counter shall not be incremented when the adaptation_field_control of the packet equals '00' or '10'. Signed-off-by: Jindrich Makovicka <jindrich.makovicka@nangu.tv> Signed-off-by: Anton Khirnov <anton@khirnov.net>
* matroskadec: fix stupid typo (!= -> ==)Anton Khirnov2011-07-10
| | | | Signed-off-by: Mans Rullgard <mans@mansr.com>
* build: rework rules for things in the tools dirMans Rullgard2011-07-10
| | | | | | | | Declaring tools associated with each library in their respective makefiles allows these tools to easily depend on the correct prerequisites and link against the libs they need. Signed-off-by: Mans Rullgard <mans@mansr.com>
* matroskadec: reindentAnton Khirnov2011-07-10
|
* matroskadec: defer parsing of cues element until we seek.Aaron Colwell2011-07-10
| | | | | | | This decreases startup latency. Signed-off-by: Ronald S. Bultje <rsbultje@gmail.com> Signed-off-by: Anton Khirnov <anton@khirnov.net>
* lavc: make avcodec_alloc_context3 officially public.Anton Khirnov2011-07-10
| | | | Deprecate avcodec_alloc_context/2.
* lavf: add avformat_find_stream_info()Anton Khirnov2011-07-10
| | | | It supports passing options to codecs.
* segafilm: add support for videos with cri adx adpcmMatthew Hoops2011-07-09
| | | | Signed-off-by: Ronald S. Bultje <rsbultje@gmail.com>
* gxf: Fix 25 fps DV material in GXF being misdetected as 50 fpsTomas Härdin2011-07-09
| | | | | | | | Set DV packet durations using fields_per_frame. This requires turning gxf_stream_info into the demuxer's context for access to the value in gxf_packet(). Since MPEG-2 seems to work fine this done only for DV. Signed-off-by: Anton Khirnov <anton@khirnov.net>