Commit fc435d97 authored by Paul B Mahol's avatar Paul B Mahol

pcm-dvd: remove redundant log message

Signed-off-by: 's avatarPaul B Mahol <onemda@gmail.com>
parent 91acb23a
......@@ -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 */
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment