diff options
author | wm4 <wm4@nowhere> | 2013-11-07 22:12:36 +0100 |
---|---|---|
committer | wm4 <wm4@nowhere> | 2013-11-07 22:12:36 +0100 |
commit | 91626b1c0606afb9bb582070e8a444a3ba8395ab (patch) | |
tree | ae7245c12aae01734bde1c68ab7f2cc26aeb5845 /audio/decode | |
parent | aa48eeac9707f7e54468b55226af1188e7d72e30 (diff) |
audio: replace af_fmt2str_short -> af_fmt_to_str
Also, remove all af_fmt2str usages.
Diffstat (limited to 'audio/decode')
-rw-r--r-- | audio/decode/dec_audio.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/audio/decode/dec_audio.c b/audio/decode/dec_audio.c index b9ca71692f..127139ff60 100644 --- a/audio/decode/dec_audio.c +++ b/audio/decode/dec_audio.c @@ -160,7 +160,7 @@ int init_best_audio_codec(sh_audio_t *sh_audio, char *audio_decoders) mp_msg(MSGT_DECAUDIO, MSGL_V, "AUDIO: %d Hz, %d ch, %s\n", sh_audio->samplerate, sh_audio->channels.num, - af_fmt2str_short(sh_audio->sample_format)); + af_fmt_to_str(sh_audio->sample_format)); mp_msg(MSGT_IDENTIFY, MSGL_INFO, "ID_AUDIO_BITRATE=%d\nID_AUDIO_RATE=%d\n" "ID_AUDIO_NCH=%d\n", sh_audio->i_bps * 8, sh_audio->samplerate, sh_audio->channels.num); |