mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-27 04:01:08 +00:00
video-frame: fix height/width assertions
As commit 274984e8
states:
When doing CROP META it is expected that the width and/or height
in the GstVideoMeta is bigger or equal to the caps negotiated size.
https://bugzilla.gnome.org/show_bug.cgi?id=741030
This commit is contained in:
parent
3205e90e83
commit
5d456c7adc
1 changed files with 2 additions and 2 deletions
|
@ -74,8 +74,8 @@ gst_video_frame_map_id (GstVideoFrame * frame, GstVideoInfo * info,
|
|||
if (meta) {
|
||||
/* All these values must be consistent */
|
||||
g_return_val_if_fail (info->finfo->format == meta->format, FALSE);
|
||||
g_return_val_if_fail (info->width >= meta->width, FALSE);
|
||||
g_return_val_if_fail (info->height >= meta->height, FALSE);
|
||||
g_return_val_if_fail (info->width <= meta->width, FALSE);
|
||||
g_return_val_if_fail (info->height <= meta->height, FALSE);
|
||||
g_return_val_if_fail (info->finfo->n_planes == meta->n_planes, FALSE);
|
||||
|
||||
frame->info.finfo = gst_video_format_get_info (meta->format);
|
||||
|
|
Loading…
Reference in a new issue