- 06 Sep, 2011 21 commits
-
-
Michael Niedermayer authored
* qatar/master: libx264: add 'cplxblur' private option libx264: add 'deblock' private option libx264: add 'b-bias' private option libx264: fix setting some options. libx264: remove useless assignment ac3dec: avoid pointless alloc and indirection for input_buffer mpeg12: cosmetics: reformat as K&R Conflicts: libavcodec/libx264.c libavcodec/mpeg12.c Merged-by: Michael Niedermayer <michaelni@gmx.at>
-
Ramiro Polla authored
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
-
Ramiro Polla authored
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
-
Ramiro Polla authored
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
-
Anton Khirnov authored
Deprecate AVCodecContext.complexityblur
-
Anton Khirnov authored
Deprecate AVCodecContext.deblockalpha/deblockbeta
-
Anton Khirnov authored
Deprecate AVCodecContext.bframebias.
-
Anton Khirnov authored
Specifically: gop_size, max_b_frames, scenechange_threshold, qmin, qmax, max_qdiff, qblur, qcompress and refs. Change their default values to -1 and only use them if the user explicitly set them. Otherwise x264 defaults are used. Move setting those options after x264_param_default_preset(), so they don't get overwritten by it.
-
Anton Khirnov authored
priv_data is memset to 0.
-
Michael Niedermayer authored
Fixes Ticket435 Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
-
Michael Niedermayer authored
Fixes Ticket434 Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
-
Stefano Sabatini authored
This is done in order to clarify the non-video-specific nature of the buffersink code, as the result of the video/audio API unification of the previous commit, and for improving overall consistency.
-
Stefano Sabatini authored
The new API is more generic (no distinction between audio/video for pulling frames), and avoids code duplication. A backward compatibility layer is kept for avoiding tools ABI breaks (only for the video binary interface, audio interface was never used in the tools).
-
Reimar Döffinger authored
Since we now always allocate it, it can simply be made part of the context instead.
-
Michael Niedermayer authored
Fixes Ticket426 Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
-
Michael Niedermayer authored
Fixes Ticket161 Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
-
Michael Niedermayer authored
Fixes Ticket433 Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
-
Michael Niedermayer authored
Fixes Ticket214 Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
-
Michael Niedermayer authored
Fixes Ticket208 Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
-
Diego Biurrun authored
-
Michael Niedermayer authored
Fixes getting_stuck.avi Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
-
- 05 Sep, 2011 19 commits
-
-
Michael Niedermayer authored
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
-
Michael Niedermayer authored
vf_drawtext: always use expanded_text as we always support strftime() now and dont depend on localtime_r() anymore Found-by: Rolf Siegrist Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
-
Michael Niedermayer authored
* qatar/master: ac3enc: Add channel coupling support for the fixed-point AC-3 encoder. ac3enc: scale floating-point coupling channel coefficients in scale_coefficients() rather than in apply_channel_coupling() ac3enc: fix encoding of stereo ac3 files when rematrixing is disabled. wavpack: fix wrong return value in wavpack_decode_block() avconv: fix parsing metadata specifiers. fate: use +frame+slice named constants instead of '3' mpeg12: propagate more real return values through chunk decode error return and fix some indentation wavpack: use context reset in appropriate places avconv: move mux_preload and mux_max_delay to options context avconv: move bitstream filters to options context. avconv: move rate_emu to options context. avconv: move max_frames to options context. avconv: move metadata to options context. avconv: move ts scale to options context. avconv: move chapter maps to options context. avconv: move metadata maps to options context. avconv: move codec_names to options context. Conflicts: avconv.c tests/fate-run.sh Merged-by: Michael Niedermayer <michaelni@gmx.at>
-
Michael Niedermayer authored
Author of the fix is ronald, the enabling & commit message are mine. This fixes commit 4e3e333a Author: Ronald S. Bultje <rsbultje@gmail.com> Date: Tue Jul 5 12:49:11 2011 -0700 swscale: error dithering for 16/9/10-bit to 8-bit. Based on a somewhat similar idea in FFmpeg's swscale copy. The Fix was originally commited in: (and i missed it due to the commit message) commit 5c391a16 Author: Ronald S. Bultje <rsbultje@gmail.com> Date: Fri Jul 8 14:39:04 2011 -0700 swscale: rename uv_off/uv_off2 to uv_off_px/byte.
-
Justin Ruggles authored
Update FATE references accordingly.
-
Justin Ruggles authored
scale_coefficients() rather than in apply_channel_coupling()
-
Justin Ruggles authored
The number of rematrixing bands still needs to be calculated.
-
Kostya Shishkov authored
This function should return number of samples decoded, not number of bytes decoded. Spotted by Uoti Urpala. Signed-off-by: Luca Barbato <lu_zero@gentoo.org>
-
Anton Khirnov authored
After 039267f1, metadata specifiers are passed without the leading ':'. Remove a ++ that didn't take this into account.
-
Anton Khirnov authored
-
Dustin Brody authored
mpeg12: propagate more real return values through chunk decode error return and fix some indentation Signed-off-by: Anton Khirnov <anton@khirnov.net>
-
Kostya Shishkov authored
This fixes improper flushing in the cases when the same frame is decoded in several iterations (for being too large to fit into output buffer) and flush is called mid-decoding and it also resets context in case of decoding errors. Signed-off-by: Anton Khirnov <anton@khirnov.net>
-
Anton Khirnov authored
-
Anton Khirnov authored
Change syntax -- -[vas]bsf are replaced by -bsf:[stream specifier], the argument is now a comma-separated list of bitstream filters.
-
Anton Khirnov authored
Make it work properly with multiple input files.
-
Anton Khirnov authored
Add a -frames option that uses generic stream specifiers, change -[vad]frames into aliases to it.
-
Anton Khirnov authored
It is now possible to set metadata on streams and chapters.
-
Anton Khirnov authored
-
Anton Khirnov authored
-