video-frame: Relax width/height assertion
When doing CROP META it is exepcted that the width and/or height in the GstVideoMeta is bigger or equal to the caps negotiated size.
This commit is contained in:
parent
c5824f1b43
commit
274984e83b
@ -74,8 +74,8 @@ gst_video_frame_map_id (GstVideoFrame * frame, GstVideoInfo * info,
|
|||||||
if (meta) {
|
if (meta) {
|
||||||
/* All these values must be consistent */
|
/* All these values must be consistent */
|
||||||
g_return_val_if_fail (info->finfo->format == meta->format, FALSE);
|
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->width >= meta->width, FALSE);
|
||||||
g_return_val_if_fail (info->height == meta->height, FALSE);
|
g_return_val_if_fail (info->height >= meta->height, FALSE);
|
||||||
g_return_val_if_fail (info->finfo->n_planes == meta->n_planes, FALSE);
|
g_return_val_if_fail (info->finfo->n_planes == meta->n_planes, FALSE);
|
||||||
|
|
||||||
frame->info.finfo = gst_video_format_get_info (meta->format);
|
frame->info.finfo = gst_video_format_get_info (meta->format);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user