[FFmpeg-cvslog] lavc: remove obsolete and disabled avpriv functions
Anton Khirnov
git at videolan.org
Sun Aug 10 02:14:47 CEST 2014
ffmpeg | branch: master | Anton Khirnov <anton at khirnov.net> | Wed Aug 6 20:02:11 2014 +0000| [9325d88eba8038b3e2a4485e473a018410379e2d] | committer: Anton Khirnov
lavc: remove obsolete and disabled avpriv functions
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=9325d88eba8038b3e2a4485e473a018410379e2d
---
libavcodec/adx.c | 8 --------
libavcodec/adx.h | 5 -----
libavcodec/dv_profile.c | 13 -------------
libavcodec/dv_profile.h | 6 ------
libavcodec/flac.c | 8 --------
libavcodec/flac.h | 5 -----
6 files changed, 45 deletions(-)
diff --git a/libavcodec/adx.c b/libavcodec/adx.c
index 4d412d5..d941d7b 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
diff --git a/libavcodec/adx.h b/libavcodec/adx.h
index 9328111..9ae84dc 100644
--- a/libavcodec/adx.h
+++ b/libavcodec/adx.h
@@ -77,9 +77,4 @@ void ff_adx_calculate_coeffs(int cutoff, int sample_rate, int bits, int *coeff);
int ff_adx_decode_header(AVCodecContext *avctx, const uint8_t *buf,
int bufsize, int *header_size, int *coeff);
-#if LIBAVCODEC_VERSION_MAJOR < 56
-int avpriv_adx_decode_header(AVCodecContext *avctx, const uint8_t *buf,
- int bufsize, int *header_size, int *coeff);
-#endif
-
#endif /* AVCODEC_ADX_H */
diff --git a/libavcodec/dv_profile.c b/libavcodec/dv_profile.c
index 686632d..f3cf86f 100644
--- a/libavcodec/dv_profile.c
+++ b/libavcodec/dv_profile.c
@@ -308,16 +308,3 @@ const AVDVProfile *av_dv_codec_profile(int width, int height,
return NULL;
}
-
-#if LIBAVCODEC_VERSION_MAJOR < 56
-const AVDVProfile *avpriv_dv_frame_profile(const AVDVProfile *sys,
- const uint8_t* frame, unsigned buf_size)
-{
- return av_dv_frame_profile(sys, frame, buf_size);
-}
-
-const AVDVProfile *avpriv_dv_codec_profile(AVCodecContext *codec)
-{
- return av_dv_codec_profile(codec->width, codec->height, codec->pix_fmt);
-}
-#endif
diff --git a/libavcodec/dv_profile.h b/libavcodec/dv_profile.h
index f2f5ce9..5ad7b4f 100644
--- a/libavcodec/dv_profile.h
+++ b/libavcodec/dv_profile.h
@@ -53,12 +53,6 @@ typedef struct AVDVProfile {
const uint8_t (*audio_shuffle)[9]; /* PCM shuffling table */
} AVDVProfile;
-#if LIBAVCODEC_VERSION_MAJOR < 56
-const AVDVProfile *avpriv_dv_frame_profile(const AVDVProfile *sys,
- const uint8_t* frame, unsigned buf_size);
-const AVDVProfile *avpriv_dv_codec_profile(AVCodecContext* codec);
-#endif
-
/**
* Get a DV profile for the provided compressed frame.
*
diff --git a/libavcodec/flac.c b/libavcodec/flac.c
index cd1a6ab..ec0cb6f 100644
--- a/libavcodec/flac.c
+++ b/libavcodec/flac.c
@@ -236,11 +236,3 @@ void avpriv_flac_parse_streaminfo(AVCodecContext *avctx, struct FLACStreaminfo *
skip_bits_long(&gb, 64); /* md5 sum */
skip_bits_long(&gb, 64); /* md5 sum */
}
-
-#if LIBAVCODEC_VERSION_MAJOR < 56
-void avpriv_flac_parse_block_header(const uint8_t *block_header,
- int *last, int *type, int *size)
-{
- flac_parse_block_header(block_header, last, type, size);
-}
-#endif
diff --git a/libavcodec/flac.h b/libavcodec/flac.h
index fbd34a1..9baa330 100644
--- a/libavcodec/flac.h
+++ b/libavcodec/flac.h
@@ -110,11 +110,6 @@ int avpriv_flac_is_extradata_valid(AVCodecContext *avctx,
enum FLACExtradataFormat *format,
uint8_t **streaminfo_start);
-#if LIBAVCODEC_VERSION_MAJOR < 56
-void avpriv_flac_parse_block_header(const uint8_t *block_header,
- int *last, int *type, int *size);
-#endif
-
/**
* Calculate an estimate for the maximum frame size based on verbatim mode.
* @param blocksize block size, in samples
More information about the ffmpeg-cvslog
mailing list