summaryrefslogtreecommitdiff
path: root/libavcodec/adx_parser.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 /libavcodec/adx_parser.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 'libavcodec/adx_parser.c')
-rw-r--r--libavcodec/adx_parser.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/adx_parser.c b/libavcodec/adx_parser.c
index 6de5ad48d1..ebcb1370e5 100644
--- a/libavcodec/adx_parser.c
+++ b/libavcodec/adx_parser.c
@@ -53,8 +53,8 @@ static int adx_parse(AVCodecParserContext *s1,
ff_combine_frame(pc, END_NOT_FOUND, &buf, &buf_size);
if (!s->header_size && pc->index >= MIN_HEADER_SIZE) {
- if (ret = ff_adx_decode_header(avctx, pc->buffer, pc->index,
- &s->header_size, NULL))
+ if (ret = avpriv_adx_decode_header(avctx, pc->buffer, pc->index,
+ &s->header_size, NULL))
return AVERROR_INVALIDDATA;
s->block_size = BLOCK_SIZE * avctx->channels;
}