diff options
author | Hendrik Leppkes <h.leppkes@gmail.com> | 2015-09-06 10:44:59 +0200 |
---|---|---|
committer | Hendrik Leppkes <h.leppkes@gmail.com> | 2015-09-06 16:25:56 +0200 |
commit | 2cad7eebc13f54d5526d8599d536aa8ffdaefe3b (patch) | |
tree | 518f75e05b7fec3ec4d474092e0488eb938a6f9e /libavcodec/flac.c | |
parent | eb011f73ca2f7dc51576c5bd006004dcfc7dfb69 (diff) | |
download | ffmpeg-2cad7eebc13f54d5526d8599d536aa8ffdaefe3b.tar.gz |
avcodec/flac: remove avpriv parsing API cruft
Diffstat (limited to 'libavcodec/flac.c')
-rw-r--r-- | libavcodec/flac.c | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/libavcodec/flac.c b/libavcodec/flac.c index 5ff004e01b..f5154b9149 100644 --- a/libavcodec/flac.c +++ b/libavcodec/flac.c @@ -235,18 +235,3 @@ void ff_flac_parse_streaminfo(AVCodecContext *avctx, struct FLACStreaminfo *s, skip_bits_long(&gb, 64); /* md5 sum */ skip_bits_long(&gb, 64); /* md5 sum */ } - -#if LIBAVCODEC_VERSION_MAJOR < 57 -void avpriv_flac_parse_streaminfo(AVCodecContext *avctx, struct FLACStreaminfo *s, - const uint8_t *buffer) -{ - 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 |