summaryrefslogtreecommitdiff
path: root/gst/videoconvert
diff options
context:
space:
mode:
authorWim Taymans <wtaymans@redhat.com>2014-10-24 11:45:13 +0200
committerWim Taymans <wtaymans@redhat.com>2014-10-29 16:26:10 +0100
commit71efeaaa6f7e7d760e2ab9f384aa952aefc2d95d (patch)
treeed692a5bfd5dd625709f491b34d056cef9999694 /gst/videoconvert
parent6547985f27d93d3b80ee7f42aaf7112f5c2070d7 (diff)
downloadgstreamer-plugins-base-71efeaaa6f7e7d760e2ab9f384aa952aefc2d95d.tar.gz
video-convert: swap src and dest
It is more natural and consistent with other uses.
Diffstat (limited to 'gst/videoconvert')
-rw-r--r--gst/videoconvert/gstvideoconvert.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gst/videoconvert/gstvideoconvert.c b/gst/videoconvert/gstvideoconvert.c
index dce4638df..58ed6b094 100644
--- a/gst/videoconvert/gstvideoconvert.c
+++ b/gst/videoconvert/gstvideoconvert.c
@@ -554,7 +554,7 @@ gst_video_convert_transform_frame (GstVideoFilter * filter,
GST_VIDEO_INFO_NAME (&filter->in_info),
GST_VIDEO_INFO_NAME (&filter->out_info));
- gst_video_converter_frame (space->convert, out_frame, in_frame);
+ gst_video_converter_frame (space->convert, in_frame, out_frame);
return GST_FLOW_OK;
}