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

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2015-02-14 23:27:26 +0300
committerMichael Niedermayer <michaelni@gmx.at>2015-02-14 23:27:44 +0300
commit6998400c618fb267acb6b7281418f3b89fcabc8a (patch)
tree387c05201268ebf28bf9811d55c226099347f138 /ffprobe.c
parenta94eba6f0c0666de8ccbc56c62112d7e5f1132be (diff)
parentbf704132a51f5d838365158331d4e535e1df4c8e (diff)
Merge commit 'bf704132a51f5d838365158331d4e535e1df4c8e'
* commit 'bf704132a51f5d838365158331d4e535e1df4c8e': Don't anonymously typedef structs Conflicts: avprobe.c libavutil/parseutils.c Merged-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'ffprobe.c')
-rw-r--r--ffprobe.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/ffprobe.c b/ffprobe.c
index d352bb6bbc..e7dd41aa75 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;