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);
#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;
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;