]> git.sesse.net Git - ffmpeg/blobdiff - libavcodec/adxdec.c
Simplify eq()
[ffmpeg] / libavcodec / adxdec.c
index cc7ca5ffcf48eb5c016823ccbf93970a43f52951..13ff33d33e3f4a8af8c18c833dabae6c93b3ddec 100644 (file)
@@ -96,7 +96,7 @@ static int adx_decode_header(AVCodecContext *avctx,const unsigned char *buf,size
 
 static int adx_decode_frame(AVCodecContext *avctx,
                 void *data, int *data_size,
-                uint8_t *buf0, int buf_size)
+                const uint8_t *buf0, int buf_size)
 {
     ADXContext *c = avctx->priv_data;
     short *samples = data;
@@ -165,5 +165,6 @@ AVCodec adpcm_adx_decoder = {
     NULL,
     NULL,
     adx_decode_frame,
+    .long_name = "SEGA CRI ADX",
 };