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
e07b8d68
Commit
e07b8d68
authored
Jun 11, 2016
by
Marton Balint
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
avformat/mux: do not call write_packet with a flush packet if header is not written
Signed-off-by:
Marton Balint
<
cus@passwd.hu
>
parent
517fe644
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
0 deletions
+5
-0
mux.c
libavformat/mux.c
+5
-0
No files found.
libavformat/mux.c
View file @
e07b8d68
...
...
@@ -823,6 +823,11 @@ int av_write_frame(AVFormatContext *s, AVPacket *pkt)
if
(
!
pkt
)
{
if
(
s
->
oformat
->
flags
&
AVFMT_ALLOW_FLUSH
)
{
if
(
!
s
->
internal
->
header_written
)
{
ret
=
s
->
internal
->
write_header_ret
?
s
->
internal
->
write_header_ret
:
write_header_internal
(
s
);
if
(
ret
<
0
)
return
ret
;
}
ret
=
s
->
oformat
->
write_packet
(
s
,
NULL
);
if
(
s
->
flush_packets
&&
s
->
pb
&&
s
->
pb
->
error
>=
0
&&
s
->
flags
&
AVFMT_FLAG_FLUSH_PACKETS
)
avio_flush
(
s
->
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