[FFmpeg-cvslog] lavc: make avpriv_flac_is_extradata_valid() private on the next bump
Anton Khirnov
git at videolan.org
Thu Nov 6 14:23:39 CET 2014
ffmpeg | branch: master | Anton Khirnov <anton at khirnov.net> | Thu Aug 28 18:42:56 2014 +0000| [acc897e6b15776ed438b88ffe330ec48f6b50e48] | committer: Anton Khirnov
lavc: make avpriv_flac_is_extradata_valid() private on the next bump
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=acc897e6b15776ed438b88ffe330ec48f6b50e48
---
libavcodec/flac.c | 9 ++++++++-
libavcodec/flac.h | 9 ++++++---
libavcodec/flacdec.c | 2 +-
3 files changed, 15 insertions(+), 5 deletions(-)
diff --git a/libavcodec/flac.c b/libavcodec/flac.c
index 3a234d2..3e51fde 100644
--- a/libavcodec/flac.c
+++ b/libavcodec/flac.c
@@ -166,7 +166,7 @@ int ff_flac_get_max_frame_size(int blocksize, int ch, int bps)
return count;
}
-int avpriv_flac_is_extradata_valid(AVCodecContext *avctx,
+int ff_flac_is_extradata_valid(AVCodecContext *avctx,
enum FLACExtradataFormat *format,
uint8_t **streaminfo_start)
{
@@ -243,4 +243,11 @@ void avpriv_flac_parse_streaminfo(AVCodecContext *avctx, struct FLACStreaminfo *
{
ff_flac_parse_streaminfo(avctx, s, buffer);
}
+
+int avpriv_flac_is_extradata_valid(AVCodecContext *avctx,
+ enum FLACExtradataFormat *format,
+ uint8_t **streaminfo_start)
+{
+ return ff_flac_is_extradata_valid(avctx, format, streaminfo_start);
+}
#endif
diff --git a/libavcodec/flac.h b/libavcodec/flac.h
index 1b81774..3229682 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.
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 */
More information about the ffmpeg-cvslog
mailing list