[FFmpeg-devel] [PATCH 1/2] avcodec/mediacodecdec_common: log codec name during configure/start failures

Matthieu Bouron matthieu.bouron at gmail.com
Fri Sep 6 11:29:39 EEST 2019


On Thu, Sep 05, 2019 at 04:07:19PM -0700, Aman Gupta wrote:
> From: Aman Gupta <aman at tmm1.net>
> 
> Signed-off-by: Aman Gupta <aman at tmm1.net>
> ---
>  libavcodec/mediacodecdec_common.c | 8 ++++----
>  1 file changed, 4 insertions(+), 4 deletions(-)
> 
> diff --git a/libavcodec/mediacodecdec_common.c b/libavcodec/mediacodecdec_common.c
> index ab8525fb14..d200372dd4 100644
> --- a/libavcodec/mediacodecdec_common.c
> +++ b/libavcodec/mediacodecdec_common.c
> @@ -525,8 +525,8 @@ int ff_mediacodec_dec_init(AVCodecContext *avctx, MediaCodecDecContext *s,
>      if (status < 0) {
>          char *desc = ff_AMediaFormat_toString(format);
>          av_log(avctx, AV_LOG_ERROR,
> -            "Failed to configure codec (status = %d) with format %s\n",
> -            status, desc);
> +            "Failed to configure codec %s (status = %d) with format %s\n",
> +            s->codec_name, status, desc);
>          av_freep(&desc);
>  
>          ret = AVERROR_EXTERNAL;
> @@ -537,8 +537,8 @@ int ff_mediacodec_dec_init(AVCodecContext *avctx, MediaCodecDecContext *s,
>      if (status < 0) {
>          char *desc = ff_AMediaFormat_toString(format);
>          av_log(avctx, AV_LOG_ERROR,
> -            "Failed to start codec (status = %d) with format %s\n",
> -            status, desc);
> +            "Failed to start codec %s (status = %d) with format %s\n",
> +            s->codec_name, status, desc);
>          av_freep(&desc);
>          ret = AVERROR_EXTERNAL;
>          goto fail;
> -- 
> 2.20.1
> 

LGTM.

-- 
Matthieu B.


More information about the ffmpeg-devel mailing list