diff options
author | Anton Khirnov <anton@khirnov.net> | 2012-01-22 10:56:42 +0100 |
---|---|---|
committer | Anton Khirnov <anton@khirnov.net> | 2012-01-27 10:38:33 +0100 |
commit | 62dfea653564a09be78d0a8361ee968e525b33bf (patch) | |
tree | a4a27baba5077cfb9413b31b032fc8ae01484e2a /libavcodec/audioconvert.c | |
parent | 284e65d64ea91dc172dea1b843d162b22ed48730 (diff) | |
download | ffmpeg-62dfea653564a09be78d0a8361ee968e525b33bf.tar.gz |
lavc: remove disabled FF_API_OLD_AUDIOCONVERT cruft.
Diffstat (limited to 'libavcodec/audioconvert.c')
-rw-r--r-- | libavcodec/audioconvert.c | 17 |
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; |