Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
GSoC
GSoC2018
macOS
vlc
Commits
8c387fdd
Commit
8c387fdd
authored
Jan 05, 2015
by
François Cartegnie
🤞
Browse files
demux: mp4: fix regression on smooth streaming
DemuxFrg was no longer selected
parent
ebae1fe6
Changes
1
Hide whitespace changes
Inline
Side-by-side
modules/demux/mp4/mp4.c
View file @
8c387fdd
...
...
@@ -680,20 +680,16 @@ static int Open( vlc_object_t * p_this )
if
(
!
p_sys
->
moovfragment
.
p_moox
&&
!
p_sys
->
b_smooth
)
goto
error
;
MP4_BoxDumpStructure
(
p_demux
->
s
,
p_sys
->
p_root
);
if
(
p_sys
->
b_smooth
)
{
if
(
InitTracks
(
p_demux
)
!=
VLC_SUCCESS
)
goto
error
;
CreateTracksFromSmooBox
(
p_demux
);
return
VLC_SUCCESS
;
}
MP4_BoxDumpStructure
(
p_demux
->
s
,
p_sys
->
p_root
);
if
(
p_sys
->
b_smooth
)
{
p_demux
->
pf_demux
=
DemuxFrg
;
msg_Dbg
(
p_demux
,
"Set DemuxFrg mode"
);
return
VLC_SUCCESS
;
}
else
if
(
p_sys
->
b_fragmented
)
{
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new 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