diff options
author | Diego Biurrun <diego@biurrun.de> | 2014-07-17 08:51:27 -0700 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2014-07-18 07:43:36 -0700 |
commit | c0de9159a7ba5707aa0a5c2bc73ae78b7b87ec46 (patch) | |
tree | bba76718745f948551daf7852e9f502aaa7049c0 /libavdevice/jack_audio.c | |
parent | 24af1aa0f70362a66cda04c9d7cd012e019f5572 (diff) | |
download | ffmpeg-c0de9159a7ba5707aa0a5c2bc73ae78b7b87ec46.tar.gz |
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/jack_audio.c')
-rw-r--r-- | libavdevice/jack_audio.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavdevice/jack_audio.c b/libavdevice/jack_audio.c index c261514033..8ce33213e4 100644 --- a/libavdevice/jack_audio.c +++ b/libavdevice/jack_audio.c @@ -38,7 +38,7 @@ */ #define FIFO_PACKETS_NUM 16 -typedef struct { +typedef struct JackData { AVClass *class; jack_client_t * client; int activated; |