]> git.sesse.net Git - vlc/blobdiff - plugins/filter/deinterlace.c
* ALL: got rid of p_object->p_this which is now useless.
[vlc] / plugins / filter / deinterlace.c
index 6e9590c64573db87ded8fca097ab0fef628c9154..c2adde8149776b16f638899871538adc75fb02bd 100644 (file)
@@ -2,7 +2,7 @@
  * deinterlace.c : deinterlacer plugin for vlc
  *****************************************************************************
  * Copyright (C) 2000, 2001 VideoLAN
- * $Id: deinterlace.c,v 1.2 2002/01/02 14:37:42 sam Exp $
+ * $Id: deinterlace.c,v 1.14 2002/06/01 18:04:48 sam Exp $
  *
  * Authors: Samuel Hocevar <sam@zoy.org>
  *
 #include <stdlib.h>                                      /* malloc(), free() */
 #include <string.h>
 
-#include <videolan/vlc.h>
-
-#include "video.h"
-#include "video_output.h"
+#include <vlc/vlc.h>
+#include <vlc/vout.h>
 
 #include "filter_common.h"
 
@@ -49,10 +47,13 @@ static void *memblend( void *, const void *, const void *, size_t );
  * Build configuration tree.
  *****************************************************************************/
 MODULE_CONFIG_START
+ADD_CATEGORY_HINT( N_("Miscellaneous"), NULL )
+ADD_STRING  ( "deinterlace-mode", "bob", NULL, N_("Deinterlace mode"),
+              N_("one of 'bob' and 'blend'") )
 MODULE_CONFIG_STOP
 
 MODULE_INIT_START
-    SET_DESCRIPTION( "deinterlacing module" )
+    SET_DESCRIPTION( _("deinterlacing module") )
     /* Capability score set to 0 because we don't want to be spawned
      * as a video output unless explicitly requested to */
     ADD_CAPABILITY( VOUT, 0 )
@@ -72,23 +73,23 @@ MODULE_DEACTIVATE_STOP
  * This structure is part of the video output thread descriptor.
  * It describes the Deinterlace specific properties of an output thread.
  *****************************************************************************/
-typedef struct vout_sys_s
+struct vout_sys_s
 {
     int i_mode;
-    struct vout_thread_s *p_vout;
-
-} vout_sys_t;
+    vout_thread_t *p_vout;
+    mtime_t last_date;
+};
 
 /*****************************************************************************
  * Local prototypes
  *****************************************************************************/
-static int  vout_Probe     ( probedata_t *p_data );
-static int  vout_Create    ( struct vout_thread_s * );
-static int  vout_Init      ( struct vout_thread_s * );
-static void vout_End       ( struct vout_thread_s * );
-static void vout_Destroy   ( struct vout_thread_s * );
-static int  vout_Manage    ( struct vout_thread_s * );
-static void vout_Display   ( struct vout_thread_s *, struct picture_s * );
+static int  vout_Create    ( vout_thread_t * );
+static int  vout_Init      ( vout_thread_t * );
+static void vout_End       ( vout_thread_t * );
+static void vout_Destroy   ( vout_thread_t * );
+static int  vout_Manage    ( vout_thread_t * );
+static void vout_Render    ( vout_thread_t *, picture_t * );
+static void vout_Display   ( vout_thread_t *, picture_t * );
 
 /*****************************************************************************
  * Functions exported as capabilities. They are declared as static so that
@@ -96,22 +97,13 @@ static void vout_Display   ( struct vout_thread_s *, struct picture_s * );
  *****************************************************************************/
 static void vout_getfunctions( function_list_t * p_function_list )
 {
-    p_function_list->pf_probe = vout_Probe;
     p_function_list->functions.vout.pf_create     = vout_Create;
     p_function_list->functions.vout.pf_init       = vout_Init;
     p_function_list->functions.vout.pf_end        = vout_End;
     p_function_list->functions.vout.pf_destroy    = vout_Destroy;
     p_function_list->functions.vout.pf_manage     = vout_Manage;
+    p_function_list->functions.vout.pf_render     = vout_Render;
     p_function_list->functions.vout.pf_display    = vout_Display;
-    p_function_list->functions.vout.pf_setpalette = NULL;
-}
-
-/*****************************************************************************
- * intf_Probe: return a score
- *****************************************************************************/
-static int vout_Probe( probedata_t *p_data )
-{
-    return( 0 );
 }
 
 /*****************************************************************************
@@ -127,33 +119,40 @@ static int vout_Create( vout_thread_t *p_vout )
     p_vout->p_sys = malloc( sizeof( vout_sys_t ) );
     if( p_vout->p_sys == NULL )
     {
-        intf_ErrMsg("error: %s", strerror(ENOMEM) );
+        msg_Err( p_vout, "out of memory" );
         return( 1 );
     }
 
     /* Look what method was requested */
-    psz_method = main_GetPszVariable( VOUT_FILTER_VAR, "" );
-
-    while( *psz_method && *psz_method != ':' )
-    {
-        psz_method++;
-    }
+    psz_method = config_GetPsz( p_vout, "deinterlace-mode" );
 
-    if( !strcmp( psz_method, ":bob" ) )
+    if( psz_method == NULL )
     {
+        msg_Err( p_vout, "configuration variable %s empty",
+                         "deinterlace-mode" );
+        msg_Err( p_vout, "no valid deinterlace mode provided, using 'bob'" );
         p_vout->p_sys->i_mode = DEINTERLACE_MODE_BOB;
     }
-    else if( !strcmp( psz_method, ":blend" ) )
-    {
-        p_vout->p_sys->i_mode = DEINTERLACE_MODE_BLEND;
-    }
     else
     {
-        intf_ErrMsg( "filter error: no valid deinterlace mode provided, "
-                     "using deinterlace:bob" );
-        p_vout->p_sys->i_mode = DEINTERLACE_MODE_BOB;
+        if( !strcmp( psz_method, "bob" ) )
+        {
+            p_vout->p_sys->i_mode = DEINTERLACE_MODE_BOB;
+        }
+        else if( !strcmp( psz_method, "blend" ) )
+        {
+            p_vout->p_sys->i_mode = DEINTERLACE_MODE_BLEND;
+        }
+        else
+        {
+            msg_Err( p_vout, "no valid deinterlace mode provided, "
+                             "using 'bob'" );
+            p_vout->p_sys->i_mode = DEINTERLACE_MODE_BOB;
+        }
     }
 
+    free( psz_method );
+
     return( 0 );
 }
 
@@ -188,10 +187,10 @@ static int vout_Init( vout_thread_t *p_vout )
     }
 
     /* Try to open the real video output, with half the height our images */
-    psz_filter = main_GetPszVariable( VOUT_FILTER_VAR, "" );
-    main_PutPszVariable( VOUT_FILTER_VAR, "" );
+    psz_filter = config_GetPsz( p_vout, "filter" );
+    config_PutPsz( p_vout, "filter", NULL );
 
-    intf_WarnMsg( 1, "filter: spawning the real video output" );
+    msg_Dbg( p_vout, "spawning the real video output" );
 
     switch( p_vout->render.i_chroma )
     {
@@ -202,14 +201,14 @@ static int vout_Init( vout_thread_t *p_vout )
         {
         case DEINTERLACE_MODE_BOB:
             p_vout->p_sys->p_vout =
-                vout_CreateThread( NULL,
+                vout_CreateThread( p_vout,
                        p_vout->output.i_width, p_vout->output.i_height / 2,
                        p_vout->output.i_chroma, p_vout->output.i_aspect );
             break;
 
         case DEINTERLACE_MODE_BLEND:
             p_vout->p_sys->p_vout =
-                vout_CreateThread( NULL,
+                vout_CreateThread( p_vout,
                        p_vout->output.i_width, p_vout->output.i_height,
                        p_vout->output.i_chroma, p_vout->output.i_aspect );
             break;
@@ -218,7 +217,7 @@ static int vout_Init( vout_thread_t *p_vout )
 
     case FOURCC_I422:
         p_vout->p_sys->p_vout =
-            vout_CreateThread( NULL,
+            vout_CreateThread( p_vout,
                        p_vout->output.i_width, p_vout->output.i_height,
                        FOURCC_I420, p_vout->output.i_aspect );
         break;
@@ -227,15 +226,18 @@ static int vout_Init( vout_thread_t *p_vout )
         break;
     }
 
+    config_PutPsz( p_vout, "filter", psz_filter );
+    if( psz_filter ) free( psz_filter );
+
     /* Everything failed */
     if( p_vout->p_sys->p_vout == NULL )
     {
-        intf_ErrMsg( "filter error: can't open vout, aborting" );
+        msg_Err( p_vout, "cannot open vout, aborting" );
 
         return( 0 );
     }
  
-    main_PutPszVariable( VOUT_FILTER_VAR, psz_filter );
+    p_vout->p_sys->last_date = 0;
 
     ALLOCATE_DIRECTBUFFERS( VOUT_MAX_PICTURES );
 
@@ -253,7 +255,7 @@ static void vout_End( vout_thread_t *p_vout )
     for( i_index = I_OUTPUTPICTURES ; i_index ; )
     {
         i_index--;
-        free( PP_OUTPUTPICTURE[ i_index ]->planes[ 0 ].p_data );
+        free( PP_OUTPUTPICTURE[ i_index ]->p_data_orig );
     }
 }
 
@@ -264,7 +266,7 @@ static void vout_End( vout_thread_t *p_vout )
  *****************************************************************************/
 static void vout_Destroy( vout_thread_t *p_vout )
 {
-    vout_DestroyThread( p_vout->p_sys->p_vout, NULL );
+    vout_DestroyThread( p_vout->p_sys->p_vout );
 
     free( p_vout->p_sys );
 }
@@ -281,16 +283,22 @@ static int vout_Manage( vout_thread_t *p_vout )
 }
 
 /*****************************************************************************
- * vout_Display: displays previously rendered output
+ * vout_Render: displays previously rendered output
  *****************************************************************************
  * This function send the currently rendered image to Deinterlace image,
  * waits until it is displayed and switch the two rendering buffers, preparing
  * next frame.
  *****************************************************************************/
-static void vout_Display( vout_thread_t *p_vout, picture_t *p_pic )
+static void vout_Render ( vout_thread_t *p_vout, picture_t *p_pic )
 {
     picture_t *p_outpic;
-    int i_index, i_field;
+    int i_plane, i_field;
+    /* 20ms is a bit arbitrary, but it's only for the first image we get */
+    mtime_t new_date = p_vout->p_sys->last_date
+                       ? ( 3 * p_pic->date - p_vout->p_sys->last_date ) / 2
+                       : p_pic->date + 20000;
+
+    p_vout->p_sys->last_date = p_pic->date;
 
     for( i_field = 0 ; i_field < 2 ; i_field++ )
     {
@@ -306,21 +314,21 @@ static void vout_Display( vout_thread_t *p_vout, picture_t *p_pic )
             msleep( VOUT_OUTMEM_SLEEP );
         }   
 
-        /* XXX: completely arbitrary values ! */
         vout_DatePicture( p_vout->p_sys->p_vout, p_outpic,
-                          mdate() + (mtime_t)(50000 + i_field * 20000) );
+                          p_pic->date + i_field ? new_date : p_pic->date );
 
         /* Copy image and skip lines */
-        for( i_index = 0 ; i_index < p_pic->i_planes ; i_index++ )
+        for( i_plane = 0 ; i_plane < p_pic->i_planes ; i_plane++ )
         {
-            pixel_data_t *p_in, *p_out_end, *p_out;
+            u8 *p_in, *p_out_end, *p_out;
             int i_increment;
 
-            p_in = p_pic->planes[ i_index ].p_data
-                       + i_field * p_pic->planes[ i_index ].i_line_bytes;
+            p_in = p_pic->p[i_plane].p_pixels
+                       + i_field * p_pic->p[i_plane].i_pitch;
 
-            p_out = p_outpic->planes[ i_index ].p_data;
-            p_out_end = p_out + p_outpic->planes[ i_index ].i_bytes;
+            p_out = p_outpic->p[i_plane].p_pixels;
+            p_out_end = p_out + p_outpic->p[i_plane].i_pitch
+                                 * p_outpic->p[i_plane].i_lines;
 
             switch( p_vout->render.i_chroma )
             {
@@ -333,71 +341,67 @@ static void vout_Display( vout_thread_t *p_vout, picture_t *p_pic )
                 case DEINTERLACE_MODE_BOB:
                     for( ; p_out < p_out_end ; )
                     {
-                        FAST_MEMCPY( p_out, p_in,
-                                     p_pic->planes[ i_index ].i_line_bytes );
+                        p_vout->p_vlc->pf_memcpy( p_out, p_in,
+                                                  p_pic->p[i_plane].i_pitch );
 
-                        p_out += p_pic->planes[ i_index ].i_line_bytes;
-                        p_in += 2 * p_pic->planes[ i_index ].i_line_bytes;
+                        p_out += p_pic->p[i_plane].i_pitch;
+                        p_in += 2 * p_pic->p[i_plane].i_pitch;
                     }
                     break;
 
                 case DEINTERLACE_MODE_BLEND:
-                    if( i_index != Y_PLANE )
-                    {
-                        for( ; p_out < p_out_end ; )
-                        {
-                            FAST_MEMCPY( p_out, p_in,
-                                     p_pic->planes[ i_index ].i_line_bytes );
-
-                            p_out += p_pic->planes[ i_index ].i_line_bytes;
-
-                            FAST_MEMCPY( p_out, p_in,
-                                     p_pic->planes[ i_index ].i_line_bytes );
-
-                            p_out += p_pic->planes[ i_index ].i_line_bytes;
-                            p_in += 2 * p_pic->planes[ i_index ].i_line_bytes;
-                        }
-                        break;
-                    }
-
                     if( i_field == 0 )
                     {
-                        FAST_MEMCPY( p_out, p_in,
-                                     p_pic->planes[ i_index ].i_line_bytes );
-                        p_in += 2 * p_pic->planes[ i_index ].i_line_bytes;
-                        p_out += p_pic->planes[ i_index ].i_line_bytes;
+                        p_vout->p_vlc->pf_memcpy( p_out, p_in,
+                                                  p_pic->p[i_plane].i_pitch );
+                        p_in += 2 * p_pic->p[i_plane].i_pitch;
+                        p_out += p_pic->p[i_plane].i_pitch;
                     }
 
+                    p_out_end -= p_outpic->p[i_plane].i_pitch;
+
                     for( ; p_out < p_out_end ; )
                     {
-                        FAST_MEMCPY( p_out, p_in,
-                                     p_pic->planes[ i_index ].i_line_bytes );
+                        p_vout->p_vlc->pf_memcpy( p_out, p_in,
+                                                  p_pic->p[i_plane].i_pitch );
 
-                        p_out += p_pic->planes[ i_index ].i_line_bytes;
+                        p_out += p_pic->p[i_plane].i_pitch;
 
-                        memblend( p_out, p_in, p_in + 2 * p_pic->planes[ i_index ].i_line_bytes, p_pic->planes[ i_index ].i_line_bytes );
+                        memblend( p_out, p_in,
+                                  p_in + 2 * p_pic->p[i_plane].i_pitch,
+                                  p_pic->p[i_plane].i_pitch );
+
+                        p_in += 2 * p_pic->p[i_plane].i_pitch;
+                        p_out += p_pic->p[i_plane].i_pitch;
+                    }
 
-                        p_in += 2 * p_pic->planes[ i_index ].i_line_bytes;
-                        p_out += p_pic->planes[ i_index ].i_line_bytes;
+#if 0
+                    if( i_field == 0 )
+                    {
+                        p_in -= 2 * p_pic->p[i_plane].i_pitch;
+                        p_vout->p_vlc->pf_memcpy( p_out, p_in,
+                                                  p_pic->p[i_plane].i_pitch );
                     }
+#endif
+
                     break;
                 }
                 break;
 
             case FOURCC_I422:
 
-                i_increment = 2 * p_pic->planes[ i_index ].i_line_bytes;
+                i_increment = 2 * p_pic->p[i_plane].i_pitch;
 
-                if( i_index == Y_PLANE )
+                if( i_plane == Y_PLANE )
                 {
                     for( ; p_out < p_out_end ; )
                     {
-                        FAST_MEMCPY( p_out, p_in,
-                                 p_pic->planes[ i_index ].i_line_bytes );
-                        p_out += p_pic->planes[ i_index ].i_line_bytes;
-                        FAST_MEMCPY( p_out, p_in,
-                                 p_pic->planes[ i_index ].i_line_bytes );
-                        p_out += p_pic->planes[ i_index ].i_line_bytes;
+                        p_vout->p_vlc->pf_memcpy( p_out, p_in,
+                                                  p_pic->p[i_plane].i_pitch );
+                        p_out += p_pic->p[i_plane].i_pitch;
+                        p_vout->p_vlc->pf_memcpy( p_out, p_in,
+                                                  p_pic->p[i_plane].i_pitch );
+                        p_out += p_pic->p[i_plane].i_pitch;
                         p_in += i_increment;
                     }
                 }
@@ -405,9 +409,9 @@ static void vout_Display( vout_thread_t *p_vout, picture_t *p_pic )
                 {
                     for( ; p_out < p_out_end ; )
                     {
-                        FAST_MEMCPY( p_out, p_in,
-                                 p_pic->planes[ i_index ].i_line_bytes );
-                        p_out += p_pic->planes[ i_index ].i_line_bytes;
+                        p_vout->p_vlc->pf_memcpy( p_out, p_in,
+                                                  p_pic->p[i_plane].i_pitch );
+                        p_out += p_pic->p[i_plane].i_pitch;
                         p_in += i_increment;
                     }
                 }
@@ -422,6 +426,18 @@ static void vout_Display( vout_thread_t *p_vout, picture_t *p_pic )
     }
 }
 
+/*****************************************************************************
+ * vout_Display: displays previously rendered output
+ *****************************************************************************
+ * This function send the currently rendered image to Invert image, waits
+ * until it is displayed and switch the two rendering buffers, preparing next
+ * frame.
+ *****************************************************************************/
+static void vout_Display( vout_thread_t *p_vout, picture_t *p_pic )
+{
+    ;
+}
+
 static void *memblend( void *p_dest, const void *p_s1,
                        const void *p_s2, size_t i_bytes )
 {