Update of /cvsroot/mplayer/main In directory mplayer:/var/tmp.root/cvs-serv6709 Modified Files: cfg-common.h Log Message: a few filters (should be removed/merged when arpis videofilter stuff is finished) -ssf cgb=<float> -> chrominance gaussian blur (nice to improve picture quality) -ssf lgb=<float> -> luminance gaussian blur (dunno what its good for) -ssf chs=<int> -> shift chrominance horizontally -ssf cvs=<int> -> shift chrominance vertically these will only work if the swscaler is used at all Index: cfg-common.h =================================================================== RCS file: /cvsroot/mplayer/main/cfg-common.h,v retrieving revision 1.24 retrieving revision 1.25 diff -u -r1.24 -r1.25 --- cfg-common.h 21 Jan 2002 09:44:31 -0000 1.24 +++ cfg-common.h 21 Jan 2002 15:22:28 -0000 1.25 @@ -77,6 +77,7 @@ {"oldpp", "MPlayer was compiled without opendivx library\n", CONF_TYPE_PRINT, CONF_NOCFG, 0, 0, NULL}, #endif {"sws", &sws_flags, CONF_TYPE_INT, 0, 0, 2, NULL}, + {"ssf", scaler_filter_conf, CONF_TYPE_SUBCONFIG, 0, 0, 0, NULL}, #ifdef USE_TV {"tv", tvopts_conf, CONF_TYPE_SUBCONFIG, 0, 0, 0, NULL}, @@ -108,6 +109,19 @@ {NULL, NULL, 0, 0, 0, 0, NULL} }; #endif + +extern int sws_chr_vshift; +extern int sws_chr_hshift; +extern float sws_chr_gblur; +extern float sws_lum_gblur; + +struct config scaler_filter_conf[]={ + {"lgb", &sws_lum_gblur, CONF_TYPE_FLOAT, 0, 0, 100.0, NULL}, + {"cgb", &sws_chr_gblur, CONF_TYPE_FLOAT, 0, 0, 100.0, NULL}, + {"cvs", &sws_chr_vshift, CONF_TYPE_INT, 0, 0, 0, NULL}, + {"chs", &sws_chr_hshift, CONF_TYPE_INT, 0, 0, 0, NULL}, + {NULL, NULL, 0, 0, 0, 0, NULL} +}; /* VIVO demuxer options: */ extern int vivo_param_version;
On Mon, Jan 21, 2002 at 04:22:30PM +0100, Michael Niedermayer wrote:
Update of /cvsroot/mplayer/main In directory mplayer:/var/tmp.root/cvs-serv6709
Modified Files: cfg-common.h Log Message: a few filters (should be removed/merged when arpis videofilter stuff is finished) -ssf cgb=<float> -> chrominance gaussian blur (nice to improve picture quality) -ssf lgb=<float> -> luminance gaussian blur (dunno what its good for)
Hey! It's me! ;-) LGB - Gábor
Hi On Monday 21 January 2002 16:22, Gábor Lénárt wrote:
On Mon, Jan 21, 2002 at 04:22:30PM +0100, Michael Niedermayer wrote:
Update of /cvsroot/mplayer/main In directory mplayer:/var/tmp.root/cvs-serv6709
Modified Files: cfg-common.h Log Message: a few filters (should be removed/merged when arpis videofilter stuff is finished) -ssf cgb=<float> -> chrominance gaussian blur (nice to improve picture quality) -ssf lgb=<float> -> luminance gaussian blur (dunno what its good for)
Hey! It's me! ;-) LGB LOL now u can sue me for trademark violation ;)
[...] Michael
On Mon, Jan 21, 2002 at 04:49:14PM +0100, Michael Niedermayer wrote:
Hi
On Monday 21 January 2002 16:22, Gábor Lénárt wrote:
On Mon, Jan 21, 2002 at 04:22:30PM +0100, Michael Niedermayer wrote:
Update of /cvsroot/mplayer/main In directory mplayer:/var/tmp.root/cvs-serv6709
Modified Files: cfg-common.h Log Message: a few filters (should be removed/merged when arpis videofilter stuff is finished) -ssf cgb=<float> -> chrominance gaussian blur (nice to improve picture quality) -ssf lgb=<float> -> luminance gaussian blur (dunno what its good for)
Hey! It's me! ;-) LGB LOL now u can sue me for trademark violation ;)
nop, just change config option to lgb(tm) and write below the trademark rights :)
[...]
Michael _______________________________________________ Mplayer-cvslog mailing list Mplayer-cvslog@mplayerhq.hu http://mplayerhq.hu/mailman/listinfo/mplayer-cvslog
On Mon, Jan 21, 2002 at 04:52:00PM +0100, Alex Beregszaszi wrote:
On Mon, Jan 21, 2002 at 04:49:14PM +0100, Michael Niedermayer wrote:
Hi
On Monday 21 January 2002 16:22, Gábor Lénárt wrote:
On Mon, Jan 21, 2002 at 04:22:30PM +0100, Michael Niedermayer wrote:
Update of /cvsroot/mplayer/main In directory mplayer:/var/tmp.root/cvs-serv6709
Modified Files: cfg-common.h Log Message: a few filters (should be removed/merged when arpis videofilter stuff is finished) -ssf cgb=<float> -> chrominance gaussian blur (nice to improve picture quality) -ssf lgb=<float> -> luminance gaussian blur (dunno what its good for)
Hey! It's me! ;-) LGB LOL now u can sue me for trademark violation ;)
nop, just change config option to lgb(tm) and write below the trademark rights :)
Hmmm, then you will have problems with bash ;-) Or at least you will need write something like this: "lgb(tm)" ;-) -- - Gábor
participants (4)
-
Alex Beregszaszi -
Gábor Lénárt -
Michael Niedermayer -
Michael Niedermayer