mnzaki / FFmpeg
forked from FFmpeg/FFmpegaudio-filters-…
Commits on Aug 18, 2011
-
mnzaki committed
Aug 18, 2011 -
mnzaki committed
Aug 18, 2011 -
lavfi: add earwax audio filter, ported from Sox
mnzaki committedAug 18, 2011 -
mnzaki committed
Aug 18, 2011 -
Based on a patch by Hemanth.
-
mnzaki committed
Aug 18, 2011 -
lavfi: refactor query_formats and auto-insert audio conversion filters.
Behaviour has been changed to fail negotiation if fields have been left empty Patch was originally based on a patch by Hemanth.
mnzaki committedAug 18, 2011 -
lavfi: add audio convert filter
Add aconvert filter to perform sample format and channel layout conversion. Based on code by Stefano Sabatini and "S.N. Hemanth Meenakshisundaram" smeenaks@ucsd.edu.
mnzaki committedAug 18, 2011
Commits on Aug 17, 2011
-
lavfi: add asrc_abuffer - audio source buffer filter
Originally based on code by Stefano Sabatini and S. N. Hemanth
mnzaki committedAug 17, 2011 -
mnzaki committed
Aug 17, 2011 -
lavfi: add internal functions for parsing format arguments
mnzaki committedAug 17, 2011
Commits on Aug 11, 2011
-
Merge remote-tracking branch 'qatar/master'
* qatar/master: ac3enc: add macros for option names to make them more understandable. ac3enc: fix 'channel_coupling' option to actually allow 'auto'. cavs: fix some crashes with invalid bitstreams ac3enc: clip coupling coordinates during calculation Remove incorrect info in documentation of AVCodecContext.bits_per_raw_sample. lavc: fix parentheses placement in avcodec_open2(). Merged-by: Michael Niedermayer <michaelni@gmx.at>
michaelni committedAug 11, 2011 -
cavsdec: check run value validity
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
michaelni committedAug 11, 2011 -
ac3enc: add macros for option names to make them more understandable.
justinruggles committedAug 11, 2011 -
ac3enc: fix 'channel_coupling' option to actually allow 'auto'.
Use 'auto' as the default value.
justinruggles committedAug 11, 2011 -
indevs.texi: fix typo (builf -> build)
Stefano Sabatini committedAug 11, 2011 -
lavdev: add libavfilter virtual input device
This input device is to be considered still experimental, only video output is supported.
Stefano Sabatini committedAug 11, 2011 -
The source was natively integrated into libavfilter, with the name mptestsrc.
Stefano Sabatini committedAug 11, 2011 -
Stefano Sabatini committed
Aug 11, 2011 -
vf_mp: sort listing of vf_info_t symbols
This way it's easier for the programmer to look-up for a specific symbols (e.g. for checking if it's unused).
Stefano Sabatini committedAug 11, 2011 -
vf_select: reindent after the previous commit
Stefano Sabatini committedAug 11, 2011 -
vf_select: add NULL-checks in uninit
Fix NULL pointer dereference in case of failed initialization. Signed-off-by: Stefano Sabatini <stefano.sabatini-lala@poste.it>
-
vf_select: check for isnan when setting t from pts
Stefano Sabatini committedAug 11, 2011 -
vf_select: set start_t if undefined
Previously start_t was never set. Signed-off-by: Stefano Sabatini <stefano.sabatini-lala@poste.it>
Commits on Aug 10, 2011
-
cavs: fix some crashes with invalid bitstreams
This removes all valgrind-reported invalid writes with one specific test file. Fixes http://www.ocert.org/advisories/ocert-2011-002.html Signed-off-by: Mans Rullgard <mans@mansr.com>
mansr committedAug 10, 2011 -
ac3enc: clip coupling coordinates during calculation
This is faster than using the clip_coefficients() function. Also, clipping the coordinates before determining reuse is better since it will compare coordinates that are closer to their final encoded values.
justinruggles committedAug 10, 2011 -
Remove incorrect info in documentation of AVCodecContext.bits_per_raw…
…_sample. bits_per_raw_sample is used in video as well, where sample_fmt is not used.
justinruggles committedAug 10, 2011 -
oggenc: add missing initializer braces to shut up gcc warning.
This fixes the warning: libavformat/oggenc.c:75:7: warning: missing braces around initializer [-Wmissing-braces]ubitux committedAug 10, 2011 -
avidec: add missing initializer braces to shut up gcc warning.
This fixes the warning: libavformat/avidec.c:81:5: warning: missing braces around initializer [-Wmissing-braces]ubitux committedAug 10, 2011 -
alsa: remove too unused variables.
This fixes the two following warnings: libavdevice/alsa-audio-dec.c:62:26: warning: unused variable ‘sw_params’ [-Wunused-variable] libavdevice/alsa-audio-dec.c:109:15: warning: unused variable ‘st’ [-Wunused-variable]ubitux committedAug 10, 2011 -
Always pass a AVFormatContext to av_log.
This is consistent, allows custom handlers to print more info (since they probably know about the AVFormatContext class but not a demuxer-specific one) and also avoids issues due to the class pointer being NULL for non-raw mpegts. Signed-off-by: Reimar Döffinger <Reimar.Doeffinger@gmx.de>
rdoeffinger committedAug 10, 2011 -
cavsdec: avoid possible crash with crafted input
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
michaelni committedAug 10, 2011 -
lavc: fix parentheses placement in avcodec_open2().
Signed-off-by: Anton Khirnov <anton@khirnov.net>