X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=libavcodec%2Fvorbis_parser.c;h=0b2c97cde583d88f83ac936a1d24be6d21c2bfc1;hb=f874e2728b0925b2ec30dd7ec64815f15078c06f;hp=8fa6d9958849a2fa2363e7d72c41aa3a0187d2a8;hpb=d96d0252fd535db5183492b804341cba93468b15;p=ffmpeg diff --git a/libavcodec/vorbis_parser.c b/libavcodec/vorbis_parser.c index 8fa6d995884..0b2c97cde58 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 {