- 10 Jun, 2011 15 commits
-
-
Justin Ruggles authored
The code was originally committed to Libav on March 25, 2011.
-
Kieran Kunhya authored
This fixes ADTS detection for at least one sample. Signed-off-by: Diego Biurrun <diego@biurrun.de>
-
Martin Storsjö authored
Signed-off-by: Martin Storsjö <martin@martin.st>
-
Martin Storsjö authored
Signed-off-by: Martin Storsjö <martin@martin.st>
-
Martin Storsjö authored
Signed-off-by: Martin Storsjö <martin@martin.st>
-
Martin Storsjö authored
Signed-off-by: Martin Storsjö <martin@martin.st>
-
Martin Storsjö authored
Signed-off-by: Martin Storsjö <martin@martin.st>
-
Martin Storsjö authored
This allows other muxers that chain a RTP muxer to declare the same options easily. Signed-off-by: Martin Storsjö <martin@martin.st>
-
Martin Storsjö authored
Signed-off-by: Martin Storsjö <martin@martin.st>
-
Juan Carlos Rodriguez authored
This is enabled with an AVOption on the RTP muxer. The SDP generator looks for a latm flag in the rtpflags field. Signed-off-by: Martin Storsjö <martin@martin.st>
-
Martin Storsjö authored
Signed-off-by: Martin Storsjö <martin@martin.st>
-
Martin Storsjö authored
Options from the AVFormatContext can be read for modifying the generated SDP. Signed-off-by: Martin Storsjö <martin@martin.st>
-
Yusuke Nakamura authored
mov: Fix wrong timestamp generation for fragmented movies that have time offset caused by the first edit list entry. Signed-off-by: Anton Khirnov <anton@khirnov.net>
-
Michael Niedermayer authored
Fixes issue1613, 621, 562 simultaneously Signed-off-by: Michael Niedermayer <michaelni@gmx.at> Signed-off-by: Anton Khirnov <anton@khirnov.net>
-
Ronald S. Bultje authored
This is part of the Great Evil Plan to simplify swscale.
-
- 09 Jun, 2011 18 commits
-
-
Stefano Sabatini authored
Signed-off-by: Anton Khirnov <anton@khirnov.net>
-
Reimar Döffinger authored
Improves seeking in ffplay with http://samples.mplayerhq.hu/Matroska/RA_missing_timestamps.mkvSigned-off-by: Anton Khirnov <anton@khirnov.net>
-
Anton Khirnov authored
patch submitted by xvid_fan freenet de
-
Anton Khirnov authored
fixes issue2449 patch submitted by xvid_fan freenet de
-
Reimar Döffinger authored
Signed-off-by: Anton Khirnov <anton@khirnov.net>
-
Ronald S. Bultje authored
This is part of the Great Evil Plan to simplify swscale.
-
Ronald S. Bultje authored
Inline functions are easier to read, maintain, modify and test, which justifies the slightly increased source size. This patch also adds support for non-native endianness RGB15/16 and fixes isSupportedOutput() to no longer claim that we support writing non-native RGB565/555/444.
-
Ronald S. Bultje authored
This way the code in the file is less cluttered all-over-the- place.
-
Alex Converse authored
The 'wfex' is just a Microsoft WaveFormatEx struct.
-
Alex Converse authored
-
Alex Converse authored
Make ff_get_wav_header() free existing extradata before allocing a new buffer.
-
Ronald S. Bultje authored
Inline functions are slightly larger in source code, but are easier to handle in source code editors. The binary code generated is the same.
-
Ronald S. Bultje authored
Inline functions are slightly larger in source code, but are easier to handle in source code editors. The binary code generated is the same.
-
Ronald S. Bultje authored
This is part of the Great Evil Plan to simplify swscale.
-
Ronald S. Bultje authored
This generates better code on some non-x86 architectures.
-
Ronald S. Bultje authored
This reduces source code size without affecting the binary.
-
Ronald S. Bultje authored
Remove inline keyword from functions that are never inlined. Use av_always_inline for functions that should be force-inlined for performance reasons. Use av_cold for init functions.
-
Ronald S. Bultje authored
Remove inline keyword for functions that are only called through their function pointers (and thus cannot be inlined); add av_cold keyword to init function, and use av_always_inline instead of inline for functions that must be inlined for performance reasons.
-
- 08 Jun, 2011 7 commits
-
-
Etienne Buira authored
This fixes a potential double free. Signed-off-by: Martin Storsjö <martin@martin.st>
-
Anton Khirnov authored
This might happen if there was an error before priv_data was allocated and result in segfault.
-
Ronald S. Bultje authored
This prevents the following compiler warnings: "warning: initialization from incompatible pointer type". Since the variables are only ever used in inline assembly, their type is actually irrelevant (so the part where it was wrong did not invoke any buggy behaviour).
-
Ronald S. Bultje authored
This way, they look like regular code, which is easier to understand.
-
Ronald S. Bultje authored
Use of this wrapper was removed in a previous patch, but I forgot to actually remove the function itself.
-
Diego Biurrun authored
This fixes the warning: libavformat/options.c:62:1: warning: missing braces around initializer [-Wmissing-braces]
-
Diego Biurrun authored
-