]> git.sesse.net Git - vlc/blobdiff - include/vlc_vout_wrapper.h
Replaced vout_display_t::get by ::pool.
[vlc] / include / vlc_vout_wrapper.h
index d6a9e2b3ca3d677ef3ccba669c61b0a034fa7ea6..d7ff1966386ce2c85822c8c78919328790e10e11 100644 (file)
 /* XXX DO NOT use it outside the vout module wrapper XXX */
 
 /**
- * It retreive a picture from the display
+ * It retreives a picture pool from the display
  */
-static inline picture_t *vout_display_Get(vout_display_t *vd)
+static inline picture_pool_t *vout_display_Pool(vout_display_t *vd, unsigned count)
 {
-    return vd->get(vd);
+    return vd->pool(vd, count);
 }
 
 /**