From 91626b1c0606afb9bb582070e8a444a3ba8395ab Mon Sep 17 00:00:00 2001 From: wm4 Date: Thu, 7 Nov 2013 22:12:36 +0100 Subject: audio: replace af_fmt2str_short -> af_fmt_to_str Also, remove all af_fmt2str usages. --- audio/audio.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'audio/audio.c') diff --git a/audio/audio.c b/audio/audio.c index e1d3a76978..9d41928436 100644 --- a/audio/audio.c +++ b/audio/audio.c @@ -65,7 +65,7 @@ char *mp_audio_fmt_to_str(int srate, const struct mp_chmap *chmap, int format) { char *chstr = mp_chmap_to_str(chmap); char *res = talloc_asprintf(NULL, "%dHz %s %dch %s", srate, chstr, - chmap->num, af_fmt2str_short(format)); + chmap->num, af_fmt_to_str(format)); talloc_free(chstr); return res; } -- cgit v1.2.3