mirror of https://git.ffmpeg.org/ffmpeg.git
make input buffer const, as it should be. fixes a warning.
Originally committed as revision 12418 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
074ac3c2d0
commit
98f6dfa653
|
@ -1125,7 +1125,8 @@ static int ac3_parse_audio_block(AC3DecodeContext *s, int blk)
|
|||
/**
|
||||
* Decode a single AC-3 frame.
|
||||
*/
|
||||
static int ac3_decode_frame(AVCodecContext * avctx, void *data, int *data_size, uint8_t *buf, int buf_size)
|
||||
static int ac3_decode_frame(AVCodecContext * avctx, void *data, int *data_size,
|
||||
const uint8_t *buf, int buf_size)
|
||||
{
|
||||
AC3DecodeContext *s = avctx->priv_data;
|
||||
int16_t *out_samples = (int16_t *)data;
|
||||
|
|
Loading…
Reference in New Issue