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:
Tim-Philipp Müller 2014-11-20 10:45:07 +00:00
parent 00ca83629b
commit 488d0b93cd

View file

@ -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, " \