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
91c1567b
Commit
91c1567b
authored
Oct 04, 2012
by
Martin Storsjö
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
segment: Add comments about calls that only are relevant for some muxers
Signed-off-by:
Martin Storsjö
<
martin@martin.st
>
parent
c864c396
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
segment.c
libavformat/segment.c
+2
-2
No files found.
libavformat/segment.c
View file @
91c1567b
...
...
@@ -98,7 +98,7 @@ static int segment_start(AVFormatContext *s, int write_header)
return
err
;
if
(
oc
->
oformat
->
priv_class
&&
oc
->
priv_data
)
av_opt_set
(
oc
->
priv_data
,
"resend_headers"
,
"1"
,
0
);
av_opt_set
(
oc
->
priv_data
,
"resend_headers"
,
"1"
,
0
);
/* mpegts specific */
if
(
write_header
)
{
if
((
err
=
avformat_write_header
(
oc
,
NULL
))
<
0
)
...
...
@@ -112,7 +112,7 @@ static int segment_end(AVFormatContext *oc, int write_trailer)
{
int
ret
=
0
;
av_write_frame
(
oc
,
NULL
);
/* Flush any buffered data */
av_write_frame
(
oc
,
NULL
);
/* Flush any buffered data
(fragmented mp4)
*/
if
(
write_trailer
)
av_write_trailer
(
oc
);
avio_close
(
oc
->
pb
);
...
...
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