h264parse: Remove useless comparison

sei_pic_struct is unsigned and GST_H264_SEI_PIC_STRUCT_FRAME is zero.

CID: 1461467
This commit is contained in:
Seungha Yang 2020-04-13 20:36:50 +09:00 committed by GStreamer Merge Bot
parent eeb3dd6605
commit 462a8130a6

View file

@ -2814,7 +2814,6 @@ gst_h264_parse_create_pic_timing_sei (GstH264Parse * h264parse,
return NULL;
}
g_assert (h264parse->sei_pic_struct >= GST_H264_SEI_PIC_STRUCT_FRAME);
g_assert (h264parse->sei_pic_struct <=
GST_H264_SEI_PIC_STRUCT_FRAME_TRIPLING);