Mercurial > mplayer.hg
annotate DOCS/tech/swscaler_filters.txt @ 34398:9120eb514454
Add support of compression algorithm 3 (header stripping) in mkv demuxer.
Patch by Alexander Beregalov (a.beregalov gmail).
author | iive |
---|---|
date | Mon, 02 Jan 2012 12:53:20 +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 |