flac, jpeg: fix compiler warning
authorTim-Philipp Müller <tim.muller@collabora.co.uk>
Wed, 28 Sep 2011 16:29:08 +0000 (17:29 +0100)
committerTim-Philipp Müller <tim.muller@collabora.co.uk>
Wed, 28 Sep 2011 16:39:06 +0000 (17:39 +0100)
ext/flac/gstflactag.c
ext/jpeg/gstjpegdec.c
ext/jpeg/gstjpegenc.c

index cca291a..b3cff1f 100644 (file)
@@ -171,9 +171,6 @@ static gboolean
 gst_flac_tag_sink_event (GstPad * pad, GstEvent * event)
 {
   gboolean ret;
-  GstFlacTag *tag;
-
-  tag = GST_FLAC_TAG (GST_PAD_PARENT (pad));
 
   switch (GST_EVENT_TYPE (event)) {
     default:
index 13a78ff..170435e 100644 (file)
@@ -963,7 +963,7 @@ gst_jpeg_dec_decode_direct (GstJpegDec * dec, GstVideoFrame * frame)
   gint lines, v_samp[3];
   guchar *base[3], *last[3];
   gint stride[3];
-  guint width, height;
+  guint height;
 
   line[0] = y;
   line[1] = u;
@@ -976,7 +976,6 @@ gst_jpeg_dec_decode_direct (GstJpegDec * dec, GstVideoFrame * frame)
   if (G_UNLIKELY (v_samp[0] > 2 || v_samp[1] > 2 || v_samp[2] > 2))
     goto format_not_supported;
 
-  width = GST_VIDEO_FRAME_WIDTH (frame);
   height = GST_VIDEO_FRAME_HEIGHT (frame);
 
   for (i = 0; i < 3; i++) {
index 80993e9..c19e616 100644 (file)
@@ -511,7 +511,7 @@ gst_jpegenc_chain (GstPad * pad, GstBuffer * buf)
 {
   GstFlowReturn ret;
   GstJpegEnc *jpegenc;
-  guint height, width;
+  guint height;
   guchar *base[3], *end[3];
   guint stride[3];
   gint i, j, k;
@@ -528,7 +528,6 @@ gst_jpegenc_chain (GstPad * pad, GstBuffer * buf)
     goto invalid_frame;
 
   height = GST_VIDEO_FRAME_HEIGHT (&frame);
-  width = GST_VIDEO_FRAME_WIDTH (&frame);
 
   GST_LOG_OBJECT (jpegenc, "got buffer of %lu bytes",
       gst_buffer_get_size (buf));