summaryrefslogtreecommitdiffstats
path: root/libvo/video_out.h
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2012-08-06 17:51:53 +0200
committerwm4 <wm4@nowhere>2012-08-06 17:51:53 +0200
commitb43adea6c850a3f8e8660428cfa4875e3d698ea6 (patch)
tree74bb15d10c11d6285de5513d8ac3922b4cfdb991 /libvo/video_out.h
parent927c58854fecc5e1dbbecb983fb87870e8433c8a (diff)
downloadmpv-b43adea6c850a3f8e8660428cfa4875e3d698ea6.tar.bz2
mpv-b43adea6c850a3f8e8660428cfa4875e3d698ea6.tar.xz
video_out: rename privsize member to priv_size
Diffstat (limited to 'libvo/video_out.h')
-rw-r--r--libvo/video_out.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/libvo/video_out.h b/libvo/video_out.h
index 203e6b47b7..2bcb15bd4c 100644
--- a/libvo/video_out.h
+++ b/libvo/video_out.h
@@ -229,8 +229,8 @@ struct vo_driver {
*/
void (*uninit)(struct vo *vo);
- // Size of private struct for automatic allocation
- int privsize;
+ // Size of private struct for automatic allocation (0 doesn't allocate)
+ int priv_size;
// List of options to parse into priv struct (requires privsize to be set)
const struct m_option *options;