- 09 Jun, 2011 15 commits
-
-
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 10 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
-
Diego Biurrun authored
-
Anton Khirnov authored
-
Anton Khirnov authored
Rename it to AVDictionary, since it will be used as such. Tags documentation and metadata conversion API is lavf-specific, so remains there.
-
- 07 Jun, 2011 15 commits
-
-
Diego Biurrun authored
-
Diego Biurrun authored
-
Daniel Kang authored
Change indentation and whitespace; also move HAVE_YASM blocks. Signed-off-by: Diego Biurrun <diego@biurrun.de>
-
Diego Biurrun authored
The AC-3 encoder unconditionally references some symbols from the E-AC-3 encoder; make those references conditional to fix linking.
-
Justin Ruggles authored
-
Justin Ruggles authored
-
Justin Ruggles authored
-
John Stebbins authored
read_sequence_header can change width/height; therefore, re-initialize all tables if width/height changed Signed-off-by: Anton Khirnov <anton@khirnov.net>
-
Justin Ruggles authored
-
Stefano Sabatini authored
Deprecate av_get_bits_per_sample_fmt(), which was a misnamed function. For the moment we don't have sample formats with a non-integer number of bytes, in that case we may need to create a new av_get_bits_per_sample() function. In the meanwhile we prefer to adopt this variant, since avoids divisions by 8 all over the place.
-
Justin Ruggles authored
The current filter implementation should only have the cx coefficients divided by gain in order to give the correct output scale.
-
Ronald S. Bultje authored
-
Ronald S. Bultje authored
-
Ronald S. Bultje authored
-
Ronald S. Bultje authored
-