diff options
author | Justin Ruggles <justin.ruggles@gmail.com> | 2011-11-26 17:00:00 -0500 |
---|---|---|
committer | Justin Ruggles <justin.ruggles@gmail.com> | 2011-11-26 17:00:00 -0500 |
commit | 9d2dd356c2eb1ac403f05e7975e3a904e844aa17 (patch) | |
tree | ccab559d7236d0c27d2218e8500bf060c0c33503 /libavcodec/adx.c | |
parent | a17c3c7d15a841ce330e142966b9420fb64cf299 (diff) | |
download | ffmpeg-9d2dd356c2eb1ac403f05e7975e3a904e844aa17.tar.gz |
adx: rename ff_adx_decode_header() to avpriv_adx_decode_header()
It is used by the ADX decoder, and therefore needs to be exported in order to
work with shared libs.
Diffstat (limited to 'libavcodec/adx.c')
-rw-r--r-- | libavcodec/adx.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/adx.c b/libavcodec/adx.c index 9f03e930be..aa90fd89c3 100644 --- a/libavcodec/adx.c +++ b/libavcodec/adx.c @@ -34,8 +34,8 @@ void ff_adx_calculate_coeffs(int cutoff, int sample_rate, int bits, int *coeff) coeff[1] = lrintf(-(c * c) * (1 << bits)); } -int ff_adx_decode_header(AVCodecContext *avctx, const uint8_t *buf, int bufsize, - int *header_size, int *coeff) +int avpriv_adx_decode_header(AVCodecContext *avctx, const uint8_t *buf, + int bufsize, int *header_size, int *coeff) { int offset, cutoff; |