mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-28 04:31:06 +00:00
qtmux: don't limit max video resolution to 4096x4096
MAX isn't entirely correct as upper limit either, it should really be MAXUINT32, but it's unlikely to be a problem in the near future. https://bugzilla.gnome.org/show_bug.cgi?id=740407
This commit is contained in:
parent
00ca83629b
commit
488d0b93cd
1 changed files with 4 additions and 4 deletions
|
@ -47,12 +47,12 @@
|
|||
/* static info related to various format */
|
||||
|
||||
#define COMMON_VIDEO_CAPS \
|
||||
"width = (int) [ 16, 4096 ], " \
|
||||
"height = (int) [ 16, 4096 ]"
|
||||
"width = (int) [ 16, MAX ], " \
|
||||
"height = (int) [ 16, MAX ]"
|
||||
|
||||
#define COMMON_VIDEO_CAPS_NO_FRAMERATE \
|
||||
"width = (int) [ 16, 4096 ], " \
|
||||
"height = (int) [ 16, 4096 ] "
|
||||
"width = (int) [ 16, MAX ], " \
|
||||
"height = (int) [ 16, MAX ] "
|
||||
|
||||
#define H263_CAPS \
|
||||
"video/x-h263, " \
|
||||
|
|
Loading…
Reference in a new issue