summaryrefslogtreecommitdiffstats
path: root/gst/videomixer/videomixer.h
diff options
context:
space:
mode:
authorSebastian Dröge <sebastian.droege@collabora.co.uk>2009-05-28 13:54:14 +0200
committerSebastian Dröge <sebastian.droege@collabora.co.uk>2009-05-28 13:54:14 +0200
commit83fc39ccff50b2d6071650e4300f1239ef23f0c0 (patch)
tree93fa621e339528c52c0c4e869dec8eb0064c9dc5 /gst/videomixer/videomixer.h
parent699b696db8dfa17db3f3fe34b19ea1722420e024 (diff)
videomixer: Some cleanup and fix the calculation of the frame size in bytes
Diffstat (limited to 'gst/videomixer/videomixer.h')
-rw-r--r--gst/videomixer/videomixer.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/gst/videomixer/videomixer.h b/gst/videomixer/videomixer.h
index 160a2e70..707bf27b 100644
--- a/gst/videomixer/videomixer.h
+++ b/gst/videomixer/videomixer.h
@@ -82,7 +82,6 @@ struct _GstVideoMixer
gint in_width, in_height;
gint out_width, out_height;
- gint bpp;
gboolean setcaps;
gboolean sendseg;
@@ -104,6 +103,7 @@ struct _GstVideoMixer
void (*fill_checker) (guint8 * dest, gint width, gint height);
void (*fill_color) (guint8 * dest, gint width, gint height, gint colY, gint colU, gint colV);
+ size_t (*calculate_frame_size) (gint width, gint height);
};
struct _GstVideoMixerClass