summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTim-Philipp Müller <tim@centricular.com>2014-11-20 10:45:07 +0000
committerTim-Philipp Müller <tim@centricular.com>2014-11-20 10:45:53 +0000
commit488d0b93cd52ac9a39e49e212701d2bbaa85fc0a (patch)
tree2ae8c53033796ea54c6bf4fa10ae1cc50dd058e6
parent00ca83629bf39b92d181c0af80de1a3eb591e16c (diff)
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
-rw-r--r--gst/isomp4/gstqtmuxmap.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/gst/isomp4/gstqtmuxmap.c b/gst/isomp4/gstqtmuxmap.c
index 5b17f8527..1f5f2b72d 100644
--- a/gst/isomp4/gstqtmuxmap.c
+++ b/gst/isomp4/gstqtmuxmap.c
@@ -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, " \