Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2012-02-21af_pan: move query_format before config_props.Nicolas George
That is the logical order in which the functions are called, and there is no longer any need of forward declarations.
2012-02-21af_pan: remove the indirect function call.Nicolas George
libswresample is used in all cases.
2012-02-20af_pan: reindent after last commit.Nicolas George
2012-02-20af_pan: use libswr for rematrixing.Nicolas George
2012-02-15af_pan: comment a tricky piece of code.Nicolas George
2012-02-15pan: fix uninitialized channel_id variable.Clément Bœsch
Fix broken parsing with pan=2:FL=FR:FR=FL and similar.
2012-02-02lavfi/pan: copy ref props after filtering samples.Clément Bœsch
At least PTS needs to be copied to avoid breaking options such as -t in ffmpeg.
2012-01-24pan: drop unecessary includes.Clément Bœsch
2012-01-24pan: move query_formats() to avoid forward declarations.Clément Bœsch
2012-01-24pan: reindent after remap commit.Clément Bœsch
2012-01-24pan: add channel mapping capability.Clément Bœsch
2012-01-24pan: raise correct error when there is no param specified.Clément Bœsch
2012-01-20lavfi: add missing periods in descriptions.Clément Bœsch
2011-11-18lavfi: reimplement MPlayer's af_pan filter for libavfilter.Clément Bœsch
Original code by Clément Bœsch. Parameters parsing and misc enhancements by Nicolas George.