From 617bb56603d336f2169b90c1ebbe02ccaaa56332 Mon Sep 17 00:00:00 2001 From: David Schleef Date: Thu, 30 Oct 2003 19:24:49 +0000 Subject: [PATCH] Fix height/width swap in function prototype. Fixes #125827 Original commit message from CVS: Fix height/width swap in function prototype. Fixes #125827 --- gst/videotestsrc/gstvideotestsrc.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gst/videotestsrc/gstvideotestsrc.c b/gst/videotestsrc/gstvideotestsrc.c index b0176fd913..238522a154 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;