summaryrefslogtreecommitdiffstats
path: root/libavcodec/flacdec.c
diff options
context:
space:
mode:
authorAnton Khirnov <anton@khirnov.net>2014-08-28 18:42:56 +0000
committerAnton Khirnov <anton@khirnov.net>2014-11-06 09:04:56 +0100
commitacc897e6b15776ed438b88ffe330ec48f6b50e48 (patch)
treeffc8eba3e890122c25990927d8538f9ca0d50e9c /libavcodec/flacdec.c
parente839de0f851535b5e19256b52f9865f0cb768a7c (diff)
downloadffmpeg-streaming-acc897e6b15776ed438b88ffe330ec48f6b50e48.zip
ffmpeg-streaming-acc897e6b15776ed438b88ffe330ec48f6b50e48.tar.gz
lavc: make avpriv_flac_is_extradata_valid() private on the next bump
Diffstat (limited to 'libavcodec/flacdec.c')
-rw-r--r--libavcodec/flacdec.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/flacdec.c b/libavcodec/flacdec.c
index cb72677..6cce692 100644
--- a/libavcodec/flacdec.c
+++ b/libavcodec/flacdec.c
@@ -97,7 +97,7 @@ static av_cold int flac_decode_init(AVCodecContext *avctx)
if (!avctx->extradata)
return 0;
- if (!avpriv_flac_is_extradata_valid(avctx, &format, &streaminfo))
+ if (!ff_flac_is_extradata_valid(avctx, &format, &streaminfo))
return AVERROR_INVALIDDATA;
/* initialize based on the demuxer-supplied streamdata header */
OpenPOWER on IntegriCloud