Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-gpu
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
videolan
vlc-gpu
Commits
166aaa2c
Commit
166aaa2c
authored
Jul 19, 2005
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Remove annoying debug message
parent
35db6dd6
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
5 deletions
+3
-5
modules/demux/livedotcom.cpp
modules/demux/livedotcom.cpp
+3
-5
No files found.
modules/demux/livedotcom.cpp
View file @
166aaa2c
...
...
@@ -201,8 +201,8 @@ static int Open ( vlc_object_t *p_this )
v, o, s fields are mandatory and in this order */
if
(
stream_Peek
(
p_demux
->
s
,
&
p_peek
,
7
)
<
7
)
return
VLC_EGENERIC
;
if
(
strn
cmp
(
(
char
*
)
p_peek
,
"v=0
\r\n
"
,
5
)
&&
strn
cmp
(
(
char
*
)
p_peek
,
"v=0
\n
"
,
4
)
&&
if
(
mem
cmp
(
(
char
*
)
p_peek
,
"v=0
\r\n
"
,
5
)
&&
mem
cmp
(
(
char
*
)
p_peek
,
"v=0
\n
"
,
4
)
&&
(
p_peek
[
0
]
<
'a'
||
p_peek
[
0
]
>
'z'
||
p_peek
[
1
]
!=
'='
)
)
{
return
VLC_EGENERIC
;
...
...
@@ -246,7 +246,7 @@ static int Open ( vlc_object_t *p_this )
}
if
(
strcasecmp
(
p_demux
->
psz_access
,
"sdp"
)
&&
vlc_UrlIsNotEncoded
(
p_sys
->
psz_path
)
)
vlc_UrlIsNotEncoded
(
p_sys
->
psz_path
)
)
{
p_sys
->
psz_path
=
vlc_UrlEncode
(
p_sys
->
psz_path
);
if
(
p_sys
->
psz_path
==
NULL
)
...
...
@@ -1265,8 +1265,6 @@ static void TaskInterrupt( void *p_private )
{
demux_t
*
p_demux
=
(
demux_t
*
)
p_private
;
fprintf
(
stderr
,
"TaskInterrupt
\n
"
);
p_demux
->
p_sys
->
i_no_data_ti
++
;
/* Avoid lock */
...
...
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