Commit c58bcead authored by Hendrik Leppkes's avatar Hendrik Leppkes Committed by Janne Grunau

pcm_mpeg: fix number of consumed bytes to include the header.

Signed-off-by: 's avatarJanne Grunau <janne-libav@jannau.net>
parent 12d42cd7
......@@ -311,7 +311,7 @@ static int pcm_bluray_decode_frame(AVCodecContext *avctx, void *data,
if (avctx->debug & FF_DEBUG_BITSTREAM)
av_dlog(avctx, "pcm_bluray_decode_frame: decoded %d -> %d bytes\n",
retval, buf_size);
return retval;
return retval + 4;
}
AVCodec ff_pcm_bluray_decoder = {
......
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