From: Víctor Manuel Jáquez Leal Date: Mon, 16 Nov 2020 15:29:46 +0000 (+0100) Subject: va: h264dec: admit baseline if stream obeys A.2 X-Git-Tag: 1.19.3~507^2~1056 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=a9ae00a2c14e6d5a1a754c6c9bea0df49c748a5c;p=platform%2Fupstream%2Fgstreamer.git va: h264dec: admit baseline if stream obeys A.2 Part-of: --- diff --git a/sys/va/gstvah264dec.c b/sys/va/gstvah264dec.c index c2d5388..1ea00e9 100644 --- a/sys/va/gstvah264dec.c +++ b/sys/va/gstvah264dec.c @@ -571,7 +571,9 @@ _get_profile (GstVaH264Dec * self, const GstH264SPS * sps, gint max_dpb_size) switch (sps->profile_idc) { case GST_H264_PROFILE_BASELINE: - if (sps->constraint_set1_flag) { /* A.2.2 (main profile) */ + /* A.2 compliant */ + if (sps->constraint_set0_flag || sps->constraint_set1_flag + || sps->constraint_set2_flag) { profiles[i++] = VAProfileH264ConstrainedBaseline; profiles[i++] = VAProfileH264Main; }