diff options
author | Hendrik Leppkes <h.leppkes@gmail.com> | 2015-09-06 10:46:34 +0200 |
---|---|---|
committer | Hendrik Leppkes <h.leppkes@gmail.com> | 2015-09-06 16:25:58 +0200 |
commit | 34e85cb340675ac9b67b72a34cc785bbc8863660 (patch) | |
tree | 315c023a24df5774932d53d5203a966c7b6ac9ff /libavcodec/vorbis_parser.c | |
parent | 2cad7eebc13f54d5526d8599d536aa8ffdaefe3b (diff) | |
download | ffmpeg-34e85cb340675ac9b67b72a34cc785bbc8863660.tar.gz |
avcodec/vorbis: remove avpriv vorbis parser cruft
It was replaced by a public API
Diffstat (limited to 'libavcodec/vorbis_parser.c')
-rw-r--r-- | libavcodec/vorbis_parser.c | 21 |
1 files changed, 0 insertions, 21 deletions
diff --git a/libavcodec/vorbis_parser.c b/libavcodec/vorbis_parser.c index 8fa6d99588..0b2c97cde5 100644 --- a/libavcodec/vorbis_parser.c +++ b/libavcodec/vorbis_parser.c @@ -296,27 +296,6 @@ AVVorbisParseContext *av_vorbis_parse_init(const uint8_t *extradata, return s; } -#if LIBAVCODEC_VERSION_MAJOR < 57 -int avpriv_vorbis_parse_extradata(AVCodecContext *avctx, AVVorbisParseContext *s) -{ - return vorbis_parse_init(s, avctx->extradata, avctx->extradata_size); -} -void avpriv_vorbis_parse_reset(AVVorbisParseContext *s) -{ - av_vorbis_parse_reset(s); -} -int avpriv_vorbis_parse_frame(AVVorbisParseContext *s, const uint8_t *buf, - int buf_size) -{ - return av_vorbis_parse_frame(s, buf, buf_size); -} -int avpriv_vorbis_parse_frame_flags(AVVorbisParseContext *s, const uint8_t *buf, - int buf_size, int *flags) -{ - return av_vorbis_parse_frame_flags(s, buf, buf_size, flags); -} -#endif - #if CONFIG_VORBIS_PARSER typedef struct VorbisParseContext { |