diff options
Diffstat (limited to 'gst/videobox/gstvideobox.c')
-rw-r--r-- | gst/videobox/gstvideobox.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gst/videobox/gstvideobox.c b/gst/videobox/gstvideobox.c index bfec65af9..e03edb118 100644 --- a/gst/videobox/gstvideobox.c +++ b/gst/videobox/gstvideobox.c @@ -2750,7 +2750,7 @@ gst_video_box_transform_dimension_value (const GValue * src_val, min = gst_video_box_transform_dimension (min, delta); max = gst_video_box_transform_dimension (max, delta); - if (min > max) { + if (min >= max) { ret = FALSE; g_value_unset (dest_val); } else { |