diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2015-04-06 14:44:33 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2015-04-06 14:44:33 +0200 |
commit | d2277aa7e2d2aacec3f6d7791ef5c2528541f140 (patch) | |
tree | c74b6686a5797fed8dd74f2b9b1147f3506d6bfc | |
parent | ff6841c6bb2d35f8d461419e45d59be7542d03fe (diff) | |
download | ffmpeg-d2277aa7e2d2aacec3f6d7791ef5c2528541f140.tar.gz |
avformat/httpauth: Change enum to int, which is accessed via AVOption as int
This fixes depending on implementation defined behavior
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
-rw-r--r-- | libavformat/httpauth.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/httpauth.h b/libavformat/httpauth.h index fc17c94859..9c15a38097 100644 --- a/libavformat/httpauth.h +++ b/libavformat/httpauth.h @@ -56,7 +56,7 @@ typedef struct HTTPAuthState { /** * The currently chosen auth type. */ - HTTPAuthType auth_type; + int auth_type; /** * Authentication realm */ |