summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSreerenj Balachandran <sreerenj.balachandran@intel.com>2016-03-23 17:29:59 +0200
committerSreerenj Balachandran <sreerenj.balachandran@intel.com>2016-03-23 17:29:59 +0200
commit1fc69339b6397dc987851c02652c73ad65730be1 (patch)
tree133c89d12a72844c8188ee22c2c420f4406975f1
parent098dc3a16e3c8135a7ed3f94477dc859439ddb81 (diff)
decoder: vp9 : Add 10bit decoding support (Profile2)
https://bugzilla.gnome.org/show_bug.cgi?id=764082
-rw-r--r--gst-libs/gst/vaapi/gstvaapidecoder_vp9.c33
1 files changed, 32 insertions, 1 deletions
diff --git a/gst-libs/gst/vaapi/gstvaapidecoder_vp9.c b/gst-libs/gst/vaapi/gstvaapidecoder_vp9.c
index 33a9b2cc..d0be6168 100644
--- a/gst-libs/gst/vaapi/gstvaapidecoder_vp9.c
+++ b/gst-libs/gst/vaapi/gstvaapidecoder_vp9.c
@@ -153,14 +153,44 @@ gst_vaapi_decoder_vp9_create (GstVaapiDecoder * base_decoder)
return TRUE;
}
+/* Returns GstVaapiProfile from VP9 frame_hdr profile value */
+static GstVaapiProfile
+get_profile (guint profile_idc)
+{
+ GstVaapiProfile profile;
+
+ switch (profile_idc) {
+ case GST_VP9_PROFILE_0:
+ profile = GST_VAAPI_PROFILE_VP9_0;
+ break;
+ case GST_VP9_PROFILE_1:
+ profile = GST_VAAPI_PROFILE_VP9_1;
+ break;
+ case GST_VP9_PROFILE_2:
+ profile = GST_VAAPI_PROFILE_VP9_2;
+ break;
+ case GST_VP9_PROFILE_3:
+ profile = GST_VAAPI_PROFILE_VP9_3;
+ break;
+ default:
+ g_debug ("unsupported profile_idc value");
+ profile = GST_VAAPI_PROFILE_UNKNOWN;
+ break;
+ }
+ return profile;
+}
+
static GstVaapiDecoderStatus
ensure_context (GstVaapiDecoderVp9 * decoder)
{
GstVaapiDecoderVp9Private *const priv = &decoder->priv;
- const GstVaapiProfile profile = GST_VAAPI_PROFILE_VP9;
+ GstVp9FrameHdr *frame_hdr = &priv->frame_hdr;
+ GstVaapiProfile profile;
const GstVaapiEntrypoint entrypoint = GST_VAAPI_ENTRYPOINT_VLD;
gboolean reset_context = FALSE;
+ profile = get_profile (frame_hdr->profile);
+
if (priv->profile != profile) {
if (!gst_vaapi_display_has_decoder (GST_VAAPI_DECODER_DISPLAY (decoder),
profile, entrypoint))
@@ -292,6 +322,7 @@ fill_picture (GstVaapiDecoderVp9 * decoder, GstVaapiPicture * picture)
#if VA_CHECK_VERSION (0, 39, 0)
COPY_FIELD (frame_hdr, bit_depth);
#endif
+
g_assert (G_N_ELEMENTS (pic_param->mb_segment_tree_probs) ==
G_N_ELEMENTS (parser->mb_segment_tree_probs));
g_assert (G_N_ELEMENTS (pic_param->segment_pred_probs) ==