X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=libavcodec%2Fadxdec.c;h=13ff33d33e3f4a8af8c18c833dabae6c93b3ddec;hb=ec0c5d482e6f0cc8c94980494cf6bad39419302c;hp=cc7ca5ffcf48eb5c016823ccbf93970a43f52951;hpb=76c443c6d4c6b414eea6b0826ff6a0361795234d;p=ffmpeg diff --git a/libavcodec/adxdec.c b/libavcodec/adxdec.c index cc7ca5ffcf4..13ff33d33e3 100644 --- a/libavcodec/adxdec.c +++ b/libavcodec/adxdec.c @@ -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", };