1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2025-08-04 22:03:09 +02:00

avcodec/apv_decode: Remove redundant log message

ff_thread_get_buffer() already emits its own logmessage.

Reviewed-by: Mark Thompson <sw@jkqxz.net>
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
This commit is contained in:
Andreas Rheinhardt
2025-04-27 20:29:53 +02:00
parent e2fcf234e4
commit fcc562693e

View File

@ -277,10 +277,8 @@ static int apv_decode(AVCodecContext *avctx, AVFrame *output,
}
err = ff_thread_get_buffer(avctx, output, 0);
if (err) {
av_log(avctx, AV_LOG_ERROR, "No output frame supplied.\n");
if (err < 0)
return err;
}
apv->output_frame = output;