jasperenc: remove unused 'mimetype' variable
authorStefan Kost <ensonic@users.sf.net>
Thu, 19 May 2011 15:45:25 +0000 (18:45 +0300)
committerStefan Kost <ensonic@users.sf.net>
Thu, 19 May 2011 15:48:01 +0000 (18:48 +0300)
As mimetype is not used, we don't need to fetch it and therefore neither need
the structure s.

ext/jp2k/gstjasperenc.c

index 27073e22a8b648ab0a153b8b620c986515c47828..90fca515985d0de3ea65f76457f3ff36dae7b24d 100644 (file)
@@ -299,8 +299,6 @@ static gboolean
 gst_jasper_enc_sink_setcaps (GstPad * pad, GstCaps * caps)
 {
   GstJasperEnc *enc;
-  GstStructure *s;
-  const gchar *mimetype;
   GstVideoFormat format;
   gint width, height;
   gint fps_num, fps_den;
@@ -308,8 +306,6 @@ gst_jasper_enc_sink_setcaps (GstPad * pad, GstCaps * caps)
   gint i;
 
   enc = GST_JASPER_ENC (GST_PAD_PARENT (pad));
-  s = gst_caps_get_structure (caps, 0);
-  mimetype = gst_structure_get_name (s);
 
   /* get info from caps */
   if (!gst_video_format_parse_caps (caps, &format, &width, &height))