pcm-dvd: Fix build on big endian
authorMartin Storsjö <martin@martin.st>
Sat, 31 Aug 2013 15:35:33 +0000 (17:35 +0200)
committerMartin Storsjö <martin@martin.st>
Sat, 31 Aug 2013 16:06:26 +0000 (18:06 +0200)
Signed-off-by: Martin Storsjö <martin@martin.st>
libavcodec/pcm-dvd.c

index 8e88ad4..9fd6d13 100644 (file)
@@ -160,7 +160,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 {