diff options
author | Stefano Sabatini <stefasab@gmail.com> | 2012-01-10 22:47:07 +0100 |
---|---|---|
committer | Stefano Sabatini <stefasab@gmail.com> | 2012-01-12 17:35:17 +0100 |
commit | bb4c18881af87c5c1ee660f0c6700bc4fc249272 (patch) | |
tree | 5870cfcc8be17fd960bd89fd58edf3776b86b8a1 /ffprobe.c | |
parent | b25c239c7a14b06772e7ef051839e09af4cfcddb (diff) | |
download | ffmpeg-bb4c18881af87c5c1ee660f0c6700bc4fc249272.tar.gz |
ffprobe: reindent after previous commit
Diffstat (limited to 'ffprobe.c')
-rw-r--r-- | ffprobe.c | 40 |
1 files changed, 20 insertions, 20 deletions
@@ -1304,26 +1304,26 @@ static void show_frame(WriterContext *w, AVFrame *frame, AVStream *stream) switch (stream->codec->codec_type) { case AVMEDIA_TYPE_VIDEO: - print_int("width", frame->width); - print_int("height", frame->height); - s = av_get_pix_fmt_name(frame->format); - if (s) print_str ("pix_fmt", s); - else print_str_opt("pix_fmt", "unknown"); - if (frame->sample_aspect_ratio.num) { - print_fmt("sample_aspect_ratio", "%d:%d", - frame->sample_aspect_ratio.num, - frame->sample_aspect_ratio.den); - } else { - print_str_opt("sample_aspect_ratio", "N/A"); - } - print_fmt("pict_type", "%c", av_get_picture_type_char(frame->pict_type)); - print_int("coded_picture_number", frame->coded_picture_number); - print_int("display_picture_number", frame->display_picture_number); - print_int("interlaced_frame", frame->interlaced_frame); - print_int("top_field_first", frame->top_field_first); - print_int("repeat_pict", frame->repeat_pict); - print_int("reference", frame->reference); - break; + print_int("width", frame->width); + print_int("height", frame->height); + s = av_get_pix_fmt_name(frame->format); + if (s) print_str ("pix_fmt", s); + else print_str_opt("pix_fmt", "unknown"); + if (frame->sample_aspect_ratio.num) { + print_fmt("sample_aspect_ratio", "%d:%d", + frame->sample_aspect_ratio.num, + frame->sample_aspect_ratio.den); + } else { + print_str_opt("sample_aspect_ratio", "N/A"); + } + print_fmt("pict_type", "%c", av_get_picture_type_char(frame->pict_type)); + print_int("coded_picture_number", frame->coded_picture_number); + print_int("display_picture_number", frame->display_picture_number); + print_int("interlaced_frame", frame->interlaced_frame); + print_int("top_field_first", frame->top_field_first); + print_int("repeat_pict", frame->repeat_pict); + print_int("reference", frame->reference); + break; case AVMEDIA_TYPE_AUDIO: s = av_get_sample_fmt_name(frame->format); |