mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-23 18:21:04 +00:00
video-converter: Use correct enum, GstVideoFormat instead of GstFormat
This commit is contained in:
parent
9647a8ca78
commit
823f170fac
1 changed files with 2 additions and 2 deletions
|
@ -170,7 +170,7 @@ struct _GstVideoConverter
|
||||||
|
|
||||||
/* data for unpack */
|
/* data for unpack */
|
||||||
GstLineCache *unpack_lines;
|
GstLineCache *unpack_lines;
|
||||||
GstFormat unpack_format;
|
GstVideoFormat unpack_format;
|
||||||
guint unpack_bits;
|
guint unpack_bits;
|
||||||
gboolean unpack_rgb;
|
gboolean unpack_rgb;
|
||||||
gboolean identity_unpack;
|
gboolean identity_unpack;
|
||||||
|
@ -218,7 +218,7 @@ struct _GstVideoConverter
|
||||||
/* pack */
|
/* pack */
|
||||||
GstLineCache *pack_lines;
|
GstLineCache *pack_lines;
|
||||||
guint pack_nlines;
|
guint pack_nlines;
|
||||||
GstFormat pack_format;
|
GstVideoFormat pack_format;
|
||||||
guint pack_bits;
|
guint pack_bits;
|
||||||
gboolean pack_rgb;
|
gboolean pack_rgb;
|
||||||
gboolean identity_pack;
|
gboolean identity_pack;
|
||||||
|
|
Loading…
Reference in a new issue