[FFmpeg-devel] [PATCH 4/4] lavc/mediacodecenc: List supported pixel formats on configuration error
"zhilizhao(赵志立)"
quinkblack at foxmail.com
Tue Feb 28 14:25:01 EET 2023
> This patch has been released by Epic Games' legal department.
> ---
> libavcodec/mediacodecenc.c | 46 ++++++++++++++++++++++++++++++++++++++
> 1 file changed, 46 insertions(+)
>
> diff --git a/libavcodec/mediacodecenc.c b/libavcodec/mediacodecenc.c
> index 03c80cbf99..1b8a2837c4 100644
> --- a/libavcodec/mediacodecenc.c
> +++ b/libavcodec/mediacodecenc.c
> @@ -97,6 +97,12 @@ static const enum AVPixelFormat avc_pix_fmts[] = {
> AV_PIX_FMT_NONE
> };
>
> +static const int in_formats[] = {
> + COLOR_FormatYUV420Planar,
> + COLOR_FormatYUV420SemiPlanar,
> + COLOR_FormatSurface,
> +};
> +
> static void mediacodec_output_format(AVCodecContext *avctx)
> {
> MediaCodecEncContext *s = avctx->priv_data;
> @@ -131,6 +137,45 @@ static enum AVPixelFormat color2pix_fmt(AVCodecContext *avctx, int color_format)
> av_assert0(0);
> }
>
> +// list pixel formats if the user tried to use one that isn't supported on this device
> +static void list_pix_fmts(AVCodecContext *avctx, const char *mime)
> +{
> + MediaCodecEncContext *s = avctx->priv_data;
> + int out_formats[FF_ARRAY_ELEMS(in_formats)], n;
> + char *name = ff_AMediaCodec_getName(s->codec);
> +
> + if (!name) {
> + // API level likely below 28
> + return;
> + }
> +
> + if ((n = ff_AMediaCodec_color_formats_intersect(name, mime, in_formats,
> + FF_ARRAY_ELEMS(in_formats),
> + out_formats, avctx)) < 0) {
> + goto done;
> + }
> +
> + for (int i = 0; i < n; i++) {
> + if (color2pix_fmt(avctx, out_formats[i]) == avctx->pix_fmt) {
> + // user specified a pixel format that is actually supported,
> + // no need to print anything
> + goto done;
> + }
> + }
> +
> + AVPixFmtDescriptor *desc = av_pix_fmt_desc_get(avctx->pix_fmt);
Missing ‘const’ and triggered -Wdeclaration-after-statement.
> + av_log(avctx, AV_LOG_ERROR, "pixel format %s not supported by MediaCodec %s\n", desc->name, name);
> + av_log(avctx, AV_LOG_INFO, "supported formats are:");
> + for (int i = 0; i < n; i++) {
> + desc = av_pix_fmt_desc_get(color2pix_fmt(avctx, out_formats[i]));
> + av_log(avctx, AV_LOG_INFO, " %s", desc->name);
> + }
> + av_log(avctx, AV_LOG_INFO, "\n");
It’s not thread safe, it can be interrupted by other threads' log message.
> +
> +done:
> + av_free(name);
> +}
> +
> static int mediacodec_init_bsf(AVCodecContext *avctx)
> {
> MediaCodecEncContext *s = avctx->priv_data;
> @@ -308,6 +353,7 @@ static av_cold int mediacodec_init(AVCodecContext *avctx)
> ret = ff_AMediaCodec_configure(s->codec, format, s->window, NULL, ret);
> if (ret) {
> av_log(avctx, AV_LOG_ERROR, "MediaCodec configure failed, %s\n", av_err2str(ret));
> + list_pix_fmts(avctx, codec_mime);
> goto bailout;
> }
>
> --
> 2.30.2
>
More information about the ffmpeg-devel
mailing list