Commit 658bd6db authored by Michael Niedermayer's avatar Michael Niedermayer

ac3_eac3_probe: mark buffer pointers const

Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent d7e050b1
......@@ -27,7 +27,7 @@
static int ac3_eac3_probe(AVProbeData *p, enum AVCodecID expected_codec_id)
{
int max_frames, first_frames = 0, frames;
uint8_t *buf, *buf2, *end;
const uint8_t *buf, *buf2, *end;
AC3HeaderInfo hdr;
GetBitContext gbc;
enum AVCodecID codec_id = AV_CODEC_ID_AC3;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment