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
4ddf7476
Commit
4ddf7476
authored
Nov 29, 2017
by
Jeyapal, Karthick
Committed by
Steven Liu
Nov 29, 2017
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
libavformat/http: Handled multiple_requests option during write
parent
62f63b24
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
0 deletions
+6
-0
http.c
libavformat/http.c
+6
-0
No files found.
libavformat/http.c
View file @
4ddf7476
...
...
@@ -171,6 +171,7 @@ static int http_connect(URLContext *h, const char *path, const char *local_path,
const
char
*
hoststr
,
const
char
*
auth
,
const
char
*
proxyauth
,
int
*
new_location
);
static
int
http_read_header
(
URLContext
*
h
,
int
*
new_location
);
static
int
http_shutdown
(
URLContext
*
h
,
int
flags
);
void
ff_http_init_auth_state
(
URLContext
*
dest
,
const
URLContext
*
src
)
{
...
...
@@ -306,6 +307,11 @@ int ff_http_do_new_request(URLContext *h, const char *uri)
AVDictionary
*
options
=
NULL
;
int
ret
;
ret
=
http_shutdown
(
h
,
h
->
flags
);
if
(
ret
<
0
)
return
ret
;
s
->
end_chunked_post
=
0
;
s
->
chunkend
=
0
;
s
->
off
=
0
;
s
->
icy_data_read
=
0
;
...
...
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