diff options
author | Diego Biurrun <diego@biurrun.de> | 2014-09-22 09:19:33 +0200 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2015-02-14 10:13:47 -0800 |
commit | daf8cf358a098a903d59adb6c0d0cc3262a8c93e (patch) | |
tree | a2390c7f51907470675321b25221c28ab6093616 /libavformat/nuv.c | |
parent | 7769be590c7aeb2aad26ca723d105cf5203e33d2 (diff) | |
download | ffmpeg-daf8cf358a098a903d59adb6c0d0cc3262a8c93e.tar.gz |
avformat: Don't anonymously typedef structs
Diffstat (limited to 'libavformat/nuv.c')
-rw-r--r-- | libavformat/nuv.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/nuv.c b/libavformat/nuv.c index 586aec65f6..c9fa38aa5b 100644 --- a/libavformat/nuv.c +++ b/libavformat/nuv.c @@ -33,7 +33,7 @@ static const AVCodecTag nuv_audio_tags[] = { { AV_CODEC_ID_NONE, 0 }, }; -typedef struct { +typedef struct NUVContext { int v_id; int a_id; int rtjpg_video; |