mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-27 12:11:13 +00:00
y4mdec: remove unnecessary semicolon
https://bugzilla.gnome.org/show_bug.cgi?id=745877
This commit is contained in:
parent
3beb48162f
commit
750ed15125
1 changed files with 4 additions and 4 deletions
|
@ -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);
|
gst_video_frame_map (&oframe, &y4mdec->out_info, outbuf, GST_MAP_WRITE);
|
||||||
|
|
||||||
for (i = 0; i < 3; i++) {
|
for (i = 0; i < 3; i++) {
|
||||||
w = GST_VIDEO_FRAME_COMP_WIDTH (&iframe, i);;
|
w = GST_VIDEO_FRAME_COMP_WIDTH (&iframe, i);
|
||||||
h = GST_VIDEO_FRAME_COMP_HEIGHT (&iframe, i);;
|
h = GST_VIDEO_FRAME_COMP_HEIGHT (&iframe, i);
|
||||||
istride = GST_VIDEO_FRAME_COMP_STRIDE (&iframe, i);;
|
istride = GST_VIDEO_FRAME_COMP_STRIDE (&iframe, i);
|
||||||
ostride = GST_VIDEO_FRAME_COMP_STRIDE (&oframe, i);;
|
ostride = GST_VIDEO_FRAME_COMP_STRIDE (&oframe, i);
|
||||||
src = GST_VIDEO_FRAME_COMP_DATA (&iframe, i);
|
src = GST_VIDEO_FRAME_COMP_DATA (&iframe, i);
|
||||||
dest = GST_VIDEO_FRAME_COMP_DATA (&oframe, i);
|
dest = GST_VIDEO_FRAME_COMP_DATA (&oframe, i);
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue