mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-18 07:47:17 +00:00
vp8enc: Expose VP8 width/height limitations in the caps template
The VP8 format specification (RFC 6386 section 18.1) specifies that the maximum size is 16383x16383.
This commit is contained in:
parent
c0d4986c8d
commit
12867fcb3d
1 changed files with 4 additions and 1 deletions
|
@ -385,7 +385,10 @@ static GstStaticPadTemplate gst_vp8_enc_sink_template =
|
|||
GST_STATIC_PAD_TEMPLATE ("sink",
|
||||
GST_PAD_SINK,
|
||||
GST_PAD_ALWAYS,
|
||||
GST_STATIC_CAPS (GST_VIDEO_CAPS_MAKE ("I420"))
|
||||
GST_STATIC_CAPS ("video/x-raw, "
|
||||
"format = (string) \"I420\", "
|
||||
"width = (int) [1, 16383], "
|
||||
"height = (int) [1, 16383], framerate = (fraction) [ 0/1, MAX ]")
|
||||
);
|
||||
|
||||
static GstStaticPadTemplate gst_vp8_enc_src_template =
|
||||
|
|
Loading…
Reference in a new issue