aboutsummaryrefslogtreecommitdiffstats
path: root/libavcodec/pcm-dvd.c
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2013-11-18 20:56:40 +0100
committerCarl Eugen Hoyos <cehoyos@ag.or.at>2013-11-19 11:46:32 +0100
commit607e5038a9a521e6f64855c6eb408c433611b611 (patch)
treec3706e075312af55aaa60e02907ee4b3591f3bec /libavcodec/pcm-dvd.c
parenta289b0b91a799a3db6cb5bebb628132863d632e4 (diff)
downloadandroid_external_ffmpeg-607e5038a9a521e6f64855c6eb408c433611b611.tar.gz
android_external_ffmpeg-607e5038a9a521e6f64855c6eb408c433611b611.tar.bz2
android_external_ffmpeg-607e5038a9a521e6f64855c6eb408c433611b611.zip
avcodec/pcm-dvd: fix 20bit 2 channels
Fixes part of ticket3122 Signed-off-by: Michael Niedermayer <michaelni@gmx.at> (cherry picked from commit 5db49fc38d9132e134de92584f296559bec3b789)
Diffstat (limited to 'libavcodec/pcm-dvd.c')
-rw-r--r--libavcodec/pcm-dvd.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/libavcodec/pcm-dvd.c b/libavcodec/pcm-dvd.c
index 9696b09115..b895e39786 100644
--- a/libavcodec/pcm-dvd.c
+++ b/libavcodec/pcm-dvd.c
@@ -180,11 +180,11 @@ static void *pcm_dvd_decode_samples(AVCodecContext *avctx, const uint8_t *src,
dst32[2] = bytestream2_get_be16u(&gb) << 16;
dst32[3] = bytestream2_get_be16u(&gb) << 16;
t = bytestream2_get_byteu(&gb);
- *dst32 += (t & 0xf0) << 8;
- *dst32 += (t & 0x0f) << 12;
+ *dst32++ += (t & 0xf0) << 8;
+ *dst32++ += (t & 0x0f) << 12;
t = bytestream2_get_byteu(&gb);
- *dst32 += (t & 0xf0) << 8;
- *dst32 += (t & 0x0f) << 12;
+ *dst32++ += (t & 0xf0) << 8;
+ *dst32++ += (t & 0x0f) << 12;
}
} while (--blocks);
return dst32;