Fix height/width swap in function prototype. Fixes #125827

Original commit message from CVS:
Fix height/width swap in function prototype.  Fixes #125827
This commit is contained in:
David Schleef 2003-10-30 19:24:49 +00:00
parent 9b8d71fae8
commit 617bb56603

View file

@ -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;