mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-18 14:26:43 +00:00
videoscale: Fix compiler warning in unit test
error: implicit conversion from enumeration type 'GstFormat' to different enumeration type 'GstVideoFormat'
This commit is contained in:
parent
4046a880de
commit
e22243b2d0
1 changed files with 1 additions and 1 deletions
|
@ -34,7 +34,7 @@ get_num_formats (void)
|
|||
{
|
||||
guint i = 2;
|
||||
|
||||
while (gst_video_format_to_string ((GstFormat) i) != NULL)
|
||||
while (gst_video_format_to_string ((GstVideoFormat) i) != NULL)
|
||||
++i;
|
||||
|
||||
return i;
|
||||
|
|
Loading…
Reference in a new issue