summaryrefslogtreecommitdiff
path: root/gst/h264parse
diff options
context:
space:
mode:
authorAlessandro Decina <alessandro.d@gmail.com>2009-09-23 12:32:54 +0200
committerAlessandro Decina <alessandro.d@gmail.com>2009-09-23 12:34:47 +0200
commita17393fd3483b4b12e7a55c2558a568860b1b62b (patch)
treef79af0be961b924a60170130d6b818963bf2ab35 /gst/h264parse
parent9c155f10f30a7b8f8dd60a582b4ff7c6b8f6d1fe (diff)
downloadgstreamer-plugins-bad-a17393fd3483b4b12e7a55c2558a568860b1b62b.tar.gz
Fix warnings with gcc 4.0.1.
Diffstat (limited to 'gst/h264parse')
-rw-r--r--gst/h264parse/gsth264parse.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/gst/h264parse/gsth264parse.c b/gst/h264parse/gsth264parse.c
index 643890214..51f391de5 100644
--- a/gst/h264parse/gsth264parse.c
+++ b/gst/h264parse/gsth264parse.c
@@ -442,8 +442,9 @@ gst_sps_decode_vui (GstH264Parse * h, GstNalBs * bs)
sps->pic_struct_present_flag = gst_nal_bs_read (bs, 1);
+
+#if 0
/* Not going down anymore */
- return TRUE;
if (gst_nal_bs_read (bs, 1)) { /* bitstream_restriction_flag */
gst_nal_bs_read (bs, 1); /* motion_vectors_over_pic_boundaries_flag */
@@ -454,6 +455,9 @@ gst_sps_decode_vui (GstH264Parse * h, GstNalBs * bs)
gst_nal_bs_read_ue (bs); /* num_reorder_frames */
gst_nal_bs_read_ue (bs); /* max_dec_frame_buffering */
}
+#endif
+
+ return TRUE;
}
/* decode sequential parameter sets */