- 25 Sep, 2012 3 commits
-
-
Nathan Caldwell authored
Signed-off-by: Martin Storsjö <martin@martin.st>
-
Nathan Caldwell authored
Signed-off-by: Martin Storsjö <martin@martin.st>
-
Derek Buitenhuis authored
Needed for cbrtf fallback on systems which lack it. Signed-off-by: Derek Buitenhuis <derek.buitenhuis@gmail.com>
-
- 24 Sep, 2012 12 commits
-
-
Luca Barbato authored
-
Michael Niedermayer authored
Additional safety in case a special ogg stream is crafted with the proper number of Found-by: Mateusz "j00ru" Jurczyk and Gynvael Coldwind Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
-
Luca Barbato authored
The fisbone packets can be muxed in any order as long the last one comes before the first data packet.
-
Luca Barbato authored
Not having the header for a codec is a tell-tale of a broken file.
-
John Van Sickle authored
open-gop can be enabled with "-flags -cgop" Signed-off-by: Anton Khirnov <anton@khirnov.net>
-
Anton Khirnov authored
-
Anton Khirnov authored
This allows using avcodec_free_frame() to free it properly.
-
Anton Khirnov authored
Since an AVFrame now has malloced members (extended_data), it must have a destructor.
-
Anton Khirnov authored
-
Anton Khirnov authored
-
Anton Khirnov authored
Otherwise the frame is uninitialized, so avcodec_get_frame_defaults() cannot determine whether to free extended_data.
-
Anton Khirnov authored
AVFrame is used for both audio and video, so calling the argument 'pic' is misleading.
-
- 23 Sep, 2012 2 commits
-
-
Samuel Pitoiset authored
-
Martin Storsjö authored
This is required in chained muxers, if the SAR happens to be set. Signed-off-by: Martin Storsjö <martin@martin.st>
-
- 22 Sep, 2012 1 commit
-
-
Justin Ruggles authored
Ensure that padded_frame is freed before returning when needed.
-
- 21 Sep, 2012 7 commits
-
-
Reimar Döffinger authored
Not all applications (e.g. MPlayer) set block_align, and when using a different demuxer it might not even be easily available. So fall back to selecting mode based on bit rate as before if block_align has not useful value. It can't be worse than failing to decode completely. (cherry picked from commit 1d0d6305) CC: libav-stable@libav.org Signed-off-by: Reinhard Tartler <siretart@tauware.de>
-
Anton Khirnov authored
-
Anton Khirnov authored
-
Anton Khirnov authored
Fixes bug 372.
-
Anton Khirnov authored
-
Mans Rullgard authored
The Apple assembler refuses to assemble the 3-operand form in Thumb2 even though it is valid syntax. Signed-off-by: Mans Rullgard <mans@mansr.com>
-
Mans Rullgard authored
When building Thumb2 code, the end of a function, where the PIC offsets are placed, need not be aligned. Although the values are only accessed with instructions allowing unaligned addresses, keeping them aligned is preferable. Signed-off-by: Mans Rullgard <mans@mansr.com>
-
- 20 Sep, 2012 4 commits
-
-
Mans Rullgard authored
This allows using a 16-bit opcode when generating Thumb2 code. Signed-off-by: Mans Rullgard <mans@mansr.com>
-
Mans Rullgard authored
v5.0 of the TI ARM compiler changes the version string. This updates the detection to check for both the old and the new strings. Signed-off-by: Mans Rullgard <mans@mansr.com>
-
Janne Grunau authored
This occurs with fuzzed mpeg-ts files. set_codec_from_probe_data() is called with a zeroed AVProbeData since no packet made through for specific stream.
-
Mans Rullgard authored
Inline functions declared without extern do not provide an external definition in standard C99. This code only works because most compilers do not implement the inline semantics correctly. With a stricter compiler, linking fails with unresolved references to these functions. Declaring the functions extern inline works correctly with some compilers while some others still fail to create external definitions. For maximum portability, create a static inline version with an externally visible wrapper for ff_get_mb_score. ff_epzs_motion_search is so large that no sane compiler inlines it anyway, so there the inline keyword can simply be dropped with no effect. Signed-off-by: Mans Rullgard <mans@mansr.com>
-
- 19 Sep, 2012 11 commits
-
-
Anton Khirnov authored
-
Anton Khirnov authored
-
John Van Sickle authored
Signed-off-by: Anton Khirnov <anton@khirnov.net>
-
Yusuke Nakamura authored
Frames described by this grouping are the starter of a closed or an open GOP. This is useful for open GOP of H.264 stream which is not described by sync sample atom. Signed-off-by: Luca Barbato <lu_zero@gentoo.org>
-
Luca Barbato authored
-
Luca Barbato authored
-
Luca Barbato authored
-
Luca Barbato authored
Support Matroska native formatting. On demuxing prepend a Frame container atom (32bit big endian encoded frame size and 'icpf' string). On muxing remove it.
-
Moritz Bunkus authored
Support Matroska native formatting. On demuxing reconstruct the 36-bytes QuickTime atom that the ALAC decoder expects by prepending the "atom size", "tag" and "tag version" fields missing from the Matroska's CodecPrivate element. On muxing remove the initial 12 bytes Sample files are available: http://www.bunkus.org/videotools/mkvtoolnix/samples/alac/alac-in-matroska.mka and the CoreAudio file it was created from with today's mkvmerge: http://www.bunkus.org/videotools/mkvtoolnix/samples/alac/alac-in-matroska-source.cafSigned-off-by: Luca Barbato <lu_zero@gentoo.org>
-
Luca Barbato authored
Stricter validation, explicitly exit on misparsing and some error forwarding from the ebml parsing functions used.
-
Luca Barbato authored
-