mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-02-17 11:45:25 +00:00
openh264dec: Accept constrained-high and progressive-high profiles
They're just subsets of the high profile. Part-of: <https://gitlab.freedesktop.org/gstreamer/gst-plugins-bad/-/merge_requests/1634>
This commit is contained in:
parent
f83039531e
commit
03d710bd40
2 changed files with 2 additions and 2 deletions
|
@ -213539,7 +213539,7 @@
|
|||
"long-name": "OpenH264 video decoder",
|
||||
"pad-templates": {
|
||||
"sink": {
|
||||
"caps": "video/x-h264:\n stream-format: byte-stream\n alignment: au\n profile: { (string)constrained-baseline, (string)baseline, (string)main, (string)high }\n",
|
||||
"caps": "video/x-h264:\n stream-format: byte-stream\n alignment: au\n profile: { (string)constrained-baseline, (string)baseline, (string)main, (string)high, (string)constrained-high, (string)progressive-high }\n",
|
||||
"direction": "sink",
|
||||
"presence": "always"
|
||||
},
|
||||
|
|
|
@ -61,7 +61,7 @@ static gboolean gst_openh264dec_decide_allocation (GstVideoDecoder * decoder,
|
|||
GstQuery * query);
|
||||
|
||||
#if HAVE_OPENH264_MAIN_PROFILE
|
||||
#define SUPPORTED_PROFILE_STR "profile=(string){ constrained-baseline, baseline, main, high }"
|
||||
#define SUPPORTED_PROFILE_STR "profile=(string){ constrained-baseline, baseline, main, high, constrained-high, progressive-high }"
|
||||
#else
|
||||
#define SUPPORTED_PROFILE_STR "profile=(string){ constrained-baseline, baseline }"
|
||||
#endif
|
||||
|
|
Loading…
Reference in a new issue