Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in / Register
Toggle navigation
F
ffmpeg
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
Packages
Packages
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
submodule
ffmpeg
Commits
c01d1d4d
Commit
c01d1d4d
authored
Oct 23, 2012
by
Clément Bœsch
Committed by
Clément Bœsch
Oct 24, 2012
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
http: add -content_type user option.
parent
6ddb03ca
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
0 deletions
+5
-0
http.c
libavformat/http.c
+5
-0
No files found.
libavformat/http.c
View file @
c01d1d4d
...
...
@@ -46,6 +46,7 @@ typedef struct {
int
line_count
;
int
http_code
;
int64_t
chunksize
;
/**< Used if "Transfer-Encoding: chunked" otherwise -1. */
char
*
content_type
;
char
*
user_agent
;
int64_t
off
,
filesize
;
char
location
[
MAX_URL_SIZE
];
...
...
@@ -72,6 +73,7 @@ static const AVOption options[] = {
{
"seekable"
,
"Control seekability of connection"
,
OFFSET
(
seekable
),
AV_OPT_TYPE_INT
,
{.
i64
=
-
1
},
-
1
,
1
,
D
},
{
"chunked_post"
,
"use chunked transfer-encoding for posts"
,
OFFSET
(
chunked_post
),
AV_OPT_TYPE_INT
,
{.
i64
=
1
},
0
,
1
,
E
},
{
"headers"
,
"custom HTTP headers, can override built in default headers"
,
OFFSET
(
headers
),
AV_OPT_TYPE_STRING
,
{
0
},
0
,
0
,
D
|
E
},
{
"content_type"
,
"force a content type"
,
OFFSET
(
content_type
),
AV_OPT_TYPE_STRING
,
{
0
},
0
,
0
,
D
|
E
},
{
"user-agent"
,
"override User-Agent header"
,
OFFSET
(
user_agent
),
AV_OPT_TYPE_STRING
,
{.
str
=
NULL
},
0
,
0
,
DEC
},
{
"multiple_requests"
,
"use persistent connections"
,
OFFSET
(
multiple_requests
),
AV_OPT_TYPE_INT
,
{.
i64
=
0
},
0
,
1
,
D
|
E
},
{
"post_data"
,
"custom HTTP post data"
,
OFFSET
(
post_data
),
AV_OPT_TYPE_BINARY
,
.
flags
=
D
|
E
},
...
...
@@ -451,6 +453,9 @@ static int http_connect(URLContext *h, const char *path, const char *local_path,
if
(
!
has_header
(
s
->
headers
,
"
\r\n
Content-Length: "
)
&&
s
->
post_data
)
len
+=
av_strlcatf
(
headers
+
len
,
sizeof
(
headers
)
-
len
,
"Content-Length: %d
\r\n
"
,
s
->
post_datalen
);
if
(
!
has_header
(
s
->
headers
,
"
\r\n
Content-Type: "
)
&&
s
->
content_type
)
len
+=
av_strlcatf
(
headers
+
len
,
sizeof
(
headers
)
-
len
,
"Content-Type: %s
\r\n
"
,
s
->
content_type
);
/* now add in custom headers */
if
(
s
->
headers
)
...
...
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