From: David Schleef Date: Thu, 30 Oct 2003 19:24:49 +0000 (+0000) Subject: Fix height/width swap in function prototype. Fixes #125827 X-Git-Tag: CAPS-ROOT~152 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=617bb56603d336f2169b90c1ebbe02ccaaa56332;p=platform%2Fupstream%2Fgst-plugins-base.git Fix height/width swap in function prototype. Fixes #125827 Original commit message from CVS: Fix height/width swap in function prototype. Fixes #125827 --- diff --git a/gst/videotestsrc/gstvideotestsrc.c b/gst/videotestsrc/gstvideotestsrc.c index b0176fd..238522a 100644 --- a/gst/videotestsrc/gstvideotestsrc.c +++ b/gst/videotestsrc/gstvideotestsrc.c @@ -76,7 +76,7 @@ static GstData *gst_videotestsrc_get (GstPad * pad); static GstElementClass *parent_class = NULL; static GstCaps * gst_videotestsrc_get_capslist (void); -static GstCaps * gst_videotestsrc_get_capslist_size (int height, int width, float rate); +static GstCaps * gst_videotestsrc_get_capslist_size (int width, int height, float rate); static GstPadTemplate * @@ -311,7 +311,7 @@ gst_videotestsrc_get_capslist (void) } static GstCaps * -gst_videotestsrc_get_capslist_size (int height, int width, float rate) +gst_videotestsrc_get_capslist_size (int width, int height, float rate) { GstCaps *capslist; GstCaps *caps;