summaryrefslogtreecommitdiff
path: root/libavcodec/aacdec.c
diff options
context:
space:
mode:
authorAnton Khirnov <anton@khirnov.net>2011-10-17 09:22:04 +0200
committerAnton Khirnov <anton@khirnov.net>2011-10-20 21:06:57 +0200
commit73ae27e17be5fd0a4e34e7ea8a449ca59bc09664 (patch)
tree13c62a2368fabc05725e57388c553f0b9868f22a /libavcodec/aacdec.c
parent8d74bf17c6d6280195854f4dadb19ef37d054566 (diff)
lavc: use avpriv_ prefix for ff_aac_parse_header().
It's used in lavf.
Diffstat (limited to 'libavcodec/aacdec.c')
-rw-r--r--libavcodec/aacdec.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/aacdec.c b/libavcodec/aacdec.c
index 8e7e74e10d..d03363d782 100644
--- a/libavcodec/aacdec.c
+++ b/libavcodec/aacdec.c
@@ -2075,7 +2075,7 @@ static int parse_adts_frame_header(AACContext *ac, GetBitContext *gb)
int size;
AACADTSHeaderInfo hdr_info;
- size = ff_aac_parse_header(gb, &hdr_info);
+ size = avpriv_aac_parse_header(gb, &hdr_info);
if (size > 0) {
if (ac->output_configured != OC_LOCKED && hdr_info.chan_config) {
enum ChannelPosition new_che_pos[4][MAX_ELEM_ID];