From a3e2019c2d0e5157c3a744be00db3a9ca255aae7 Mon Sep 17 00:00:00 2001 From: wm4 Date: Sat, 9 Nov 2013 23:18:09 +0100 Subject: ao: print requested audio format on init Also remove the rather bad/incomplete log calls from ao_alsa and ao_oss. --- audio/out/ao.c | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'audio/out/ao.c') diff --git a/audio/out/ao.c b/audio/out/ao.c index ccbcc16e88..88f0b2223d 100644 --- a/audio/out/ao.c +++ b/audio/out/ao.c @@ -153,6 +153,10 @@ static struct ao *ao_create(bool probing, struct mpv_global *global, if (m_config_set_obj_params(config, args) < 0) goto error; ao->priv = config->optstruct; + char *chmap = mp_chmap_to_str(&ao->channels); + MP_VERBOSE(ao, "requested format: %d Hz, %s channels, %s\n", + ao->samplerate, chmap, af_fmt_to_str(ao->format)); + talloc_free(chmap); if (ao->driver->init(ao) < 0) goto error; ao->bps = ao->channels.num * ao->samplerate * af_fmt2bits(ao->format) / 8; -- cgit v1.2.3