annotate DOCS/tech/swscaler_filters.txt @ 23572:a00685941686

demux_mkv very long seek fix The seek code searching for the closest position in the index used "int64_t min_diff=0xFFFFFFFL" as the initial "further from the goal than any real alternative" value. The unit is milliseconds so seeks more than about 75 hours past the end of the file would fail to recognize the last index position as the best match. This was triggered in practice by chapter seek code which apparently uses a seek of 1000000000 seconds forward to mean "seek to the end". The practical effect was that trying to seek to the next chapter in a file without chapters made MPlayer block until it finished reading the file from the current position to the end. Fixed by increasing the initial value from FFFFFFF to FFFFFFFFFFFFFFF.
author uau
date Wed, 20 Jun 2007 18:19:03 +0000
parents 780caed72ac7
children 0ad2da052b2e
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
6348
c5859db5e457 software scaler filter docs
michael
parents:
diff changeset
1 software scaler filter docs
c5859db5e457 software scaler filter docs
michael
parents:
diff changeset
2
c5859db5e457 software scaler filter docs
michael
parents:
diff changeset
3 -ssf cgb=<float> chrominance gaussian blur
22289
780caed72ac7 cosmetics: typo fixes, usefuLL --> useful and aswell --> as well
diego
parents: 9644
diff changeset
4 useful for videos with some chroma (color) noise (TV captures, VHS, ...)
6348
c5859db5e457 software scaler filter docs
michael
parents:
diff changeset
5
c5859db5e457 software scaler filter docs
michael
parents:
diff changeset
6 -ssf lgb=<float> -> luminance gaussian blur
c5859db5e457 software scaler filter docs
michael
parents:
diff changeset
7 hmm, mostly special effect, could be used as lame noise reducer though
c5859db5e457 software scaler filter docs
michael
parents:
diff changeset
8
c5859db5e457 software scaler filter docs
michael
parents:
diff changeset
9 -ssf chs=<int> -> shift chrominance horizontally
c5859db5e457 software scaler filter docs
michael
parents:
diff changeset
10 -ssf cvs=<int> -> shift chrominance vertically
22289
780caed72ac7 cosmetics: typo fixes, usefuLL --> useful and aswell --> as well
diego
parents: 9644
diff changeset
11 useful if the luma & chroma are not aligned exactly
6348
c5859db5e457 software scaler filter docs
michael
parents:
diff changeset
12
c5859db5e457 software scaler filter docs
michael
parents:
diff changeset
13 -ssf cs=<float> -> chrominance sharpen
c5859db5e457 software scaler filter docs
michael
parents:
diff changeset
14 -ssf ls=<float> -> luminance sharpen
c5859db5e457 software scaler filter docs
michael
parents:
diff changeset
15 simple sharpening filter
c5859db5e457 software scaler filter docs
michael
parents:
diff changeset
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
c5859db5e457 software scaler filter docs
michael
parents:
diff changeset
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