mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-01-31 11:32:38 +00:00
matroskamux: 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. https://bugzilla.gnome.org/show_bug.cgi?id=773582
This commit is contained in:
parent
023744a577
commit
ddba77ea6e
1 changed files with 2 additions and 2 deletions
|
@ -89,8 +89,8 @@ static GstStaticPadTemplate src_templ = GST_STATIC_PAD_TEMPLATE ("src",
|
|||
);
|
||||
|
||||
#define COMMON_VIDEO_CAPS \
|
||||
"width = (int) [ 16, 4096 ], " \
|
||||
"height = (int) [ 16, 4096 ] "
|
||||
"width = (int) [ 16, MAX ], " \
|
||||
"height = (int) [ 16, MAX ] "
|
||||
|
||||
/* FIXME:
|
||||
* * require codec data, etc as needed
|
||||
|
|
Loading…
Reference in a new issue