mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-12-23 12:43:46 +02:00
pcm-dvd: Fix build on big endian
Signed-off-by: Martin Storsjö <martin@martin.st> Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
parent
cb4d05e7f2
commit
789cd1de99
@ -162,7 +162,7 @@ static void *pcm_dvd_decode_samples(AVCodecContext *avctx, const uint8_t *src,
|
||||
case 16:
|
||||
#if HAVE_BIGENDIAN
|
||||
bytestream2_get_buffer(&gb, dst16, blocks * s->block_size);
|
||||
dst16 += blocks * block_size / 2;
|
||||
dst16 += blocks * s->block_size / 2;
|
||||
#else
|
||||
samples = blocks * avctx->channels;
|
||||
do {
|
||||
|
Loading…
Reference in New Issue
Block a user