mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-24 09:10:36 +00:00
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:
parent
d677e635fc
commit
818428ce9c
1 changed files with 2 additions and 2 deletions
|
@ -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 \
|
||||
|
|
Loading…
Reference in a new issue