summaryrefslogtreecommitdiff
path: root/gst-libs
diff options
context:
space:
mode:
authorAurélien Zanelli <aurelien.zanelli@parrot.com>2013-11-07 14:39:26 +0100
committerSebastian Dröge <sebastian@centricular.com>2013-11-07 18:48:22 +0100
commit660979bbf23809d66f2c91508df752ec370cd50f (patch)
tree94355f8c7bc58ff59339d1ced2534a8a05f8c8e7 /gst-libs
parent78f104aa61d03fe5e29cc7b9c63077ba4e134d3a (diff)
downloadgstreamer-plugins-bad-660979bbf23809d66f2c91508df752ec370cd50f.tar.gz
codecparsers: Fix bad condition in h264 parser
https://bugzilla.gnome.org/show_bug.cgi?id=711615
Diffstat (limited to 'gst-libs')
-rw-r--r--gst-libs/gst/codecparsers/gsth264parser.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gst-libs/gst/codecparsers/gsth264parser.c b/gst-libs/gst/codecparsers/gsth264parser.c
index d71b6950a..13f51339d 100644
--- a/gst-libs/gst/codecparsers/gsth264parser.c
+++ b/gst-libs/gst/codecparsers/gsth264parser.c
@@ -1108,7 +1108,7 @@ gst_h264_parser_parse_pic_timing (GstH264NalParser * nalparser,
vui->nal_hrd_parameters.cpb_removal_delay_length_minus1 + 1);
READ_UINT32 (nr, tim->dpb_output_delay,
vui->nal_hrd_parameters.dpb_output_delay_length_minus1 + 1);
- } else if (vui->nal_hrd_parameters_present_flag) {
+ } else if (vui->vcl_hrd_parameters_present_flag) {
READ_UINT32 (nr, tim->cpb_removal_delay,
vui->vcl_hrd_parameters.cpb_removal_delay_length_minus1 + 1);
READ_UINT32 (nr, tim->dpb_output_delay,