webmmux: allow resolutions above 4096

Modify the caps string to allow width and height greater than 4096.
There is no need to restrict it since the matroska format allows the
width and height values to be up to eight bytes long, and this also
applies to the webm subset of the format.

Fixes https://gitlab.freedesktop.org/gstreamer/gst-plugins-good/issues/550
This commit is contained in:
Christopher Snowhill 2019-01-16 23:54:25 -08:00 committed by Nicolas Dufresne
parent d677e635fc
commit 818428ce9c

View file

@ -45,8 +45,8 @@
#include "webm-mux.h"
#define COMMON_VIDEO_CAPS \
"width = (int) [ 16, 4096 ], " \
"height = (int) [ 16, 4096 ], " \
"width = (int) [ 16, MAX ], " \
"height = (int) [ 16, MAX ], " \
"framerate = (fraction) [ 0, MAX ]"
#define COMMON_AUDIO_CAPS \