y4mdec: remove unnecessary semicolon
authorhoonhee.lee <hoonhee.lee@lge.com>
Mon, 9 Mar 2015 03:51:21 +0000 (12:51 +0900)
committerSebastian Dröge <sebastian@centricular.com>
Mon, 9 Mar 2015 07:42:11 +0000 (08:42 +0100)
https://bugzilla.gnome.org/show_bug.cgi?id=745877

gst/y4m/gsty4mdec.c

index 803ff27277e31c7761d982bb268ff27d7c359e76..6bf27a87ef8bc0911c023f92a03c441f42eb2278 100644 (file)
@@ -701,10 +701,10 @@ gst_y4m_dec_chain (GstPad * pad, GstObject * parent, GstBuffer * buffer)
       gst_video_frame_map (&oframe, &y4mdec->out_info, outbuf, GST_MAP_WRITE);
 
       for (i = 0; i < 3; i++) {
-        w = GST_VIDEO_FRAME_COMP_WIDTH (&iframe, i);;
-        h = GST_VIDEO_FRAME_COMP_HEIGHT (&iframe, i);;
-        istride = GST_VIDEO_FRAME_COMP_STRIDE (&iframe, i);;
-        ostride = GST_VIDEO_FRAME_COMP_STRIDE (&oframe, i);;
+        w = GST_VIDEO_FRAME_COMP_WIDTH (&iframe, i);
+        h = GST_VIDEO_FRAME_COMP_HEIGHT (&iframe, i);
+        istride = GST_VIDEO_FRAME_COMP_STRIDE (&iframe, i);
+        ostride = GST_VIDEO_FRAME_COMP_STRIDE (&oframe, i);
         src = GST_VIDEO_FRAME_COMP_DATA (&iframe, i);
         dest = GST_VIDEO_FRAME_COMP_DATA (&oframe, i);