diff options
author | Anton Khirnov <anton@khirnov.net> | 2011-10-17 10:04:12 +0200 |
---|---|---|
committer | Anton Khirnov <anton@khirnov.net> | 2011-10-20 21:06:58 +0200 |
commit | 6f89efeaa7eceb3408abb6e593d892ec819177a7 (patch) | |
tree | 44baa4c757b971613eb97716c0898c4dcb2ca5a2 /libavformat/ac3dec.c | |
parent | 9138a130cd69e6828da5796a0555eac5a0af2357 (diff) | |
download | ffmpeg-6f89efeaa7eceb3408abb6e593d892ec819177a7.tar.gz |
lavc: use avpriv_ prefix for ff_ac3_parse_header.
It's used in lavf.
Diffstat (limited to 'libavformat/ac3dec.c')
-rw-r--r-- | libavformat/ac3dec.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/ac3dec.c b/libavformat/ac3dec.c index 2cb068e57c..ca6aee3685 100644 --- a/libavformat/ac3dec.c +++ b/libavformat/ac3dec.c @@ -41,7 +41,7 @@ static int ac3_eac3_probe(AVProbeData *p, enum CodecID expected_codec_id) for(frames = 0; buf2 < end; frames++) { init_get_bits(&gbc, buf2, 54); - if(ff_ac3_parse_header(&gbc, &hdr) < 0) + if(avpriv_ac3_parse_header(&gbc, &hdr) < 0) break; if(buf2 + hdr.frame_size > end || av_crc(av_crc_get_table(AV_CRC_16_ANSI), 0, buf2 + 2, hdr.frame_size - 2)) |