summaryrefslogtreecommitdiff
path: root/libavutil
diff options
context:
space:
mode:
Diffstat (limited to 'libavutil')
-rw-r--r--libavutil/dict.h2
-rw-r--r--libavutil/lfg.h2
2 files changed, 2 insertions, 2 deletions
diff --git a/libavutil/dict.h b/libavutil/dict.h
index 7f9924b128..fde3650184 100644
--- a/libavutil/dict.h
+++ b/libavutil/dict.h
@@ -74,7 +74,7 @@
#define AV_DICT_APPEND 32 /**< If the entry already exists, append to it. Note that no
delimiter is added, the strings are simply concatenated. */
-typedef struct {
+typedef struct AVDictionaryEntry {
char *key;
char *value;
} AVDictionaryEntry;
diff --git a/libavutil/lfg.h b/libavutil/lfg.h
index 854ffce737..ec90562cf2 100644
--- a/libavutil/lfg.h
+++ b/libavutil/lfg.h
@@ -22,7 +22,7 @@
#ifndef AVUTIL_LFG_H
#define AVUTIL_LFG_H
-typedef struct {
+typedef struct AVLFG {
unsigned int state[64];
int index;
} AVLFG;