From 51c75260305f171ea5b760f159451296df35895f Mon Sep 17 00:00:00 2001 From: Sreerenj Balachandran Date: Mon, 28 Jul 2014 11:17:05 +0300 Subject: [PATCH] codecparsers: mpegvideo: Add vbv_delay field to PictureHeader https://bugzilla.gnome.org/show_bug.cgi?id=733872 --- gst-libs/gst/codecparsers/gstmpegvideoparser.c | 4 ++-- gst-libs/gst/codecparsers/gstmpegvideoparser.h | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/gst-libs/gst/codecparsers/gstmpegvideoparser.c b/gst-libs/gst/codecparsers/gstmpegvideoparser.c index 868684f431..365c2c3aba 100644 --- a/gst-libs/gst/codecparsers/gstmpegvideoparser.c +++ b/gst-libs/gst/codecparsers/gstmpegvideoparser.c @@ -830,8 +830,8 @@ gst_mpeg_video_packet_parse_picture_header (const GstMpegVideoPacket * packet, if (hdr->pic_type == 0 || hdr->pic_type > 4) goto bad_pic_type; /* Corrupted picture packet */ - /* skip VBV delay */ - if (!gst_bit_reader_skip (&br, 16)) + /* VBV delay */ + if (!gst_bit_reader_get_bits_uint16 (&br, &hdr->vbv_delay, 16)) goto failed; if (hdr->pic_type == GST_MPEG_VIDEO_PICTURE_TYPE_P diff --git a/gst-libs/gst/codecparsers/gstmpegvideoparser.h b/gst-libs/gst/codecparsers/gstmpegvideoparser.h index 4d76be1457..404460e06b 100644 --- a/gst-libs/gst/codecparsers/gstmpegvideoparser.h +++ b/gst-libs/gst/codecparsers/gstmpegvideoparser.h @@ -380,6 +380,7 @@ struct _GstMpegVideoPictureHdr { guint16 tsn; guint8 pic_type; + guint16 vbv_delay; guint8 full_pel_forward_vector, full_pel_backward_vector;