]> git.sesse.net Git - vlc/blobdiff - plugins/filter/transform.c
* ALL: got rid of p_object->p_this which is now useless.
[vlc] / plugins / filter / transform.c
index 0c271ed376f4f442dd1cc823a47f288c49c092ed..17f3e1b730a996b18332f1c97b1d1626a9e34a97 100644 (file)
@@ -2,7 +2,7 @@
  * transform.c : transform image plugin for vlc
  *****************************************************************************
  * Copyright (C) 2000, 2001 VideoLAN
- * $Id: transform.c,v 1.13 2002/06/01 12:31:59 sam Exp $
+ * $Id: transform.c,v 1.14 2002/06/01 18:04:48 sam Exp $
  *
  * Authors: Samuel Hocevar <sam@zoy.org>
  *
@@ -200,7 +200,7 @@ static int vout_Init( vout_thread_t *p_vout )
     if( p_vout->p_sys->b_rotation )
     {
         p_vout->p_sys->p_vout =
-            vout_CreateThread( p_vout->p_this,
+            vout_CreateThread( 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
@@ -209,7 +209,7 @@ static int vout_Init( vout_thread_t *p_vout )
     else
     {
         p_vout->p_sys->p_vout =
-            vout_CreateThread( p_vout->p_this,
+            vout_CreateThread( p_vout,
                            p_vout->render.i_width, p_vout->render.i_height,
                            p_vout->render.i_chroma, p_vout->render.i_aspect );
     }