Mercurial > mplayer.hg
annotate DOCS/tech/swscaler_filters.txt @ 34416:b3837500181a
Remove #ifdef MP_DEBUG.
Change mp_msg() level to MSGL_DBG2 instead.
Additionally, revise messages.
author | ib |
---|---|
date | Thu, 05 Jan 2012 11:39:27 +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 |