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
@ -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…
x
Reference in New Issue
Block a user