diff --git a/src/rtp/audio_decoders.c b/src/rtp/audio_decoders.c index bcd61a573..07a93bd68 100644 --- a/src/rtp/audio_decoders.c +++ b/src/rtp/audio_decoders.c @@ -430,8 +430,8 @@ int decode_audio_frame(struct coded_data *cdata, void *data) if(device_sample_rate == sample_rate) // no resampling device_bps = bps; - printf("New incoming audio format detected: %d Hz, %d channels, %d bits per sample, codec %s\n", - sample_rate, input_channels, bps * 8, + printf("New incoming audio format detected: %d Hz, %d channel%s, %d bits per sample, codec %s\n", + sample_rate, input_channels, input_channels == 1 ? "": "s", bps * 8, get_name_to_audio_codec(get_audio_codec_to_tag(audio_tag)));