]> git.sesse.net Git - vlc/blobdiff - modules/video_filter/mosaic.h
Update NEWS, LIST and po for DASH
[vlc] / modules / video_filter / mosaic.h
index 39b80a77d91d355a855e3b3b6fcafd1ac674ae01..5e634fa10fbb64009866cc97050cb1f75bef85d0 100644 (file)
@@ -29,6 +29,10 @@ typedef struct bridged_es_t
     picture_t **pp_last;
     bool b_empty;
     char *psz_id;
+
+    int i_alpha;
+    int i_x;
+    int i_y;
 } bridged_es_t;
 
 typedef struct bridge_t
@@ -37,8 +41,7 @@ typedef struct bridge_t
     int i_es_num;
 } bridge_t;
 
-#define GetBridge(a) __GetBridge( VLC_OBJECT(a) )
-static bridge_t *__GetBridge( vlc_object_t *p_object )
+static bridge_t *GetBridge( vlc_object_t *p_object )
 {
     vlc_object_t *p_libvlc = VLC_OBJECT( p_object->p_libvlc );
     vlc_value_t val;
@@ -52,4 +55,5 @@ static bridge_t *__GetBridge( vlc_object_t *p_object )
         return val.p_address;
     }
 }
+#define GetBridge(a) GetBridge( VLC_OBJECT(a) )