diff options
author | Paul B Mahol <onemda@gmail.com> | 2017-05-12 20:00:49 +0200 |
---|---|---|
committer | Paul B Mahol <onemda@gmail.com> | 2017-05-13 11:39:28 +0200 |
commit | ed93ed5ee320db299dc8c65d59c4f25e2eb0acdc (patch) | |
tree | d678ae86bbdda736856cf4d15af63584231f8503 /libavfilter/ebur128.h | |
parent | 0fbc7a2169af479f8824f44e1b0f0ede5e1d1eaa (diff) | |
download | ffmpeg-ed93ed5ee320db299dc8c65d59c4f25e2eb0acdc.tar.gz |
avfilter: don't anonymously typedef structs
Signed-off-by: Paul B Mahol <onemda@gmail.com>
Diffstat (limited to 'libavfilter/ebur128.h')
-rw-r--r-- | libavfilter/ebur128.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavfilter/ebur128.h b/libavfilter/ebur128.h index b94cd24928..74367545e8 100644 --- a/libavfilter/ebur128.h +++ b/libavfilter/ebur128.h @@ -100,7 +100,7 @@ struct FFEBUR128StateInternal; * * You should not need to modify this struct directly. */ -typedef struct { +typedef struct FFEBUR128State { int mode; /**< The current mode. */ unsigned int channels; /**< The number of channels. */ unsigned long samplerate; /**< The sample rate. */ |