]> git.sesse.net Git - vlc/blobdiff - modules/video_filter/transform.c
* modules/gui/wxwindows/*: fixed clean-up of the dialogs provider on exit.
[vlc] / modules / video_filter / transform.c
index 693d8c0ea76d67f7620fbf35e0e2566700d10eae..5a8a4a3f8c6d02f34c4d1b52d6614636e3f08476 100644 (file)
@@ -1,8 +1,8 @@
 /*****************************************************************************
  * transform.c : transform image plugin for vlc
  *****************************************************************************
- * Copyright (C) 2000, 2001 VideoLAN
- * $Id: transform.c,v 1.1 2002/08/04 17:23:43 sam Exp $
+ * Copyright (C) 2000, 2001, 2002, 2003 VideoLAN
+ * $Id: transform.c,v 1.12 2003/05/15 22:27:37 massiot Exp $
  *
  * Authors: Samuel Hocevar <sam@zoy.org>
  *
@@ -10,7 +10,7 @@
  * it under the terms of the GNU General Public License as published by
  * the Free Software Foundation; either version 2 of the License, or
  * (at your option) any later version.
- * 
+ *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
@@ -24,7 +24,6 @@
 /*****************************************************************************
  * Preamble
  *****************************************************************************/
-#include <errno.h>
 #include <stdlib.h>                                      /* malloc(), free() */
 #include <string.h>
 
@@ -49,6 +48,9 @@ static int  Init      ( vout_thread_t * );
 static void End       ( vout_thread_t * );
 static void Render    ( vout_thread_t *, picture_t * );
 
+static int  SendEvents( vlc_object_t *, char const *,
+                        vlc_value_t, vlc_value_t, void * );
+
 /*****************************************************************************
  * Module descriptor
  *****************************************************************************/
@@ -58,10 +60,10 @@ static void Render    ( vout_thread_t *, picture_t * );
 static char *type_list[] = { "90", "180", "270", "hflip", "vflip", NULL };
 
 vlc_module_begin();
-    add_category_hint( N_("Miscellaneous"), NULL );
+    add_category_hint( N_("Miscellaneous"), NULL, VLC_FALSE );
     add_string_from_list( "transform-type", "90", type_list, NULL,
-                          TYPE_TEXT, TYPE_LONGTEXT);
-    set_description( _("image transformation module") );
+                          TYPE_TEXT, TYPE_LONGTEXT, VLC_FALSE);
+    set_description( _("video transformation filter") );
     set_capability( "video filter", 0 );
     add_shortcut( "transform" );
     set_callbacks( Create, Destroy );
@@ -95,7 +97,7 @@ static int Create( vlc_object_t *p_this )
     if( p_vout->p_sys == NULL )
     {
         msg_Err( p_vout, "out of memory" );
-        return( 1 );
+        return VLC_ENOMEM;
     }
 
     p_vout->pf_init = Init;
@@ -150,8 +152,8 @@ static int Create( vlc_object_t *p_this )
 
         free( psz_method );
     }
-    
-    return( 0 );
+
+    return VLC_SUCCESS;
 }
 
 /*****************************************************************************
@@ -161,7 +163,7 @@ static int Init( vout_thread_t *p_vout )
 {
     int i_index;
     picture_t *p_pic;
-    
+
     I_OUTPUTPICTURES = 0;
 
     /* Initialize the output structure */
@@ -175,17 +177,16 @@ static int Init( vout_thread_t *p_vout )
 
     if( p_vout->p_sys->b_rotation )
     {
-        p_vout->p_sys->p_vout =
-            vout_CreateThread( p_vout,
+        p_vout->p_sys->p_vout = vout_Create( p_vout,
                            p_vout->render.i_height, p_vout->render.i_width,
                            p_vout->render.i_chroma,
-                           (u64)VOUT_ASPECT_FACTOR * (u64)VOUT_ASPECT_FACTOR
-                               / (u64)p_vout->render.i_aspect );
+                           (uint64_t)VOUT_ASPECT_FACTOR
+                            * (uint64_t)VOUT_ASPECT_FACTOR
+                            / (uint64_t)p_vout->render.i_aspect );
     }
     else
     {
-        p_vout->p_sys->p_vout =
-            vout_CreateThread( p_vout,
+        p_vout->p_sys->p_vout = vout_Create( p_vout,
                            p_vout->render.i_width, p_vout->render.i_height,
                            p_vout->render.i_chroma, p_vout->render.i_aspect );
     }
@@ -194,12 +195,14 @@ static int Init( vout_thread_t *p_vout )
     if( p_vout->p_sys->p_vout == NULL )
     {
         msg_Err( p_vout, "cannot open vout, aborting" );
-        return( 0 );
+        return VLC_EGENERIC;
     }
+
     ALLOCATE_DIRECTBUFFERS( VOUT_MAX_PICTURES );
 
-    return( 0 );
+    ADD_CALLBACKS( p_vout->p_sys->p_vout, SendEvents );
+
+    return VLC_SUCCESS;
 }
 
 /*****************************************************************************
@@ -226,7 +229,9 @@ static void Destroy( vlc_object_t *p_this )
 {
     vout_thread_t *p_vout = (vout_thread_t *)p_this;
 
-    vout_DestroyThread( p_vout->p_sys->p_vout );
+    DEL_CALLBACKS( p_vout->p_sys->p_vout, SendEvents );
+    vlc_object_detach( p_vout->p_sys->p_vout );
+    vout_Destroy( p_vout->p_sys->p_vout );
 
     free( p_vout->p_sys );
 }
@@ -252,7 +257,7 @@ static void Render( vout_thread_t *p_vout, picture_t *p_pic )
             return;
         }
         msleep( VOUT_OUTMEM_SLEEP );
-    }   
+    }
 
     vout_DatePicture( p_vout->p_sys->p_vout, p_outpic, p_pic->date );
     vout_LinkPicture( p_vout->p_sys->p_vout, p_outpic );
@@ -264,18 +269,19 @@ static void Render( vout_thread_t *p_vout, picture_t *p_pic )
             {
                 int i_pitch = p_pic->p[i_index].i_pitch;
 
-                u8 *p_in = p_pic->p[i_index].p_pixels;
+                uint8_t *p_in = p_pic->p[i_index].p_pixels;
 
-                u8 *p_out = p_outpic->p[i_index].p_pixels;
-                u8 *p_out_end = p_out + p_outpic->p[i_index].i_lines
-                                         * p_outpic->p[i_index].i_pitch;
+                uint8_t *p_out = p_outpic->p[i_index].p_pixels;
+                uint8_t *p_out_end = p_out + p_outpic->p[i_index].i_lines
+                                              * p_outpic->p[i_index].i_pitch;
 
                 for( ; p_out < p_out_end ; )
                 {
-                    u8 *p_line_end;
+                    uint8_t *p_line_end;
 
-                    p_line_end = p_in + p_pic->p[i_index].i_lines
-                                         * p_pic->p[i_index].i_pitch;
+                    p_out_end -= p_outpic->p[i_index].i_pitch
+                                  - p_outpic->p[i_index].i_visible_pitch;
+                    p_line_end = p_in + p_pic->p[i_index].i_lines * i_pitch;
 
                     for( ; p_in < p_line_end ; )
                     {
@@ -291,15 +297,26 @@ static void Render( vout_thread_t *p_vout, picture_t *p_pic )
         case TRANSFORM_MODE_180:
             for( i_index = 0 ; i_index < p_pic->i_planes ; i_index++ )
             {
-                u8 *p_in = p_pic->p[i_index].p_pixels;
-                u8 *p_in_end = p_in + p_pic->p[i_index].i_lines
-                                       * p_pic->p[i_index].i_pitch;
+                uint8_t *p_in = p_pic->p[i_index].p_pixels;
+                uint8_t *p_in_end = p_in + p_pic->p[i_index].i_lines
+                                            * p_pic->p[i_index].i_pitch;
 
-                u8 *p_out = p_outpic->p[i_index].p_pixels;
+                uint8_t *p_out = p_outpic->p[i_index].p_pixels;
 
                 for( ; p_in < p_in_end ; )
                 {
-                    *p_out++ = *(--p_in_end);
+                    uint8_t *p_line_start = p_in_end
+                                             - p_pic->p[i_index].i_pitch;
+                    p_in_end -= p_pic->p[i_index].i_pitch
+                                 - p_pic->p[i_index].i_visible_pitch;
+
+                    for( ; p_line_start < p_in_end ; )
+                    {
+                        *p_out++ = *(--p_in_end);
+                    }
+
+                    p_out += p_outpic->p[i_index].i_pitch
+                              - p_outpic->p[i_index].i_visible_pitch;
                 }
             }
             break;
@@ -309,18 +326,17 @@ static void Render( vout_thread_t *p_vout, picture_t *p_pic )
             {
                 int i_pitch = p_pic->p[i_index].i_pitch;
 
-                u8 *p_in = p_pic->p[i_index].p_pixels;
+                uint8_t *p_in = p_pic->p[i_index].p_pixels;
 
-                u8 *p_out = p_outpic->p[i_index].p_pixels;
-                u8 *p_out_end = p_out + p_outpic->p[i_index].i_lines
-                                         * p_outpic->p[i_index].i_pitch;
+                uint8_t *p_out = p_outpic->p[i_index].p_pixels;
+                uint8_t *p_out_end = p_out + p_outpic->p[i_index].i_lines
+                                              * p_outpic->p[i_index].i_pitch;
 
                 for( ; p_out < p_out_end ; )
                 {
-                    u8 *p_in_end;
+                    uint8_t *p_in_end;
 
-                    p_in_end = p_in + p_pic->p[i_index].i_lines
-                                       * p_pic->p[i_index].i_pitch;
+                    p_in_end = p_in + p_pic->p[i_index].i_lines * i_pitch;
 
                     for( ; p_in < p_in_end ; )
                     {
@@ -328,6 +344,8 @@ static void Render( vout_thread_t *p_vout, picture_t *p_pic )
                         *p_out++ = *p_in_end;
                     }
 
+                    p_out += p_outpic->p[i_index].i_pitch
+                              - p_outpic->p[i_index].i_visible_pitch;
                     p_in++;
                 }
             }
@@ -336,17 +354,17 @@ static void Render( vout_thread_t *p_vout, picture_t *p_pic )
         case TRANSFORM_MODE_VFLIP:
             for( i_index = 0 ; i_index < p_pic->i_planes ; i_index++ )
             {
-                u8 *p_in = p_pic->p[i_index].p_pixels;
-                u8 *p_in_end = p_in + p_pic->p[i_index].i_lines
-                                       * p_pic->p[i_index].i_pitch;
+                uint8_t *p_in = p_pic->p[i_index].p_pixels;
+                uint8_t *p_in_end = p_in + p_pic->p[i_index].i_lines
+                                            * p_pic->p[i_index].i_pitch;
 
-                u8 *p_out = p_outpic->p[i_index].p_pixels;
+                uint8_t *p_out = p_outpic->p[i_index].p_pixels;
 
                 for( ; p_in < p_in_end ; )
                 {
                     p_in_end -= p_pic->p[i_index].i_pitch;
                     p_vout->p_vlc->pf_memcpy( p_out, p_in_end,
-                                              p_pic->p[i_index].i_pitch );
+                                           p_pic->p[i_index].i_visible_pitch );
                     p_out += p_pic->p[i_index].i_pitch;
                 }
             }
@@ -355,15 +373,16 @@ static void Render( vout_thread_t *p_vout, picture_t *p_pic )
         case TRANSFORM_MODE_HFLIP:
             for( i_index = 0 ; i_index < p_pic->i_planes ; i_index++ )
             {
-                u8 *p_in = p_pic->p[i_index].p_pixels;
-                u8 *p_in_end = p_in + p_pic->p[i_index].i_lines
-                                       * p_pic->p[i_index].i_pitch;
+                uint8_t *p_in = p_pic->p[i_index].p_pixels;
+                uint8_t *p_in_end = p_in + p_pic->p[i_index].i_lines
+                                            * p_pic->p[i_index].i_pitch;
 
-                u8 *p_out = p_outpic->p[i_index].p_pixels;
+                uint8_t *p_out = p_outpic->p[i_index].p_pixels;
 
                 for( ; p_in < p_in_end ; )
                 {
-                    u8 *p_line_end = p_in + p_pic->p[i_index].i_pitch;
+                    uint8_t *p_line_end = p_in
+                                           + p_pic->p[i_index].i_visible_pitch;
 
                     for( ; p_in < p_line_end ; )
                     {
@@ -384,3 +403,63 @@ static void Render( vout_thread_t *p_vout, picture_t *p_pic )
     vout_DisplayPicture( p_vout->p_sys->p_vout, p_outpic );
 }
 
+/*****************************************************************************
+ * SendEvents: forward mouse and keyboard events to the parent p_vout
+ *****************************************************************************/
+static int SendEvents( vlc_object_t *p_this, char const *psz_var,
+                       vlc_value_t oldval, vlc_value_t newval, void *_p_vout )
+{
+    vout_thread_t *p_vout = (vout_thread_t *)_p_vout;
+    vlc_value_t sentval = newval;
+
+    /* Translate the mouse coordinates */
+    if( !strcmp( psz_var, "mouse-x" ) )
+    {
+        switch( p_vout->p_sys->i_mode )
+        {
+        case TRANSFORM_MODE_270:
+            sentval.i_int = p_vout->p_sys->p_vout->output.i_width
+                             - sentval.i_int;
+        case TRANSFORM_MODE_90:
+            var_Set( p_vout, "mouse-y", sentval );
+            return VLC_SUCCESS;
+
+        case TRANSFORM_MODE_180:
+        case TRANSFORM_MODE_HFLIP:
+            sentval.i_int = p_vout->p_sys->p_vout->output.i_width
+                             - sentval.i_int;
+            break;
+
+        case TRANSFORM_MODE_VFLIP:
+        default:
+            break;
+        }
+    }
+    else if( !strcmp( psz_var, "mouse-y" ) )
+    {
+        switch( p_vout->p_sys->i_mode )
+        {
+        case TRANSFORM_MODE_90:
+            sentval.i_int = p_vout->p_sys->p_vout->output.i_height
+                             - sentval.i_int;
+        case TRANSFORM_MODE_270:
+            var_Set( p_vout, "mouse-x", sentval );
+            return VLC_SUCCESS;
+
+        case TRANSFORM_MODE_180:
+        case TRANSFORM_MODE_VFLIP:
+            sentval.i_int = p_vout->p_sys->p_vout->output.i_height
+                             - sentval.i_int;
+            break;
+
+        case TRANSFORM_MODE_HFLIP:
+        default:
+            break;
+        }
+    }
+
+    var_Set( p_vout, psz_var, sentval );
+
+    return VLC_SUCCESS;
+}
+