diff options
author | Anton Khirnov <anton@khirnov.net> | 2014-08-06 20:02:11 +0000 |
---|---|---|
committer | Anton Khirnov <anton@khirnov.net> | 2014-08-09 16:59:34 +0000 |
commit | 9325d88eba8038b3e2a4485e473a018410379e2d (patch) | |
tree | 22c127f4a4730cc8d96a382b8a30875e540f5973 /libavcodec/adx.c | |
parent | 24c788f4878729a42150581d7ed7e9a11daf874d (diff) | |
download | ffmpeg-9325d88eba8038b3e2a4485e473a018410379e2d.tar.gz |
lavc: remove obsolete and disabled avpriv functions
Diffstat (limited to 'libavcodec/adx.c')
-rw-r--r-- | libavcodec/adx.c | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/libavcodec/adx.c b/libavcodec/adx.c index 4d412d56d3..d941d7b89c 100644 --- a/libavcodec/adx.c +++ b/libavcodec/adx.c @@ -80,11 +80,3 @@ int ff_adx_decode_header(AVCodecContext *avctx, const uint8_t *buf, *header_size = offset; return 0; } - -#if LIBAVCODEC_VERSION_MAJOR < 56 -int avpriv_adx_decode_header(AVCodecContext *avctx, const uint8_t *buf, - int bufsize, int *header_size, int *coeff) -{ - return ff_adx_decode_header(avctx, buf, bufsize, header_size, coeff); -} -#endif |