diff options
author | Anton Khirnov | 2014-08-28 18:42:56 +0000 |
---|---|---|
committer | Anton Khirnov | 2014-11-06 09:04:56 +0100 |
commit | acc897e6b15776ed438b88ffe330ec48f6b50e48 (patch) | |
tree | ffc8eba3e890122c25990927d8538f9ca0d50e9c /libavcodec/flac.h | |
parent | e839de0f851535b5e19256b52f9865f0cb768a7c (diff) |
lavc: make avpriv_flac_is_extradata_valid() private on the next bump
Diffstat (limited to 'libavcodec/flac.h')
-rw-r--r-- | libavcodec/flac.h | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/libavcodec/flac.h b/libavcodec/flac.h index 1b8177465d..3229682047 100644 --- a/libavcodec/flac.h +++ b/libavcodec/flac.h @@ -102,6 +102,9 @@ void ff_flac_parse_streaminfo(AVCodecContext *avctx, struct FLACStreaminfo *s, #if LIBAVCODEC_VERSION_MAJOR < 57 void avpriv_flac_parse_streaminfo(AVCodecContext *avctx, struct FLACStreaminfo *s, const uint8_t *buffer); +int avpriv_flac_is_extradata_valid(AVCodecContext *avctx, + enum FLACExtradataFormat *format, + uint8_t **streaminfo_start); #endif /** @@ -111,9 +114,9 @@ void avpriv_flac_parse_streaminfo(AVCodecContext *avctx, struct FLACStreaminfo * * @param[out] streaminfo_start pointer to start of 34-byte STREAMINFO data. * @return 1 if valid, 0 if not valid. */ -int avpriv_flac_is_extradata_valid(AVCodecContext *avctx, - enum FLACExtradataFormat *format, - uint8_t **streaminfo_start); +int ff_flac_is_extradata_valid(AVCodecContext *avctx, + enum FLACExtradataFormat *format, + uint8_t **streaminfo_start); /** * Calculate an estimate for the maximum frame size based on verbatim mode. |