Mercurial > mplayer.hg
annotate DOCS/tech/swscaler_filters.txt @ 34021:fbb87f092560
Get rid of usage of deprecated palctrl which no longer works anyway.
Set up side data instead.
Note that for lavf demuxer we will use the merged side data anyway,
this is only for our own, e.g. AVI demuxer.
Fixes bug #1976.
author | reimar |
---|---|
date | Sat, 17 Sep 2011 16:48:40 +0000 |
parents | 0ad2da052b2e |
children |
rev | line source |
---|---|
6348 | 1 software scaler filter docs |
2 | |
3 -ssf cgb=<float> chrominance gaussian blur | |
30990 | 4 useful for videos with some chroma (color) noise (TV captures, VHS, ...) |
6348 | 5 |
6 -ssf lgb=<float> -> luminance gaussian blur | |
30990 | 7 hmm, mostly special effect, could be used as lame noise reducer though |
6348 | 8 |
9 -ssf chs=<int> -> shift chrominance horizontally | |
10 -ssf cvs=<int> -> shift chrominance vertically | |
30990 | 11 useful if the luma & chroma are not aligned exactly |
6348 | 12 |
13 -ssf cs=<float> -> chrominance sharpen | |
14 -ssf ls=<float> -> luminance sharpen | |
30990 | 15 simple sharpening filter |
6348 | 16 |
9644
0fe056bdb135
vop -> vf change, small fixes. The Polish documentation should be checked for correctness.
jonas
parents:
6348
diff
changeset
|
17 note: these will only work if the swscaler is used at all (use -vf scale) |
6348 | 18 |
9644
0fe056bdb135
vop -> vf change, small fixes. The Polish documentation should be checked for correctness.
jonas
parents:
6348
diff
changeset
|
19 example: mplayer foobar.avi -vf scale -ssf lgb=3.0 |