summaryrefslogtreecommitdiff
path: root/gst/jpegformat
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/jpegformat
parent335293bf50e74fd9a4053d7441b301aafd0428c5 (diff)
downloadgstreamer-plugins-bad-0777b678f5c49bc50895daecaa6af70073398688.tar.gz
gst: some more unused-but-set-variable warning fixes
Diffstat (limited to 'gst/jpegformat')
-rw-r--r--gst/jpegformat/gstjpegparse.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/gst/jpegformat/gstjpegparse.c b/gst/jpegformat/gstjpegparse.c
index 1542b6ed3..64b16ae22 100644
--- a/gst/jpegformat/gstjpegparse.c
+++ b/gst/jpegformat/gstjpegparse.c
@@ -438,8 +438,8 @@ gst_jpeg_parse_sof (GstJpegParse * parse, GstByteReader * reader)
guint8 numcomps = 0; /* Number of components in image
(1 for gray, 3 for YUV, etc.) */
guint8 precision; /* precision (in bits) for the samples */
- guint8 compId[3]; /* unique value identifying each component */
- guint8 qtId[3]; /* quantization table ID to use for this comp */
+ guint8 compId[3] G_GNUC_UNUSED; /* unique value identifying each component */
+ guint8 qtId[3] G_GNUC_UNUSED; /* quantization table ID to use for this comp */
guint8 blockWidth[3]; /* Array[numComponents] giving the number of
blocks (horiz) in this component */
guint8 blockHeight[3]; /* Same for the vertical part of this component */
@@ -464,7 +464,7 @@ gst_jpeg_parse_sof (GstJpegParse * parse, GstByteReader * reader)
if (!gst_byte_reader_get_uint8 (reader, &numcomps))
return FALSE;
- if (numcomps > 3)
+ if (numcomps > 3) /* FIXME */
return FALSE;
/* Get decimation and quantization table id for each component */