X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=ffprobe.c;h=e7dd41aa759c8ff9b115b9de6bada8d7b1965da0;hb=f9240ec01abb097263fe578d2b6fb076bb7b9263;hp=d352bb6bbcd0150ea3e5f5541a3056d0c8a6dfbc;hpb=8f79cd4764f7cdf3c5b5252e39ee0a6725f2eb94;p=ffmpeg diff --git a/ffprobe.c b/ffprobe.c index d352bb6bbcd..e7dd41aa759 100644 --- a/ffprobe.c +++ b/ffprobe.c @@ -86,7 +86,7 @@ static char *print_format; static char *stream_specifier; static char *show_data_hash; -typedef struct { +typedef struct ReadInterval { int id; ///< identifier int64_t start, end; ///< start, end in second/AV_TIME_BASE units int has_start, has_end; @@ -1192,7 +1192,7 @@ static const Writer flat_writer = { /* INI format output */ -typedef struct { +typedef struct INIContext { const AVClass *class; int hierarchical; } INIContext; @@ -1296,7 +1296,7 @@ static const Writer ini_writer = { /* JSON output */ -typedef struct { +typedef struct JSONContext { const AVClass *class; int indent_level; int compact; @@ -1458,7 +1458,7 @@ static const Writer json_writer = { /* XML output */ -typedef struct { +typedef struct XMLContext { const AVClass *class; int within_tag; int indent_level;