mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-01-24 13:56:33 +02:00
pcm-dvd: remove redundant log message
Signed-off-by: Paul B Mahol <onemda@gmail.com>
This commit is contained in:
parent
91acb23a28
commit
fc435d977a
@ -236,10 +236,8 @@ static int pcm_dvd_decode_frame(AVCodecContext *avctx, void *data,
|
||||
|
||||
/* get output buffer */
|
||||
frame->nb_samples = blocks * s->samples_per_block;
|
||||
if ((retval = ff_get_buffer(avctx, frame, 0)) < 0) {
|
||||
av_log(avctx, AV_LOG_ERROR, "get_buffer() failed\n");
|
||||
if ((retval = ff_get_buffer(avctx, frame, 0)) < 0)
|
||||
return retval;
|
||||
}
|
||||
dst = frame->data[0];
|
||||
|
||||
/* consume leftover samples from last packet */
|
||||
|
Loading…
x
Reference in New Issue
Block a user