msdk: dec: remove framerate field from sink caps template
authorSreerenj Balachandran <sreerenj.balachandran@intel.com>
Thu, 29 Mar 2018 21:06:41 +0000 (13:06 -0800)
committerSreerenj Balachandran <sreerenj.balachandran@intel.com>
Thu, 29 Mar 2018 21:06:41 +0000 (13:06 -0800)
Removes unessential field framerate for decoder so that negotiation
works even if framerate is not provided from upstream.

https://bugzilla.gnome.org/show_bug.cgi?id=789752

sys/msdk/gstmsdkh264dec.c
sys/msdk/gstmsdkmjpegdec.c
sys/msdk/gstmsdkmpeg2dec.c

index 3b2f511d43cb21f998430c48d48d6afba51be2b4..d5b6f6c37bfbc0443d72b191b2c2c1ab749ded80 100644 (file)
@@ -42,7 +42,6 @@ static GstStaticPadTemplate sink_factory = GST_STATIC_PAD_TEMPLATE ("sink",
     GST_PAD_SINK,
     GST_PAD_ALWAYS,
     GST_STATIC_CAPS ("video/x-h264, "
-        "framerate = (fraction) [0/1, MAX], "
         "width = (int) [ 1, MAX ], height = (int) [ 1, MAX ], "
         "stream-format = (string) byte-stream , alignment = (string) au , "
         "profile = (string) { high, main, baseline, constrained-baseline }")
index a76f31fa5d6cf5535b4ecfa05382fa23c1e3829c..6ae02d6917a3ff9b06f155e4a6fe8565813d9ef5 100644 (file)
@@ -52,7 +52,6 @@ static GstStaticPadTemplate sink_factory = GST_STATIC_PAD_TEMPLATE ("sink",
     GST_PAD_SINK,
     GST_PAD_ALWAYS,
     GST_STATIC_CAPS ("image/jpeg, "
-        "framerate = (fraction) [0/1, MAX], "
         "width = (int) [ 1, MAX ], height = (int) [ 1, MAX ], parsed = true ")
     );
 
index 897214ef6bc3fe25ce404f786da30e2cf083a1c7..13de6c160ce571cef2ed1519fb24a86d82c8acc7 100644 (file)
@@ -45,7 +45,6 @@ static GstStaticPadTemplate sink_factory = GST_STATIC_PAD_TEMPLATE ("sink",
     GST_PAD_SINK,
     GST_PAD_ALWAYS,
     GST_STATIC_CAPS ("video/mpeg, "
-        "framerate = (fraction) [0/1, MAX], "
         "width = (int) [ 1, MAX ], height = (int) [ 1, MAX ], "
         "mpegversion = (int) 2, " "systemstream = (boolean) false")
     );