Browse Source

Don't anonymously typedef structs

tags/n2.6
Diego Biurrun 11 years ago
parent
commit
bf704132a5
3 changed files with 6 additions and 6 deletions
  1. +2
    -2
      avprobe.c
  2. +1
    -1
      libavutil/file.c
  3. +3
    -3
      libavutil/parseutils.c

+ 2
- 2
avprobe.c View File

@@ -84,14 +84,14 @@ typedef enum {
OBJECT
} PrintElementType;

typedef struct {
typedef struct PrintElement {
const char *name;
PrintElementType type;
int64_t index;
int64_t nb_elems;
} PrintElement;

typedef struct {
typedef struct PrintContext {
PrintElement *prefix;
int level;
void (*print_header)(void);


+ 1
- 1
libavutil/file.c View File

@@ -35,7 +35,7 @@
#include <windows.h>
#endif

typedef struct {
typedef struct FileLogContext {
const AVClass *class;
int log_offset;
void *log_ctx;


+ 3
- 3
libavutil/parseutils.c View File

@@ -32,12 +32,12 @@
#include "time_internal.h"
#include "parseutils.h"

typedef struct {
typedef struct VideoSizeAbbr {
const char *abbr;
int width, height;
} VideoSizeAbbr;

typedef struct {
typedef struct VideoRateAbbr {
const char *abbr;
AVRational rate;
} VideoRateAbbr;
@@ -143,7 +143,7 @@ int av_parse_video_rate(AVRational *rate, const char *arg)
return 0;
}

typedef struct {
typedef struct ColorEntry {
const char *name; ///< a string representing the name of the color
uint8_t rgb_color[3]; ///< RGB values for the color
} ColorEntry;


Loading…
Cancel
Save