mirror of
https://gitee.com/openharmony/third_party_ffmpeg
synced 2024-11-24 03:39:45 +00:00
g726: use int16_t instead of short
This commit is contained in:
parent
7b7b220cf7
commit
e61a670b53
@ -353,7 +353,7 @@ static int g726_encode_frame(AVCodecContext *avctx,
|
||||
uint8_t *dst, int buf_size, void *data)
|
||||
{
|
||||
G726Context *c = avctx->priv_data;
|
||||
const short *samples = data;
|
||||
const int16_t *samples = data;
|
||||
PutBitContext pb;
|
||||
int i;
|
||||
|
||||
@ -375,7 +375,7 @@ static int g726_decode_frame(AVCodecContext *avctx,
|
||||
const uint8_t *buf = avpkt->data;
|
||||
int buf_size = avpkt->size;
|
||||
G726Context *c = avctx->priv_data;
|
||||
short *samples = data;
|
||||
int16_t *samples = data;
|
||||
GetBitContext gb;
|
||||
|
||||
init_get_bits(&gb, buf, buf_size * 8);
|
||||
|
Loading…
Reference in New Issue
Block a user