From c070a8751597e3aa1b443e88464da785d8966b14 Mon Sep 17 00:00:00 2001 From: Anton Khirnov Date: Thu, 28 Aug 2014 18:42:56 +0000 Subject: lavc: make avpriv_flac_parse_streaminfo() private on the next bump --- libavcodec/flac.h | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'libavcodec/flac.h') diff --git a/libavcodec/flac.h b/libavcodec/flac.h index 9baa330bf9..1b8177465d 100644 --- a/libavcodec/flac.h +++ b/libavcodec/flac.h @@ -96,8 +96,13 @@ typedef struct FLACFrameInfo { * @param[out] s where parsed information is stored * @param[in] buffer pointer to start of 34-byte streaminfo data */ +void ff_flac_parse_streaminfo(AVCodecContext *avctx, struct FLACStreaminfo *s, + const uint8_t *buffer); + +#if LIBAVCODEC_VERSION_MAJOR < 57 void avpriv_flac_parse_streaminfo(AVCodecContext *avctx, struct FLACStreaminfo *s, const uint8_t *buffer); +#endif /** * Validate the FLAC extradata. -- cgit v1.2.1