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
76d851b6
Commit
76d851b6
authored
Dec 09, 2012
by
Michael Niedermayer
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
http: export ICY content type
Signed-off-by:
Michael Niedermayer
<
michaelni@gmx.at
>
parent
16001373
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 @
76d851b6
...
...
@@ -63,6 +63,7 @@ typedef struct {
int
post_datalen
;
int
is_akamai
;
int
rw_timeout
;
char
*
demuxer
;
}
HTTPContext
;
#define OFFSET(x) offsetof(HTTPContext, x)
...
...
@@ -78,6 +79,7 @@ static const AVOption options[] = {
{
"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
},
{
"timeout"
,
"timeout of socket i/o operations"
,
OFFSET
(
rw_timeout
),
AV_OPT_TYPE_INT
,
{.
i64
=
-
1
},
-
1
,
INT_MAX
,
D
|
E
},
{
"demuxer"
,
""
,
OFFSET
(
demuxer
),
AV_OPT_TYPE_STRING
,
{
0
},
0
,
0
,
0
},
{
NULL
}
};
#define HTTP_CLASS(flavor)\
...
...
@@ -355,6 +357,10 @@ static int process_line(URLContext *h, char *line, int line_count,
s
->
willclose
=
1
;
}
else
if
(
!
av_strcasecmp
(
tag
,
"Server"
)
&&
!
av_strcasecmp
(
p
,
"AkamaiGHost"
))
{
s
->
is_akamai
=
1
;
}
else
if
(
!
av_strcasecmp
(
tag
,
"Content-Type"
))
{
if
(
!
av_strcasecmp
(
p
,
"audio/aacp"
))
{
av_free
(
s
->
demuxer
);
s
->
demuxer
=
av_strdup
(
"aac"
);
}
}
}
return
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