summaryrefslogtreecommitdiff
path: root/gst/y4m
diff options
context:
space:
mode:
authorhoonhee.lee <hoonhee.lee@lge.com>2015-03-09 12:51:21 +0900
committerSebastian Dröge <sebastian@centricular.com>2015-03-09 08:42:11 +0100
commit750ed15125ea563fef7a886ded7ba4b1cc460156 (patch)
treeed27712ef1c4d836d5af022849c3eb7cf0e551f3 /gst/y4m
parent3beb48162fced9c2639ec6ebe08a434f215bb1e8 (diff)
y4mdec: remove unnecessary semicolon
https://bugzilla.gnome.org/show_bug.cgi?id=745877
Diffstat (limited to 'gst/y4m')
-rw-r--r--gst/y4m/gsty4mdec.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/gst/y4m/gsty4mdec.c b/gst/y4m/gsty4mdec.c
index 803ff27277..6bf27a87ef 100644
--- a/gst/y4m/gsty4mdec.c
+++ b/gst/y4m/gsty4mdec.c
@@ -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);