summaryrefslogtreecommitdiff
path: root/gst/mpegdemux/gstmpegtsdemux.c
diff options
context:
space:
mode:
authorTim-Philipp Müller <tim.muller@collabora.co.uk>2011-06-04 20:35:03 +0100
committerTim-Philipp Müller <tim.muller@collabora.co.uk>2011-06-04 20:35:03 +0100
commit0777b678f5c49bc50895daecaa6af70073398688 (patch)
tree7cc503c5a1fcb750371bd255205ec6f1f2b9e09c /gst/mpegdemux/gstmpegtsdemux.c
parent335293bf50e74fd9a4053d7441b301aafd0428c5 (diff)
gst: some more unused-but-set-variable warning fixes
Diffstat (limited to 'gst/mpegdemux/gstmpegtsdemux.c')
-rw-r--r--gst/mpegdemux/gstmpegtsdemux.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/gst/mpegdemux/gstmpegtsdemux.c b/gst/mpegdemux/gstmpegtsdemux.c
index 2c5c6cc1e..986914d0c 100644
--- a/gst/mpegdemux/gstmpegtsdemux.c
+++ b/gst/mpegdemux/gstmpegtsdemux.c
@@ -2253,11 +2253,11 @@ gst_mpegts_demux_parse_stream (GstMpegTSDemux * demux, GstMpegTSStream * stream,
const guint8 * in_data, guint in_size)
{
GstFlowReturn ret;
- gboolean transport_error_indicator;
+ gboolean transport_error_indicator G_GNUC_UNUSED;
+ gboolean transport_priority G_GNUC_UNUSED;
gboolean payload_unit_start_indicator;
- gboolean transport_priority;
guint16 PID;
- guint8 transport_scrambling_control;
+ guint8 transport_scrambling_control G_GNUC_UNUSED;
guint8 adaptation_field_control;
guint8 continuity_counter;
const guint8 *data = in_data;