[FFmpeg-cvslog] http: Remove an unrelated and mistakenly set AVOption unit name
Martin Storsjö
git at videolan.org
Fri Nov 22 17:24:54 CET 2013
ffmpeg | branch: master | Martin Storsjö <martin at martin.st> | Wed Nov 20 14:53:56 2013 +0200| [76267ecc82e3018e1913a2483d5fc47d0949cbd8] | committer: Martin Storsjö
http: Remove an unrelated and mistakenly set AVOption unit name
This was due to a copypaste oversight.
Signed-off-by: Martin Storsjö <martin at martin.st>
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=76267ecc82e3018e1913a2483d5fc47d0949cbd8
---
libavformat/http.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/libavformat/http.c b/libavformat/http.c
index 344507e..a26ec2a 100644
--- a/libavformat/http.c
+++ b/libavformat/http.c
@@ -82,7 +82,7 @@ static const AVOption options[] = {
{"auth_type", "HTTP authentication type", OFFSET(auth_state.auth_type), AV_OPT_TYPE_INT, {.i64 = HTTP_AUTH_NONE}, HTTP_AUTH_NONE, HTTP_AUTH_BASIC, D|E, "auth_type" },
{"none", "No auth method set, autodetect", 0, AV_OPT_TYPE_CONST, {.i64 = HTTP_AUTH_NONE}, 0, 0, D|E, "auth_type" },
{"basic", "HTTP basic authentication", 0, AV_OPT_TYPE_CONST, {.i64 = HTTP_AUTH_BASIC}, 0, 0, D|E, "auth_type" },
-{"send_expect_100", "Force sending an Expect: 100-continue header for POST", OFFSET(send_expect_100), AV_OPT_TYPE_INT, {.i64 = 0}, 0, 1, E, "auth_type" },
+{"send_expect_100", "Force sending an Expect: 100-continue header for POST", OFFSET(send_expect_100), AV_OPT_TYPE_INT, {.i64 = 0}, 0, 1, E },
{NULL}
};
#define HTTP_CLASS(flavor)\
More information about the ffmpeg-cvslog
mailing list