summaryrefslogtreecommitdiff
path: root/libavdevice/oss_audio.c
diff options
context:
space:
mode:
authorDiego Biurrun <diego@biurrun.de>2014-07-17 08:51:27 -0700
committerDiego Biurrun <diego@biurrun.de>2014-07-18 07:43:36 -0700
commitc0de9159a7ba5707aa0a5c2bc73ae78b7b87ec46 (patch)
treebba76718745f948551daf7852e9f502aaa7049c0 /libavdevice/oss_audio.c
parent24af1aa0f70362a66cda04c9d7cd012e019f5572 (diff)
avdevice: Give names to anonymously typedeffed structs
Anonymous structs can cause trouble in header files, so try to avoid them altogether as a matter of good style.
Diffstat (limited to 'libavdevice/oss_audio.c')
-rw-r--r--libavdevice/oss_audio.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavdevice/oss_audio.c b/libavdevice/oss_audio.c
index f1cc91f725..95f73fbd8e 100644
--- a/libavdevice/oss_audio.c
+++ b/libavdevice/oss_audio.c
@@ -44,7 +44,7 @@
#define AUDIO_BLOCK_SIZE 4096
-typedef struct {
+typedef struct AudioData {
AVClass *class;
int fd;
int sample_rate;