From 488d0b93cd52ac9a39e49e212701d2bbaa85fc0a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tim-Philipp=20M=C3=BCller?= Date: Thu, 20 Nov 2014 10:45:07 +0000 Subject: [PATCH] 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 --- gst/isomp4/gstqtmuxmap.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/gst/isomp4/gstqtmuxmap.c b/gst/isomp4/gstqtmuxmap.c index 5b17f85271..1f5f2b72dc 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, " \