mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-01-23 15:48:23 +00:00
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:
parent
9b8d71fae8
commit
617bb56603
1 changed files with 2 additions and 2 deletions
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue