summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--libcheese/cheese-camera-device.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/libcheese/cheese-camera-device.h b/libcheese/cheese-camera-device.h
index 071eb6b2..45904611 100644
--- a/libcheese/cheese-camera-device.h
+++ b/libcheese/cheese-camera-device.h
@@ -50,12 +50,14 @@ struct _CheeseCameraDevice
* A description of the resolution, in pixels, of the format to capture with a
* #CheeseCameraDevice.
*/
-typedef struct
+struct _CheeseVideoFormat
{
/*< public >*/
gint width;
gint height;
-} CheeseVideoFormat;
+};
+
+typedef struct _CheeseVideoFormat CheeseVideoFormat;
GType cheese_video_format_get_type (void);