summaryrefslogtreecommitdiff
path: root/ffprobe.c
diff options
context:
space:
mode:
authorStefano Sabatini <stefano.sabatini-lala@poste.it>2010-04-27 23:22:30 +0000
committerStefano Sabatini <stefano.sabatini-lala@poste.it>2010-04-27 23:22:30 +0000
commit441881b4f935cc0ab5f26860dae363b60c14c64e (patch)
tree26a88a4b6209236b8195d2eb8bcde31f632caa8e /ffprobe.c
parent8280e2bd456bb296cbafc296b6c7814918d57435 (diff)
Reindent after the last commit.
Originally committed as revision 22984 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'ffprobe.c')
-rw-r--r--ffprobe.c16
1 files changed, 8 insertions, 8 deletions
diff --git a/ffprobe.c b/ffprobe.c
index 9db48897fa..7cb6167b05 100644
--- a/ffprobe.c
+++ b/ffprobe.c
@@ -156,14 +156,14 @@ static void show_stream(AVFormatContext *fmt_ctx, int stream_idx)
printf("height=%d\n", dec_ctx->height);
printf("has_b_frames=%d\n", dec_ctx->has_b_frames);
if (dec_ctx->sample_aspect_ratio.num) {
- printf("sample_aspect_ratio=%d:%d\n", dec_ctx->sample_aspect_ratio.num,
- dec_ctx->sample_aspect_ratio.den);
- av_reduce(&display_aspect_ratio.num, &display_aspect_ratio.den,
- dec_ctx->width*dec_ctx->sample_aspect_ratio.num,
- dec_ctx->height*dec_ctx->sample_aspect_ratio.den,
- 1024*1024);
- printf("display_aspect_ratio=%d:%d\n", display_aspect_ratio.num,
- display_aspect_ratio.den);
+ printf("sample_aspect_ratio=%d:%d\n", dec_ctx->sample_aspect_ratio.num,
+ dec_ctx->sample_aspect_ratio.den);
+ av_reduce(&display_aspect_ratio.num, &display_aspect_ratio.den,
+ dec_ctx->width * dec_ctx->sample_aspect_ratio.num,
+ dec_ctx->height * dec_ctx->sample_aspect_ratio.den,
+ 1024*1024);
+ printf("display_aspect_ratio=%d:%d\n", display_aspect_ratio.num,
+ display_aspect_ratio.den);
}
printf("pix_fmt=%s\n", dec_ctx->pix_fmt != PIX_FMT_NONE ?
av_pix_fmt_descriptors[dec_ctx->pix_fmt].name : "unknown");