|
...
|
...
|
@@ -675,17 +675,16 @@ static void compact_show_tags(WriterContext *wctx, AVDictionary *dict)
|
|
675
|
675
|
}
|
|
676
|
676
|
|
|
677
|
677
|
static Writer compact_writer = {
|
|
678
|
|
- .name = "compact",
|
|
679
|
|
- .priv_size = sizeof(CompactContext),
|
|
680
|
|
-
|
|
681
|
|
- .init = compact_init,
|
|
682
|
|
- .uninit = compact_uninit,
|
|
683
|
|
- .print_section_header = compact_print_section_header,
|
|
684
|
|
- .print_section_footer = compact_print_section_footer,
|
|
685
|
|
- .print_integer = compact_print_int,
|
|
686
|
|
- .print_string = compact_print_str,
|
|
687
|
|
- .show_tags = compact_show_tags,
|
|
688
|
|
- .flags = WRITER_FLAG_DISPLAY_OPTIONAL_FIELDS
|
|
|
678
|
+ .name = "compact",
|
|
|
679
|
+ .priv_size = sizeof(CompactContext),
|
|
|
680
|
+ .init = compact_init,
|
|
|
681
|
+ .uninit = compact_uninit,
|
|
|
682
|
+ .print_section_header = compact_print_section_header,
|
|
|
683
|
+ .print_section_footer = compact_print_section_footer,
|
|
|
684
|
+ .print_integer = compact_print_int,
|
|
|
685
|
+ .print_string = compact_print_str,
|
|
|
686
|
+ .show_tags = compact_show_tags,
|
|
|
687
|
+ .flags = WRITER_FLAG_DISPLAY_OPTIONAL_FIELDS,
|
|
689
|
688
|
};
|
|
690
|
689
|
|
|
691
|
690
|
/* CSV output */
|