codecparser: Fix picture packet extension size check

It is at least 34 bit big (5 bytes with byte padding)
This commit is contained in:
Edward Hervey 2012-12-26 13:16:27 +01:00
parent 5e70c76b33
commit 3bb62cbf1d

View file

@ -624,7 +624,7 @@ gst_mpeg_video_parse_picture_extension (GstMpegVideoPictureExt * ext,
if (gst_bit_reader_get_bits_uint8_unchecked (&br, 4) !=
GST_MPEG_VIDEO_PACKET_EXT_PICTURE) {
GST_DEBUG ("Not parsing a picture extension");
GST_DEBUG ("Extension is not a picture extension");
return FALSE;
}