Browse Source

libgsm: Drop const qualifier to silence compiler warning.

libavcodec/libgsm.c:148: warning: passing argument 2 of ‘gsm_decode’ discards qualifiers from pointer target type
/usr/include/gsm/gsm.h:68: note: expected ‘gsm_byte *’ but argument is of type ‘const uint8_t *’
tags/n0.9
Diego Biurrun 14 years ago
parent
commit
357d0d8fc7
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      libavcodec/libgsm.c

+ 1
- 1
libavcodec/libgsm.c View File

@@ -139,7 +139,7 @@ AVCodec ff_libgsm_ms_encoder = {
static int libgsm_decode_frame(AVCodecContext *avctx,
void *data, int *data_size,
AVPacket *avpkt) {
const uint8_t *buf = avpkt->data;
uint8_t *buf = avpkt->data;
int buf_size = avpkt->size;
*data_size = 0; /* In case of error */
if(buf_size < avctx->block_align) return -1;


Loading…
Cancel
Save