Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAnton Khirnov <anton@khirnov.net>2012-01-22 13:56:42 +0400
committerAnton Khirnov <anton@khirnov.net>2012-01-27 13:38:33 +0400
commit62dfea653564a09be78d0a8361ee968e525b33bf (patch)
treea4a27baba5077cfb9413b31b032fc8ae01484e2a /libavcodec/audioconvert.c
parent284e65d64ea91dc172dea1b843d162b22ed48730 (diff)
lavc: remove disabled FF_API_OLD_AUDIOCONVERT cruft.
Diffstat (limited to 'libavcodec/audioconvert.c')
-rw-r--r--libavcodec/audioconvert.c17
1 files changed, 0 insertions, 17 deletions
diff --git a/libavcodec/audioconvert.c b/libavcodec/audioconvert.c
index 9cb465ce7c..0e1160d8e3 100644
--- a/libavcodec/audioconvert.c
+++ b/libavcodec/audioconvert.c
@@ -45,23 +45,6 @@ uint64_t avcodec_guess_channel_layout(int nb_channels, enum CodecID codec_id, co
}
}
-#if FF_API_OLD_AUDIOCONVERT
-int64_t avcodec_get_channel_layout(const char *name)
-{
- return av_get_channel_layout(name);
-}
-
-void avcodec_get_channel_layout_string(char *buf, int buf_size, int nb_channels, int64_t channel_layout)
-{
- av_get_channel_layout_string(buf, buf_size, nb_channels, channel_layout);
-}
-
-int avcodec_channel_layout_num_channels(int64_t channel_layout)
-{
- return av_get_channel_layout_nb_channels(channel_layout);
-}
-#endif
-
struct AVAudioConvert {
int in_channels, out_channels;
int fmt_pair;