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
7be24549
Commit
7be24549
authored
Feb 09, 2019
by
Carl Eugen Hoyos
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
lavf/http: Print metadata updates with -loglevel verbose.
Simplifies metadata debugging.
parent
5247c432
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
2 deletions
+4
-2
http.c
libavformat/http.c
+4
-2
No files found.
libavformat/http.c
View file @
7be24549
...
@@ -1504,12 +1504,13 @@ static int http_read_stream_all(URLContext *h, uint8_t *buf, int size)
...
@@ -1504,12 +1504,13 @@ static int http_read_stream_all(URLContext *h, uint8_t *buf, int size)
return
pos
;
return
pos
;
}
}
static
void
update_metadata
(
HTTPContext
*
s
,
char
*
data
)
static
void
update_metadata
(
URLContext
*
h
,
char
*
data
)
{
{
char
*
key
;
char
*
key
;
char
*
val
;
char
*
val
;
char
*
end
;
char
*
end
;
char
*
next
=
data
;
char
*
next
=
data
;
HTTPContext
*
s
=
h
->
priv_data
;
while
(
*
next
)
{
while
(
*
next
)
{
key
=
next
;
key
=
next
;
...
@@ -1525,6 +1526,7 @@ static void update_metadata(HTTPContext *s, char *data)
...
@@ -1525,6 +1526,7 @@ static void update_metadata(HTTPContext *s, char *data)
val
+=
2
;
val
+=
2
;
av_dict_set
(
&
s
->
metadata
,
key
,
val
,
0
);
av_dict_set
(
&
s
->
metadata
,
key
,
val
,
0
);
av_log
(
h
,
AV_LOG_VERBOSE
,
"Metadata update for %s: %s
\n
"
,
key
,
val
);
next
=
end
+
2
;
next
=
end
+
2
;
}
}
...
@@ -1559,7 +1561,7 @@ static int store_icy(URLContext *h, int size)
...
@@ -1559,7 +1561,7 @@ static int store_icy(URLContext *h, int size)
data
[
len
+
1
]
=
0
;
data
[
len
+
1
]
=
0
;
if
((
ret
=
av_opt_set
(
s
,
"icy_metadata_packet"
,
data
,
0
))
<
0
)
if
((
ret
=
av_opt_set
(
s
,
"icy_metadata_packet"
,
data
,
0
))
<
0
)
return
ret
;
return
ret
;
update_metadata
(
s
,
data
);
update_metadata
(
h
,
data
);
}
}
s
->
icy_data_read
=
0
;
s
->
icy_data_read
=
0
;
remaining
=
s
->
icy_metaint
;
remaining
=
s
->
icy_metaint
;
...
...
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