Browse Source

fixing overflow in 16->8 bit conversion, patch by (Nikolai Zhubr <s001 at hotbox dot ru>)

Originally committed as revision 913 to svn://svn.ffmpeg.org/ffmpeg/trunk
tags/v0.5
Nikolai Zhubr Michael Niedermayer 23 years ago
parent
commit
0eaec10550
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      libavcodec/pcm.c

+ 2
- 2
libavcodec/pcm.c View File

@@ -209,14 +209,14 @@ static int pcm_encode_frame(AVCodecContext *avctx,
case CODEC_ID_PCM_S8:
for(;n>0;n--) {
v = *samples++;
dst[0] = (v + 128) >> 8;
dst[0] = v >> 8;
dst++;
}
break;
case CODEC_ID_PCM_U8:
for(;n>0;n--) {
v = *samples++;
dst[0] = ((v + 128) >> 8) + 128;
dst[0] = (v >> 8) + 128;
dst++;
}
break;


Loading…
Cancel
Save