Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in / Register
Toggle navigation
F
ffmpeg.wasm-core
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Linshizhi
ffmpeg.wasm-core
Commits
27714b46
Commit
27714b46
authored
Sep 16, 2016
by
Steven Liu
Committed by
Clément Bœsch
Sep 17, 2016
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
lavf/http: deprecate user-agent option
parent
44bcb636
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
18 additions
and
2 deletions
+18
-2
protocols.texi
doc/protocols.texi
+3
-1
http.c
libavformat/http.c
+12
-1
version.h
libavformat/version.h
+3
-0
No files found.
doc/protocols.texi
View file @
27714b46
...
...
@@ -291,11 +291,13 @@ Use persistent connections if set to 1, default is 0.
@item post_data
Set custom HTTP post data.
@item user-agent
@item user_agent
Override the User-Agent header. If not specified the protocol will use a
string describing the libavformat build. ("Lavf/<version>")
@item user-agent
This is a deprecated option, you can use user_agent instead it.
@item timeout
Set timeout in microseconds of socket I/O operations used by the underlying low level
operation. By default it is set to -1, which means that the timeout is
...
...
libavformat/http.c
View file @
27714b46
...
...
@@ -71,6 +71,9 @@ typedef struct HTTPContext {
char
*
headers
;
char
*
mime_type
;
char
*
user_agent
;
#ifdef FF_API_HTTP_USER_AGENT
char
*
user_agent_deprecated
;
#endif
char
*
content_type
;
/* Set if the server correctly handles Connection: close and will close
* the connection after feeding us the content. */
...
...
@@ -131,7 +134,9 @@ static const AVOption options[] = {
{
"headers"
,
"set custom HTTP headers, can override built in default headers"
,
OFFSET
(
headers
),
AV_OPT_TYPE_STRING
,
{
.
str
=
NULL
},
0
,
0
,
D
|
E
},
{
"content_type"
,
"set a specific content type for the POST messages"
,
OFFSET
(
content_type
),
AV_OPT_TYPE_STRING
,
{
.
str
=
NULL
},
0
,
0
,
D
|
E
},
{
"user_agent"
,
"override User-Agent header"
,
OFFSET
(
user_agent
),
AV_OPT_TYPE_STRING
,
{
.
str
=
DEFAULT_USER_AGENT
},
0
,
0
,
D
},
{
"user-agent"
,
"override User-Agent header"
,
OFFSET
(
user_agent
),
AV_OPT_TYPE_STRING
,
{
.
str
=
DEFAULT_USER_AGENT
},
0
,
0
,
D
},
#ifdef FF_API_HTTP_USER_AGENT
{
"user-agent"
,
"override User-Agent header"
,
OFFSET
(
user_agent_deprecated
),
AV_OPT_TYPE_STRING
,
{
.
str
=
DEFAULT_USER_AGENT
},
0
,
0
,
D
},
#endif
{
"multiple_requests"
,
"use persistent connections"
,
OFFSET
(
multiple_requests
),
AV_OPT_TYPE_BOOL
,
{
.
i64
=
0
},
0
,
1
,
D
|
E
},
{
"post_data"
,
"set custom HTTP post data"
,
OFFSET
(
post_data
),
AV_OPT_TYPE_BINARY
,
.
flags
=
D
|
E
},
{
"mime_type"
,
"export the MIME type"
,
OFFSET
(
mime_type
),
AV_OPT_TYPE_STRING
,
{
.
str
=
NULL
},
0
,
0
,
AV_OPT_FLAG_EXPORT
|
AV_OPT_FLAG_READONLY
},
...
...
@@ -1037,6 +1042,12 @@ static int http_connect(URLContext *h, const char *path, const char *local_path,
send_expect_100
=
1
;
}
#ifdef FF_API_HTTP_USER_AGENT
if
(
strcmp
(
s
->
user_agent_deprecated
,
DEFAULT_USER_AGENT
))
{
av_log
(
s
,
AV_LOG_WARNING
,
"the user-agent option is deprecated, please use user_agent option
\n
"
);
s
->
user_agent
=
av_strdup
(
s
->
user_agent_deprecated
);
}
#endif
/* set default headers if needed */
if
(
!
has_header
(
s
->
headers
,
"
\r\n
User-Agent: "
))
len
+=
av_strlcatf
(
headers
+
len
,
sizeof
(
headers
)
-
len
,
...
...
libavformat/version.h
View file @
27714b46
...
...
@@ -82,6 +82,9 @@
#ifndef FF_API_NOCONST_GET_SIDE_DATA
#define FF_API_NOCONST_GET_SIDE_DATA (LIBAVFORMAT_VERSION_MAJOR < 58)
#endif
#ifndef FF_API_HTTP_USER_AGENT
#define FF_API_HTTP_USER_AGENT (LIBAVFORMAT_VERSION_MAJOR < 58)
#endif
#ifndef FF_API_R_FRAME_RATE
#define FF_API_R_FRAME_RATE 1
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment