[FFmpeg-cvslog] ffprobe: reindent after the previous commit
Stefano Sabatini
git at videolan.org
Sun Jul 15 16:38:51 CEST 2012
ffmpeg | branch: master | Stefano Sabatini <stefasab at gmail.com> | Sun Jul 15 16:27:22 2012 +0200| [9a1963fbb872f08222a5b73fe96931708ca32732] | committer: Stefano Sabatini
ffprobe: reindent after the previous commit
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=9a1963fbb872f08222a5b73fe96931708ca32732
---
ffprobe.c | 16 ++++++++--------
1 file changed, 8 insertions(+), 8 deletions(-)
diff --git a/ffprobe.c b/ffprobe.c
index 7113651..20b0baa 100644
--- a/ffprobe.c
+++ b/ffprobe.c
@@ -1662,15 +1662,15 @@ static av_always_inline int get_decoded_frame(AVFormatContext *fmt_ctx,
*got_frame = 0;
if (dec_ctx->codec) {
- switch (dec_ctx->codec_type) {
- case AVMEDIA_TYPE_VIDEO:
- ret = avcodec_decode_video2(dec_ctx, frame, got_frame, pkt);
- break;
+ switch (dec_ctx->codec_type) {
+ case AVMEDIA_TYPE_VIDEO:
+ ret = avcodec_decode_video2(dec_ctx, frame, got_frame, pkt);
+ break;
- case AVMEDIA_TYPE_AUDIO:
- ret = avcodec_decode_audio4(dec_ctx, frame, got_frame, pkt);
- break;
- }
+ case AVMEDIA_TYPE_AUDIO:
+ ret = avcodec_decode_audio4(dec_ctx, frame, got_frame, pkt);
+ break;
+ }
}
return ret;
More information about the ffmpeg-cvslog
mailing list