From 823f170facdcffbefba590327bbd3eed441d55f2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebastian=20Dr=C3=B6ge?= Date: Wed, 19 Nov 2014 14:38:03 +0100 Subject: [PATCH] video-converter: Use correct enum, GstVideoFormat instead of GstFormat --- gst-libs/gst/video/video-converter.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gst-libs/gst/video/video-converter.c b/gst-libs/gst/video/video-converter.c index ae90771a89..8a3eaf44d4 100644 --- a/gst-libs/gst/video/video-converter.c +++ b/gst-libs/gst/video/video-converter.c @@ -170,7 +170,7 @@ struct _GstVideoConverter /* data for unpack */ GstLineCache *unpack_lines; - GstFormat unpack_format; + GstVideoFormat unpack_format; guint unpack_bits; gboolean unpack_rgb; gboolean identity_unpack; @@ -218,7 +218,7 @@ struct _GstVideoConverter /* pack */ GstLineCache *pack_lines; guint pack_nlines; - GstFormat pack_format; + GstVideoFormat pack_format; guint pack_bits; gboolean pack_rgb; gboolean identity_pack;