Browse Source

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>
tags/n2.7
Michael Niedermayer 10 years ago
parent
commit
d2277aa7e2
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      libavformat/httpauth.h

+ 1
- 1
libavformat/httpauth.h View File

@@ -56,7 +56,7 @@ typedef struct HTTPAuthState {
/** /**
* The currently chosen auth type. * The currently chosen auth type.
*/ */
HTTPAuthType auth_type;
int auth_type;
/** /**
* Authentication realm * Authentication realm
*/ */


Loading…
Cancel
Save