Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
Steve Lhomme
VLC
Commits
f67a6d79
Commit
f67a6d79
authored
Nov 27, 2003
by
Laurent Aimar
Browse files
* livedotcom.cpp: added call to input_InitStream.
parent
46e872e4
Changes
1
Hide whitespace changes
Inline
Side-by-side
modules/demux/livedotcom.cpp
View file @
f67a6d79
...
...
@@ -2,7 +2,7 @@
* live.cpp : live.com support.
*****************************************************************************
* Copyright (C) 2003 VideoLAN
* $Id: livedotcom.cpp,v 1.1
1
2003/11/2
1
0
6:14:5
9 fenrir Exp $
* $Id: livedotcom.cpp,v 1.1
2
2003/11/2
7
0
5:41:1
9 fenrir Exp $
*
* Authors: Laurent Aimar <fenrir@via.ecp.fr>
*
...
...
@@ -360,6 +360,15 @@ static int DemuxOpen ( vlc_object_t *p_this )
p_sys
->
i_start
=
0
;
/* Gather the complete sdp file */
vlc_mutex_lock
(
&
p_input
->
stream
.
stream_lock
);
if
(
input_InitStream
(
p_input
,
0
)
==
-
1
)
{
vlc_mutex_unlock
(
&
p_input
->
stream
.
stream_lock
);
msg_Err
(
p_input
,
"cannot init stream"
);
goto
error
;
}
vlc_mutex_unlock
(
&
p_input
->
stream
.
stream_lock
);
i_sdp
=
0
;
i_sdp_max
=
1000
;
p_sdp
=
(
uint8_t
*
)
malloc
(
i_sdp_max
);
...
...
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