mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-24 01:00:37 +00:00
vaapidecode: add guards for disabled codecs.
Fix link when building plugin elements without HEVC support. e.g. don't try to call into gst_vaapi_decoder_h265_set_alignment() if there is no support HEVC enabled in libgstvaapi. Also, drop disabled codecs from static template caps. Add the missing HEVC static template caps into vaapidecodebin too.
This commit is contained in:
parent
81d6b42420
commit
5993b0d60f
2 changed files with 15 additions and 0 deletions
|
@ -69,10 +69,16 @@ static const char gst_vaapidecode_sink_caps_str[] =
|
|||
GST_CAPS_CODEC("video/x-xvid")
|
||||
GST_CAPS_CODEC("video/x-h263")
|
||||
GST_CAPS_CODEC("video/x-h264")
|
||||
#if USE_HEVC_DECODER
|
||||
GST_CAPS_CODEC("video/x-h265")
|
||||
#endif
|
||||
GST_CAPS_CODEC("video/x-wmv")
|
||||
#if USE_VP8_DECODER
|
||||
GST_CAPS_CODEC("video/x-vp8")
|
||||
#endif
|
||||
#if USE_JPEG_DECODER
|
||||
GST_CAPS_CODEC("image/jpeg")
|
||||
#endif
|
||||
;
|
||||
|
||||
static const char gst_vaapidecode_src_caps_str[] =
|
||||
|
@ -578,6 +584,7 @@ gst_vaapidecode_create (GstVaapiDecode * decode, GstCaps * caps)
|
|||
}
|
||||
}
|
||||
break;
|
||||
#if USE_HEVC_DECODER
|
||||
case GST_VAAPI_CODEC_H265:
|
||||
decode->decoder = gst_vaapi_decoder_h265_new (dpy, caps);
|
||||
|
||||
|
@ -599,6 +606,7 @@ gst_vaapidecode_create (GstVaapiDecode * decode, GstCaps * caps)
|
|||
}
|
||||
}
|
||||
break;
|
||||
#endif
|
||||
case GST_VAAPI_CODEC_WMV3:
|
||||
case GST_VAAPI_CODEC_VC1:
|
||||
decode->decoder = gst_vaapi_decoder_vc1_new (dpy, caps);
|
||||
|
|
|
@ -60,9 +60,16 @@ static const char gst_vaapi_decode_bin_sink_caps_str[] =
|
|||
GST_CAPS_CODEC("video/x-xvid")
|
||||
GST_CAPS_CODEC("video/x-h263")
|
||||
GST_CAPS_CODEC("video/x-h264")
|
||||
#if USE_HEVC_DECODER
|
||||
GST_CAPS_CODEC("video/x-h265")
|
||||
#endif
|
||||
GST_CAPS_CODEC("video/x-wmv")
|
||||
#if USE_VP8_DECODER
|
||||
GST_CAPS_CODEC("video/x-vp8")
|
||||
#endif
|
||||
#if USE_JPEG_DECODER
|
||||
GST_CAPS_CODEC("image/jpeg")
|
||||
#endif
|
||||
;
|
||||
/* *INDENT-ON* */
|
||||
|
||||
|
|
Loading…
Reference in a new issue