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
4250dafc
Commit
4250dafc
authored
Dec 08, 2003
by
Alex Beregszaszi
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
using LIBAVFORMAT_IDENT
Originally committed as revision 2575 to
svn://svn.ffmpeg.org/ffmpeg/trunk
parent
d7d24282
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
3 deletions
+3
-3
http.c
libavformat/http.c
+2
-2
ogg.c
libavformat/ogg.c
+1
-1
No files found.
libavformat/http.c
View file @
4250dafc
...
...
@@ -184,13 +184,13 @@ static int http_connect(URLContext *h, const char *path, const char *hoststr)
snprintf
(
s
->
buffer
,
sizeof
(
s
->
buffer
),
"%s %s HTTP/1.0
\n
"
"User-Agent:
FFmpeg
%s
\n
"
"User-Agent: %s
\n
"
"Accept: */*
\n
"
"Host: %s
\n
"
"
\n
"
,
post
?
"POST"
:
"GET"
,
path
,
LIBAVFORMAT_
VERSION
,
LIBAVFORMAT_
IDENT
,
hoststr
);
if
(
http_write
(
h
,
s
->
buffer
,
strlen
(
s
->
buffer
))
<
0
)
...
...
libavformat/ogg.c
View file @
4250dafc
...
...
@@ -63,7 +63,7 @@ static int ogg_write_header(AVFormatContext *avfcontext)
vorbis_block_init
(
&
vd
,
&
vb
)
;
vorbis_comment_init
(
&
vc
)
;
vorbis_comment_add_tag
(
&
vc
,
"encoder"
,
"ffmpeg"
)
;
vorbis_comment_add_tag
(
&
vc
,
"encoder"
,
LIBAVFORMAT_IDENT
)
;
if
(
*
avfcontext
->
title
)
vorbis_comment_add_tag
(
&
vc
,
"title"
,
avfcontext
->
title
)
;
...
...
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