]> git.sesse.net Git - vlc/blobdiff - include/vlc_picture.h
mediacodec: skip prerolled frames
[vlc] / include / vlc_picture.h
index 39d50c2f578989d6ca487482c9522ce3f4e2c462..d3e3b99c1f8f5ad6c6b4ca63a1c80ba8357889d0 100644 (file)
@@ -102,7 +102,7 @@ struct picture_t
     /** This way the picture_Release can be overloaded */
     struct
     {
-        vlc_atomic_t refcount;
+        atomic_uintptr_t refcount;
         void (*pf_destroy)( picture_t * );
         picture_gc_sys_t *p_sys;
     } gc;
@@ -235,7 +235,7 @@ VLC_API int picture_Export( vlc_object_t *p_obj, block_t **pp_image, video_forma
  *
  * It can be useful to get the properties of planes.
  */
-VLC_API int picture_Setup( picture_t *, vlc_fourcc_t i_chroma, int i_width, int i_height, int i_sar_num, int i_sar_den );
+VLC_API int picture_Setup( picture_t *, const video_format_t * );
 
 
 /**