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/http.c | |
parent | 7769be590c7aeb2aad26ca723d105cf5203e33d2 (diff) | |
download | ffmpeg-daf8cf358a098a903d59adb6c0d0cc3262a8c93e.tar.gz |
avformat: Don't anonymously typedef structs
Diffstat (limited to 'libavformat/http.c')
-rw-r--r-- | libavformat/http.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/http.c b/libavformat/http.c index f82002cb86..23df1b712e 100644 --- a/libavformat/http.c +++ b/libavformat/http.c @@ -45,7 +45,7 @@ #define BUFFER_SIZE MAX_URL_SIZE #define MAX_REDIRECTS 8 -typedef struct { +typedef struct HTTPContext { const AVClass *class; URLContext *hd; unsigned char buffer[BUFFER_SIZE], *buf_ptr, *buf_end; |