diff options
author | Anton Khirnov <anton@khirnov.net> | 2011-10-17 09:45:27 +0200 |
---|---|---|
committer | Anton Khirnov <anton@khirnov.net> | 2011-10-20 21:06:58 +0200 |
commit | 357db4c263bb7edfd9790414f0f378e752f924e9 (patch) | |
tree | 511390ac7ac03b801c72fbd507cd7b1e897c9883 /libavcodec/vp3.c | |
parent | 2361e59b98f1c78d9720e72aabfb847dd9906f12 (diff) | |
download | ffmpeg-357db4c263bb7edfd9790414f0f378e752f924e9.tar.gz |
lavc: use avpriv_ prefix for ff_split_xiph_headers.
It's used in lavf.
Diffstat (limited to 'libavcodec/vp3.c')
-rw-r--r-- | libavcodec/vp3.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/vp3.c b/libavcodec/vp3.c index 9262c27f05..36715bb0c7 100644 --- a/libavcodec/vp3.c +++ b/libavcodec/vp3.c @@ -2275,7 +2275,7 @@ static av_cold int theora_decode_init(AVCodecContext *avctx) return -1; } - if (ff_split_xiph_headers(avctx->extradata, avctx->extradata_size, + if (avpriv_split_xiph_headers(avctx->extradata, avctx->extradata_size, 42, header_start, header_len) < 0) { av_log(avctx, AV_LOG_ERROR, "Corrupt extradata\n"); return -1; |