[FFmpeg-cvslog] ffplay: reindent and remove pointless cast in audio_decode_frame() code

Stefano Sabatini git at videolan.org
Sun Feb 24 23:46:08 CET 2013


ffmpeg | branch: master | Stefano Sabatini <stefasab at gmail.com> | Sun Feb 24 23:29:42 2013 +0100| [394130efe32f85c1f0582094add4376e32ebf20c] | committer: Stefano Sabatini

ffplay: reindent and remove pointless cast in audio_decode_frame() code

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=394130efe32f85c1f0582094add4376e32ebf20c
---

 ffplay.c |    4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/ffplay.c b/ffplay.c
index 3309e42..5a3d1b2 100644
--- a/ffplay.c
+++ b/ffplay.c
@@ -2131,8 +2131,8 @@ static int audio_decode_frame(VideoState *is)
                                                  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",
-                        is->frame->sample_rate,   av_get_sample_fmt_name(is->frame->format), (int)is->frame->channels,
-                        is->audio_tgt.freq, av_get_sample_fmt_name(is->audio_tgt.fmt), is->audio_tgt.channels);
+                            is->frame->sample_rate, av_get_sample_fmt_name(is->frame->format), is->frame->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;



More information about the ffmpeg-cvslog mailing list