g726: use int16_t instead of short

pull/2/head
Justin Ruggles 14 years ago
parent 7b7b220cf7
commit e61a670b53
  1. 4
      libavcodec/g726.c

@ -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…
Cancel
Save