[MPlayer-dev-eng] Re: ANNOUNCE: 0.90-pre8 is out

Andriy N. Gritsenko andrej at lucky.net
Thu Sep 19 12:03:38 CEST 2002


    Hi, Arpi!

Sometime (on Wednesday, September 18 at 22:41) I've received something...
>pre8 is a big bugfix release, PLEASE UPGRADE. NOW.
>it fixes most issues of pre6/pre7.

    I've forgotten about the docs for dint filter. Also I found that
default isn't optimal so it's changed a bit. :)
    My native language isn't English so you are free to correct any
changes I've made on manpage. :)

    With best wishes.
    Andriy.
-------------- next part --------------
diff -udpr MPlayer-20020919.orig/DOCS/mplayer.1 MPlayer-20020919/DOCS/mplayer.1
--- MPlayer-20020919.orig/DOCS/mplayer.1	Wed Sep 18 00:49:18 2002
+++ MPlayer-20020919/DOCS/mplayer.1	Thu Sep 19 12:43:47 2002
@@ -1521,6 +1521,11 @@ eq controls. The values can be from -100
 Convert planar YUV 4:2:0 to half-height packed 4:2:2, downsampling luma but
 keeping all chroma samples. Useful for output to low-resolution display
 devices when hardware downscaling is poor quality or is not available.
+.IPs dint[=sense:level]
+Detects and drops first of interlaced frames in video stream. Values can be
+from 0.0 to 1.0 - first (default 0.1) is relative difference between neighbor
+pixels, second (default 0.15) is what part of image have to be detected as
+interlaced to drop the frame.
 .RE
 .
 .TP
diff -udpr MPlayer-20020919.orig/libmpcodecs/vf_dint.c MPlayer-20020919/libmpcodecs/vf_dint.c
--- MPlayer-20020919.orig/libmpcodecs/vf_dint.c	Wed Sep 11 02:18:31 2002
+++ MPlayer-20020919/libmpcodecs/vf_dint.c	Thu Sep 19 12:44:55 2002
@@ -178,7 +178,7 @@ static int open (vf_instance_t *vf, char
     vf->put_image = put_image;
 //    vf->default_reqs=VFCAP_ACCEPT_STRIDE;
     vf->priv = malloc (sizeof(struct vf_priv_s));
-    vf->priv->sense = 0.01;
+    vf->priv->sense = 0.1;
     vf->priv->level = 0.15;
     vf->priv->pmpi = NULL;
     if (args)


More information about the MPlayer-dev-eng mailing list