summaryrefslogtreecommitdiff
path: root/libavfilter/af_pan.c
Commit message (Collapse)AuthorAge
...
* af_pan: remove dual double/int storage of gain.Nicolas George2012-02-22
| | | | libswresample takes care of that now.
* af_pan: move query_format before config_props.Nicolas George2012-02-20
| | | | | That is the logical order in which the functions are called, and there is no longer any need of forward declarations.
* af_pan: remove the indirect function call.Nicolas George2012-02-20
| | | | libswresample is used in all cases.
* af_pan: reindent after last commit.Nicolas George2012-02-20
|
* af_pan: use libswr for rematrixing.Nicolas George2012-02-20
|
* af_pan: comment a tricky piece of code.Nicolas George2012-02-15
|
* pan: fix uninitialized channel_id variable.Clément Bœsch2012-02-15
| | | | Fix broken parsing with pan=2:FL=FR:FR=FL and similar.
* lavfi/pan: copy ref props after filtering samples.Clément Bœsch2012-02-02
| | | | | At least PTS needs to be copied to avoid breaking options such as -t in ffmpeg.
* pan: drop unecessary includes.Clément Bœsch2012-01-24
|
* pan: move query_formats() to avoid forward declarations.Clément Bœsch2012-01-24
|
* pan: reindent after remap commit.Clément Bœsch2012-01-24
|
* pan: add channel mapping capability.Clément Bœsch2012-01-24
|
* pan: raise correct error when there is no param specified.Clément Bœsch2012-01-24
|
* lavfi: add missing periods in descriptions.Clément Bœsch2012-01-20
|
* lavfi: reimplement MPlayer's af_pan filter for libavfilter.Clément Bœsch2011-11-18
Original code by Clément Bœsch. Parameters parsing and misc enhancements by Nicolas George.