Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mpc-hc/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStefano Sabatini <stefasab@gmail.com>2011-11-16 21:39:27 +0400
committerStefano Sabatini <stefasab@gmail.com>2011-11-16 21:40:09 +0400
commitf0db05008ddbb50b120a0a21a585fd5770ecfa45 (patch)
tree2fd0e8d3d3c00c3159f0228afc09209ea876db95 /ffprobe.c
parent1f0d937f777a2d4d83200a4d26c7752735eee727 (diff)
ffprobe: apply misc cosmetics to compact writer definition
Diffstat (limited to 'ffprobe.c')
-rw-r--r--ffprobe.c21
1 files changed, 10 insertions, 11 deletions
diff --git a/ffprobe.c b/ffprobe.c
index 8c44528af1..e203c32ade 100644
--- a/ffprobe.c
+++ b/ffprobe.c
@@ -675,17 +675,16 @@ static void compact_show_tags(WriterContext *wctx, AVDictionary *dict)
}
static Writer compact_writer = {
- .name = "compact",
- .priv_size = sizeof(CompactContext),
-
- .init = compact_init,
- .uninit = compact_uninit,
- .print_section_header = compact_print_section_header,
- .print_section_footer = compact_print_section_footer,
- .print_integer = compact_print_int,
- .print_string = compact_print_str,
- .show_tags = compact_show_tags,
- .flags = WRITER_FLAG_DISPLAY_OPTIONAL_FIELDS
+ .name = "compact",
+ .priv_size = sizeof(CompactContext),
+ .init = compact_init,
+ .uninit = compact_uninit,
+ .print_section_header = compact_print_section_header,
+ .print_section_footer = compact_print_section_footer,
+ .print_integer = compact_print_int,
+ .print_string = compact_print_str,
+ .show_tags = compact_show_tags,
+ .flags = WRITER_FLAG_DISPLAY_OPTIONAL_FIELDS,
};
/* CSV output */