You've already forked FFmpeg
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:
@ -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;
|
||||
|
||||
|
Reference in New Issue
Block a user