Mercurial > mplayer.hg
diff libmpcodecs/vf.c @ 16946:47c5e9846cd3
ultra simple&slow pp filter, yes yet another spp like filter :)
this one does actually compress&decompress the video at various shifts with lavc while the other spp filters are doing optimized intra only filtering
limitations:
mpeg4 is hardcoded, all options too, pretty trivial to change though, even filtering with non dct codecs like snow could be tried ...
the qscale/qp is only taken fron the first MB of each image and then used for the whole image (would needs some small changes to lavc to let the user set the qscales for the mbs themselfs but iam to lazy ...)
this needs ALOT of cpu time and memory especially at uspp=8 ...
| author | michael |
|---|---|
| date | Tue, 08 Nov 2005 13:15:19 +0000 |
| parents | c82c0d407ec9 |
| children | 6ff3379a0862 |
line wrap: on
line diff
--- a/libmpcodecs/vf.c Tue Nov 08 11:54:43 2005 +0000 +++ b/libmpcodecs/vf.c Tue Nov 08 13:15:19 2005 +0000 @@ -88,6 +88,7 @@ extern vf_info_t vf_info_remove_logo; extern vf_info_t vf_info_hue; extern vf_info_t vf_info_spp; +extern vf_info_t vf_info_uspp; extern vf_info_t vf_info_fspp; extern vf_info_t vf_info_pp7; extern vf_info_t vf_info_yuvcsp; @@ -173,6 +174,7 @@ &vf_info_hue, #ifdef USE_LIBAVCODEC &vf_info_spp, + &vf_info_uspp, &vf_info_fspp, &vf_info_pp7, #endif
