mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-02-02 04:22:27 +00:00
matroska-mux: remove framerate restriction
Remove the framerate restriction on the caps.
This commit is contained in:
parent
f1106cde66
commit
2a8566ddec
1 changed files with 1 additions and 6 deletions
|
@ -86,11 +86,6 @@ static GstStaticPadTemplate src_templ = GST_STATIC_PAD_TEMPLATE ("src",
|
|||
);
|
||||
|
||||
#define COMMON_VIDEO_CAPS \
|
||||
"width = (int) [ 16, 4096 ], " \
|
||||
"height = (int) [ 16, 4096 ], " \
|
||||
"framerate = (fraction) [ 0, MAX ]"
|
||||
|
||||
#define COMMON_VIDEO_CAPS_NO_FRAMERATE \
|
||||
"width = (int) [ 16, 4096 ], " \
|
||||
"height = (int) [ 16, 4096 ] "
|
||||
|
||||
|
@ -119,7 +114,7 @@ static GstStaticPadTemplate videosink_templ =
|
|||
"video/x-msmpeg, "
|
||||
COMMON_VIDEO_CAPS "; "
|
||||
"image/jpeg, "
|
||||
COMMON_VIDEO_CAPS_NO_FRAMERATE "; "
|
||||
COMMON_VIDEO_CAPS "; "
|
||||
"video/x-theora; "
|
||||
"video/x-dirac, "
|
||||
COMMON_VIDEO_CAPS "; "
|
||||
|
|
Loading…
Reference in a new issue