mirror of https://git.ffmpeg.org/ffmpeg.git
cin audio: use sign_extend() instead of casting to int16_t
This commit is contained in:
parent
405af43104
commit
7d1b17b833
|
@ -26,6 +26,7 @@
|
|||
|
||||
#include "avcodec.h"
|
||||
#include "bytestream.h"
|
||||
#include "mathops.h"
|
||||
|
||||
|
||||
typedef enum CinVideoBitmapIndex {
|
||||
|
@ -339,7 +340,7 @@ static int cinaudio_decode_frame(AVCodecContext *avctx,
|
|||
delta = cin->delta;
|
||||
if (cin->initial_decode_frame) {
|
||||
cin->initial_decode_frame = 0;
|
||||
delta = (int16_t)AV_RL16(buf);
|
||||
delta = sign_extend(AV_RL16(buf), 16);
|
||||
buf += 2;
|
||||
*samples++ = delta;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue