From 2a8566ddec7cdacec68413ebd81fbe5c4182bbdc Mon Sep 17 00:00:00 2001 From: Wim Taymans Date: Tue, 27 Aug 2013 15:25:16 +0200 Subject: [PATCH] matroska-mux: remove framerate restriction Remove the framerate restriction on the caps. --- gst/matroska/matroska-mux.c | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/gst/matroska/matroska-mux.c b/gst/matroska/matroska-mux.c index d31b1ab4d..d535fd3b6 100644 --- a/gst/matroska/matroska-mux.c +++ b/gst/matroska/matroska-mux.c @@ -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 "; " -- 2.34.1