diff options
author | Stefano Sabatini <stefasab@gmail.com> | 2011-11-16 18:39:27 +0100 |
---|---|---|
committer | Stefano Sabatini <stefasab@gmail.com> | 2011-11-16 18:40:09 +0100 |
commit | f0db05008ddbb50b120a0a21a585fd5770ecfa45 (patch) | |
tree | 2fd0e8d3d3c00c3159f0228afc09209ea876db95 /ffprobe.c | |
parent | 1f0d937f777a2d4d83200a4d26c7752735eee727 (diff) | |
download | ffmpeg-f0db05008ddbb50b120a0a21a585fd5770ecfa45.tar.gz |
ffprobe: apply misc cosmetics to compact writer definition
Diffstat (limited to 'ffprobe.c')
-rw-r--r-- | ffprobe.c | 21 |
1 files changed, 10 insertions, 11 deletions
@@ -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 */ |