diff options
author | Anton Khirnov <anton@khirnov.net> | 2014-08-28 18:42:56 +0000 |
---|---|---|
committer | Anton Khirnov <anton@khirnov.net> | 2014-11-06 09:04:12 +0100 |
commit | c070a8751597e3aa1b443e88464da785d8966b14 (patch) | |
tree | c123f6b093250c4ec8094d739d03f88c21502094 /libavcodec/flacdec.c | |
parent | 7784f47762d59e859b4d0f74b3e021ad9368ee2c (diff) | |
download | ffmpeg-c070a8751597e3aa1b443e88464da785d8966b14.tar.gz |
lavc: make avpriv_flac_parse_streaminfo() private on the next bump
Diffstat (limited to 'libavcodec/flacdec.c')
-rw-r--r-- | libavcodec/flacdec.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/flacdec.c b/libavcodec/flacdec.c index a4753097e0..cb72677c81 100644 --- a/libavcodec/flacdec.c +++ b/libavcodec/flacdec.c @@ -101,7 +101,7 @@ static av_cold int flac_decode_init(AVCodecContext *avctx) return AVERROR_INVALIDDATA; /* initialize based on the demuxer-supplied streamdata header */ - avpriv_flac_parse_streaminfo(avctx, (FLACStreaminfo *)s, streaminfo); + ff_flac_parse_streaminfo(avctx, (FLACStreaminfo *)s, streaminfo); ret = allocate_buffers(s); if (ret < 0) return ret; @@ -159,7 +159,7 @@ static int parse_streaminfo(FLACContext *s, const uint8_t *buf, int buf_size) metadata_size != FLAC_STREAMINFO_SIZE) { return AVERROR_INVALIDDATA; } - avpriv_flac_parse_streaminfo(s->avctx, (FLACStreaminfo *)s, &buf[8]); + ff_flac_parse_streaminfo(s->avctx, (FLACStreaminfo *)s, &buf[8]); ret = allocate_buffers(s); if (ret < 0) return ret; |