summaryrefslogtreecommitdiff
path: root/libavformat/adxdec.c
diff options
context:
space:
mode:
authorJustin Ruggles <justin.ruggles@gmail.com>2011-11-26 17:00:00 -0500
committerJustin Ruggles <justin.ruggles@gmail.com>2011-11-26 17:00:00 -0500
commit9d2dd356c2eb1ac403f05e7975e3a904e844aa17 (patch)
treeccab559d7236d0c27d2218e8500bf060c0c33503 /libavformat/adxdec.c
parenta17c3c7d15a841ce330e142966b9420fb64cf299 (diff)
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 'libavformat/adxdec.c')
-rw-r--r--libavformat/adxdec.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/libavformat/adxdec.c b/libavformat/adxdec.c
index 76b3728b1e..eff26982ea 100644
--- a/libavformat/adxdec.c
+++ b/libavformat/adxdec.c
@@ -86,8 +86,9 @@ static int adx_read_header(AVFormatContext *s, AVFormatParameters *ap)
}
avctx->extradata_size = c->header_size;
- ret = ff_adx_decode_header(avctx, avctx->extradata, avctx->extradata_size,
- &c->header_size, NULL);
+ ret = avpriv_adx_decode_header(avctx, avctx->extradata,
+ avctx->extradata_size, &c->header_size,
+ NULL);
if (ret)
return ret;