mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-01-24 13:56:33 +02:00
avcodec/h263dec: Fixed VA API, VDPAU, and VideoToolbox hardware acceleration due to missing hw_configs
property.
Bug originally introduced in commit 758fbc54fef2f31957b5c5f22e05e5fd9b04f631.
This commit is contained in:
parent
60df54ebd2
commit
e384f6f2f9
@ -743,6 +743,19 @@ const enum AVPixelFormat ff_h263_hwaccel_pixfmt_list_420[] = {
|
||||
AV_PIX_FMT_NONE
|
||||
};
|
||||
|
||||
const AVCodecHWConfigInternal *ff_h263_hw_config_list[] = {
|
||||
#if CONFIG_H263_VAAPI_HWACCEL
|
||||
HWACCEL_VAAPI(h263),
|
||||
#endif
|
||||
#if CONFIG_MPEG4_VDPAU_HWACCEL
|
||||
HWACCEL_VDPAU(mpeg4),
|
||||
#endif
|
||||
#if CONFIG_H263_VIDEOTOOLBOX_HWACCEL
|
||||
HWACCEL_VIDEOTOOLBOX(h263),
|
||||
#endif
|
||||
NULL
|
||||
};
|
||||
|
||||
AVCodec ff_h263_decoder = {
|
||||
.name = "h263",
|
||||
.long_name = NULL_IF_CONFIG_SMALL("H.263 / H.263-1996, H.263+ / H.263-1998 / H.263 version 2"),
|
||||
@ -758,6 +771,7 @@ AVCodec ff_h263_decoder = {
|
||||
.flush = ff_mpeg_flush,
|
||||
.max_lowres = 3,
|
||||
.pix_fmts = ff_h263_hwaccel_pixfmt_list_420,
|
||||
.hw_configs = ff_h263_hw_config_list,
|
||||
};
|
||||
|
||||
AVCodec ff_h263p_decoder = {
|
||||
@ -775,16 +789,5 @@ AVCodec ff_h263p_decoder = {
|
||||
.flush = ff_mpeg_flush,
|
||||
.max_lowres = 3,
|
||||
.pix_fmts = ff_h263_hwaccel_pixfmt_list_420,
|
||||
.hw_configs = (const AVCodecHWConfigInternal*[]) {
|
||||
#if CONFIG_H263_VAAPI_HWACCEL
|
||||
HWACCEL_VAAPI(h263),
|
||||
#endif
|
||||
#if CONFIG_MPEG4_VDPAU_HWACCEL
|
||||
HWACCEL_VDPAU(mpeg4),
|
||||
#endif
|
||||
#if CONFIG_H263_VIDEOTOOLBOX_HWACCEL
|
||||
HWACCEL_VIDEOTOOLBOX(h263),
|
||||
#endif
|
||||
NULL
|
||||
},
|
||||
.hw_configs = ff_h263_hw_config_list,
|
||||
};
|
||||
|
Loading…
x
Reference in New Issue
Block a user