mirror of https://git.ffmpeg.org/ffmpeg.git
pcm_mpeg: fix number of consumed bytes to include the header.
Signed-off-by: Janne Grunau <janne-libav@jannau.net>
This commit is contained in:
parent
12d42cd7a8
commit
c58bcead3b
|
@ -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 = {
|
||||
|
|
Loading…
Reference in New Issue