mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-12-23 12:43:46 +02:00
lavc: Split out ff_hwaccel_pixfmt_list_420[] over individual codecs
Not all hwaccels implement all codecs, so using one single list for multiple such codecs means some codecs will be represented in the list, even though they don't actually handle that codec. Copying specific lists in each codec fixes that. Signed-off-by: Martin Storsjö <martin@martin.st>
This commit is contained in:
parent
5a4e9fe855
commit
8d061989dd
@ -64,6 +64,8 @@ extern uint8_t ff_mba_length[7];
|
|||||||
|
|
||||||
extern uint8_t ff_h263_static_rl_table_store[2][2][2*MAX_RUN + MAX_LEVEL + 3];
|
extern uint8_t ff_h263_static_rl_table_store[2][2][2*MAX_RUN + MAX_LEVEL + 3];
|
||||||
|
|
||||||
|
extern const enum AVPixelFormat ff_h263_hwaccel_pixfmt_list_420[];
|
||||||
|
|
||||||
|
|
||||||
int ff_h263_decode_motion(MpegEncContext * s, int pred, int f_code);
|
int ff_h263_decode_motion(MpegEncContext * s, int pred, int f_code);
|
||||||
av_const int ff_h263_aspect_to_info(AVRational aspect);
|
av_const int ff_h263_aspect_to_info(AVRational aspect);
|
||||||
|
@ -738,6 +738,17 @@ av_log(avctx, AV_LOG_DEBUG, "%"PRId64"\n", rdtsc()-time);
|
|||||||
return (ret && (avctx->err_recognition & AV_EF_EXPLODE))?ret:get_consumed_bytes(s, buf_size);
|
return (ret && (avctx->err_recognition & AV_EF_EXPLODE))?ret:get_consumed_bytes(s, buf_size);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
const enum AVPixelFormat ff_h263_hwaccel_pixfmt_list_420[] = {
|
||||||
|
#if CONFIG_VAAPI
|
||||||
|
AV_PIX_FMT_VAAPI_VLD,
|
||||||
|
#endif
|
||||||
|
#if CONFIG_VDPAU
|
||||||
|
AV_PIX_FMT_VDPAU,
|
||||||
|
#endif
|
||||||
|
AV_PIX_FMT_YUV420P,
|
||||||
|
AV_PIX_FMT_NONE
|
||||||
|
};
|
||||||
|
|
||||||
AVCodec ff_h263_decoder = {
|
AVCodec ff_h263_decoder = {
|
||||||
.name = "h263",
|
.name = "h263",
|
||||||
.type = AVMEDIA_TYPE_VIDEO,
|
.type = AVMEDIA_TYPE_VIDEO,
|
||||||
@ -750,5 +761,5 @@ AVCodec ff_h263_decoder = {
|
|||||||
CODEC_CAP_TRUNCATED | CODEC_CAP_DELAY,
|
CODEC_CAP_TRUNCATED | CODEC_CAP_DELAY,
|
||||||
.flush = ff_mpeg_flush,
|
.flush = ff_mpeg_flush,
|
||||||
.long_name = NULL_IF_CONFIG_SMALL("H.263 / H.263-1996, H.263+ / H.263-1998 / H.263 version 2"),
|
.long_name = NULL_IF_CONFIG_SMALL("H.263 / H.263-1996, H.263+ / H.263-1998 / H.263 version 2"),
|
||||||
.pix_fmts = ff_hwaccel_pixfmt_list_420,
|
.pix_fmts = ff_h263_hwaccel_pixfmt_list_420,
|
||||||
};
|
};
|
||||||
|
@ -61,6 +61,23 @@ static const uint8_t div6[QP_MAX_NUM + 1] = {
|
|||||||
7, 7, 7, 7, 7, 7, 8, 8, 8, 8, 8, 8, 9, 9, 9, 9, 9, 9, 10, 10, 10, 10,
|
7, 7, 7, 7, 7, 7, 8, 8, 8, 8, 8, 8, 9, 9, 9, 9, 9, 9, 10, 10, 10, 10,
|
||||||
};
|
};
|
||||||
|
|
||||||
|
static const enum AVPixelFormat h264_hwaccel_pixfmt_list_420[] = {
|
||||||
|
#if CONFIG_H264_DXVA2_HWACCEL
|
||||||
|
AV_PIX_FMT_DXVA2_VLD,
|
||||||
|
#endif
|
||||||
|
#if CONFIG_H264_VAAPI_HWACCEL
|
||||||
|
AV_PIX_FMT_VAAPI_VLD,
|
||||||
|
#endif
|
||||||
|
#if CONFIG_H264_VDA_HWACCEL
|
||||||
|
AV_PIX_FMT_VDA_VLD,
|
||||||
|
#endif
|
||||||
|
#if CONFIG_H264_VDPAU_HWACCEL
|
||||||
|
AV_PIX_FMT_VDPAU,
|
||||||
|
#endif
|
||||||
|
AV_PIX_FMT_YUV420P,
|
||||||
|
AV_PIX_FMT_NONE
|
||||||
|
};
|
||||||
|
|
||||||
static const enum AVPixelFormat hwaccel_pixfmt_list_h264_jpeg_420[] = {
|
static const enum AVPixelFormat hwaccel_pixfmt_list_h264_jpeg_420[] = {
|
||||||
#if CONFIG_H264_DXVA2_HWACCEL
|
#if CONFIG_H264_DXVA2_HWACCEL
|
||||||
AV_PIX_FMT_DXVA2_VLD,
|
AV_PIX_FMT_DXVA2_VLD,
|
||||||
@ -2823,7 +2840,7 @@ static enum PixelFormat get_pixel_format(H264Context *h)
|
|||||||
h->avctx->codec->pix_fmts :
|
h->avctx->codec->pix_fmts :
|
||||||
h->avctx->color_range == AVCOL_RANGE_JPEG ?
|
h->avctx->color_range == AVCOL_RANGE_JPEG ?
|
||||||
hwaccel_pixfmt_list_h264_jpeg_420 :
|
hwaccel_pixfmt_list_h264_jpeg_420 :
|
||||||
ff_hwaccel_pixfmt_list_420);
|
h264_hwaccel_pixfmt_list_420);
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
default:
|
default:
|
||||||
|
@ -1176,6 +1176,20 @@ static const enum AVPixelFormat pixfmt_xvmc_mpg2_420[] = {
|
|||||||
AV_PIX_FMT_XVMC_MPEG2_MC,
|
AV_PIX_FMT_XVMC_MPEG2_MC,
|
||||||
AV_PIX_FMT_NONE };
|
AV_PIX_FMT_NONE };
|
||||||
|
|
||||||
|
static const enum AVPixelFormat mpeg12_hwaccel_pixfmt_list_420[] = {
|
||||||
|
#if CONFIG_MPEG2_DXVA2_HWACCEL
|
||||||
|
AV_PIX_FMT_DXVA2_VLD,
|
||||||
|
#endif
|
||||||
|
#if CONFIG_MPEG2_VAAPI_HWACCEL
|
||||||
|
AV_PIX_FMT_VAAPI_VLD,
|
||||||
|
#endif
|
||||||
|
#if CONFIG_MPEG1_VDPAU_HWACCEL | CONFIG_MPEG2_VDPAU_HWACCEL
|
||||||
|
AV_PIX_FMT_VDPAU,
|
||||||
|
#endif
|
||||||
|
AV_PIX_FMT_YUV420P,
|
||||||
|
AV_PIX_FMT_NONE
|
||||||
|
};
|
||||||
|
|
||||||
static enum AVPixelFormat mpeg_get_pixelformat(AVCodecContext *avctx)
|
static enum AVPixelFormat mpeg_get_pixelformat(AVCodecContext *avctx)
|
||||||
{
|
{
|
||||||
Mpeg1Context *s1 = avctx->priv_data;
|
Mpeg1Context *s1 = avctx->priv_data;
|
||||||
@ -1190,7 +1204,7 @@ static enum AVPixelFormat mpeg_get_pixelformat(AVCodecContext *avctx)
|
|||||||
return AV_PIX_FMT_VDPAU_MPEG2;
|
return AV_PIX_FMT_VDPAU_MPEG2;
|
||||||
} else {
|
} else {
|
||||||
if (s->chroma_format < 2)
|
if (s->chroma_format < 2)
|
||||||
return avctx->get_format(avctx, ff_hwaccel_pixfmt_list_420);
|
return avctx->get_format(avctx, mpeg12_hwaccel_pixfmt_list_420);
|
||||||
else if (s->chroma_format == 2)
|
else if (s->chroma_format == 2)
|
||||||
return AV_PIX_FMT_YUV422P;
|
return AV_PIX_FMT_YUV422P;
|
||||||
else
|
else
|
||||||
|
@ -2270,7 +2270,7 @@ AVCodec ff_mpeg4_decoder = {
|
|||||||
CODEC_CAP_FRAME_THREADS,
|
CODEC_CAP_FRAME_THREADS,
|
||||||
.flush = ff_mpeg_flush,
|
.flush = ff_mpeg_flush,
|
||||||
.long_name = NULL_IF_CONFIG_SMALL("MPEG-4 part 2"),
|
.long_name = NULL_IF_CONFIG_SMALL("MPEG-4 part 2"),
|
||||||
.pix_fmts = ff_hwaccel_pixfmt_list_420,
|
.pix_fmts = ff_h263_hwaccel_pixfmt_list_420,
|
||||||
.profiles = NULL_IF_CONFIG_SMALL(mpeg4_video_profiles),
|
.profiles = NULL_IF_CONFIG_SMALL(mpeg4_video_profiles),
|
||||||
.update_thread_context = ONLY_IF_THREADS_ENABLED(ff_mpeg_update_thread_context),
|
.update_thread_context = ONLY_IF_THREADS_ENABLED(ff_mpeg_update_thread_context),
|
||||||
};
|
};
|
||||||
|
@ -130,23 +130,6 @@ const enum AVPixelFormat ff_pixfmt_list_420[] = {
|
|||||||
AV_PIX_FMT_NONE
|
AV_PIX_FMT_NONE
|
||||||
};
|
};
|
||||||
|
|
||||||
const enum AVPixelFormat ff_hwaccel_pixfmt_list_420[] = {
|
|
||||||
#if CONFIG_DXVA2
|
|
||||||
AV_PIX_FMT_DXVA2_VLD,
|
|
||||||
#endif
|
|
||||||
#if CONFIG_VAAPI
|
|
||||||
AV_PIX_FMT_VAAPI_VLD,
|
|
||||||
#endif
|
|
||||||
#if CONFIG_VDA
|
|
||||||
AV_PIX_FMT_VDA_VLD,
|
|
||||||
#endif
|
|
||||||
#if CONFIG_VDPAU
|
|
||||||
AV_PIX_FMT_VDPAU,
|
|
||||||
#endif
|
|
||||||
AV_PIX_FMT_YUV420P,
|
|
||||||
AV_PIX_FMT_NONE
|
|
||||||
};
|
|
||||||
|
|
||||||
static void mpeg_er_decode_mb(void *opaque, int ref, int mv_dir, int mv_type,
|
static void mpeg_er_decode_mb(void *opaque, int ref, int mv_dir, int mv_type,
|
||||||
int (*mv)[2][4][2],
|
int (*mv)[2][4][2],
|
||||||
int mb_x, int mb_y, int mb_intra, int mb_skipped)
|
int mb_x, int mb_y, int mb_intra, int mb_skipped)
|
||||||
|
@ -802,7 +802,6 @@ void ff_MPV_motion(MpegEncContext *s,
|
|||||||
int ff_alloc_picture(MpegEncContext *s, Picture *pic, int shared);
|
int ff_alloc_picture(MpegEncContext *s, Picture *pic, int shared);
|
||||||
|
|
||||||
extern const enum AVPixelFormat ff_pixfmt_list_420[];
|
extern const enum AVPixelFormat ff_pixfmt_list_420[];
|
||||||
extern const enum AVPixelFormat ff_hwaccel_pixfmt_list_420[];
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* permute block according to permuatation.
|
* permute block according to permuatation.
|
||||||
|
@ -5687,6 +5687,20 @@ static const AVProfile profiles[] = {
|
|||||||
{ FF_PROFILE_UNKNOWN },
|
{ FF_PROFILE_UNKNOWN },
|
||||||
};
|
};
|
||||||
|
|
||||||
|
static const enum AVPixelFormat vc1_hwaccel_pixfmt_list_420[] = {
|
||||||
|
#if CONFIG_DXVA2
|
||||||
|
AV_PIX_FMT_DXVA2_VLD,
|
||||||
|
#endif
|
||||||
|
#if CONFIG_VAAPI
|
||||||
|
AV_PIX_FMT_VAAPI_VLD,
|
||||||
|
#endif
|
||||||
|
#if CONFIG_VDPAU
|
||||||
|
AV_PIX_FMT_VDPAU,
|
||||||
|
#endif
|
||||||
|
AV_PIX_FMT_YUV420P,
|
||||||
|
AV_PIX_FMT_NONE
|
||||||
|
};
|
||||||
|
|
||||||
AVCodec ff_vc1_decoder = {
|
AVCodec ff_vc1_decoder = {
|
||||||
.name = "vc1",
|
.name = "vc1",
|
||||||
.type = AVMEDIA_TYPE_VIDEO,
|
.type = AVMEDIA_TYPE_VIDEO,
|
||||||
@ -5698,7 +5712,7 @@ AVCodec ff_vc1_decoder = {
|
|||||||
.flush = ff_mpeg_flush,
|
.flush = ff_mpeg_flush,
|
||||||
.capabilities = CODEC_CAP_DR1 | CODEC_CAP_DELAY,
|
.capabilities = CODEC_CAP_DR1 | CODEC_CAP_DELAY,
|
||||||
.long_name = NULL_IF_CONFIG_SMALL("SMPTE VC-1"),
|
.long_name = NULL_IF_CONFIG_SMALL("SMPTE VC-1"),
|
||||||
.pix_fmts = ff_hwaccel_pixfmt_list_420,
|
.pix_fmts = vc1_hwaccel_pixfmt_list_420,
|
||||||
.profiles = NULL_IF_CONFIG_SMALL(profiles)
|
.profiles = NULL_IF_CONFIG_SMALL(profiles)
|
||||||
};
|
};
|
||||||
|
|
||||||
@ -5714,7 +5728,7 @@ AVCodec ff_wmv3_decoder = {
|
|||||||
.flush = ff_mpeg_flush,
|
.flush = ff_mpeg_flush,
|
||||||
.capabilities = CODEC_CAP_DR1 | CODEC_CAP_DELAY,
|
.capabilities = CODEC_CAP_DR1 | CODEC_CAP_DELAY,
|
||||||
.long_name = NULL_IF_CONFIG_SMALL("Windows Media Video 9"),
|
.long_name = NULL_IF_CONFIG_SMALL("Windows Media Video 9"),
|
||||||
.pix_fmts = ff_hwaccel_pixfmt_list_420,
|
.pix_fmts = vc1_hwaccel_pixfmt_list_420,
|
||||||
.profiles = NULL_IF_CONFIG_SMALL(profiles)
|
.profiles = NULL_IF_CONFIG_SMALL(profiles)
|
||||||
};
|
};
|
||||||
#endif
|
#endif
|
||||||
|
Loading…
Reference in New Issue
Block a user