summaryrefslogtreecommitdiff
path: root/ffplay.c
diff options
context:
space:
mode:
authorStefano Sabatini <stefasab@gmail.com>2012-06-28 23:51:19 +0200
committerStefano Sabatini <stefasab@gmail.com>2012-06-29 23:15:45 +0200
commit94a00ec8af342e037c50c64214546c7673745040 (patch)
treea511b94fed3587f85b46500e14fccb6b0daa9579 /ffplay.c
parent8179660222ec27b61d072ede8e515999c44b81da (diff)
ffplay: group together and vertically align correlated parameters in log function
Possibly improve readability.
Diffstat (limited to 'ffplay.c')
-rw-r--r--ffplay.c8
1 files changed, 2 insertions, 6 deletions
diff --git a/ffplay.c b/ffplay.c
index de78db92dc..df66a2ecc3 100644
--- a/ffplay.c
+++ b/ffplay.c
@@ -1972,12 +1972,8 @@ static int audio_decode_frame(VideoState *is, double *pts_ptr)
0, NULL);
if (!is->swr_ctx || swr_init(is->swr_ctx) < 0) {
fprintf(stderr, "Cannot create sample rate converter for conversion of %d Hz %s %d channels to %d Hz %s %d channels!\n",
- dec->sample_rate,
- av_get_sample_fmt_name(dec->sample_fmt),
- dec->channels,
- is->audio_tgt.freq,
- av_get_sample_fmt_name(is->audio_tgt.fmt),
- is->audio_tgt.channels);
+ dec->sample_rate, av_get_sample_fmt_name(dec->sample_fmt), dec->channels,
+ is->audio_tgt.freq, av_get_sample_fmt_name(is->audio_tgt.fmt), is->audio_tgt.channels);
break;
}
is->audio_src.channel_layout = dec_channel_layout;