Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
V
vlc
Project overview
Project overview
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Merge Requests
0
Merge Requests
0
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Commits
Open sidebar
Jean-Baptiste Kempf
vlc
Commits
5cf74ed8
Commit
5cf74ed8
authored
May 02, 2018
by
François Cartegnie
🤞
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
demux: mjpeg: check es
parent
bc0f7201
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
1 deletion
+4
-1
modules/demux/mjpeg.c
modules/demux/mjpeg.c
+4
-1
No files found.
modules/demux/mjpeg.c
View file @
5cf74ed8
...
...
@@ -281,7 +281,10 @@ static int SendBlock( demux_t *p_demux, int i )
/* set PCR */
es_out_SetPCR
(
p_demux
->
out
,
p_block
->
i_pts
);
es_out_Send
(
p_demux
->
out
,
p_sys
->
p_es
,
p_block
);
if
(
p_sys
->
p_es
)
es_out_Send
(
p_demux
->
out
,
p_sys
->
p_es
,
p_block
);
else
block_Release
(
p_sys
->
p_es
);
if
(
p_sys
->
b_still
)
p_sys
->
i_still_end
=
mdate
()
+
p_sys
->
i_frame_length
;
...
...
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