Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-1.1
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-1.1
Commits
dcda9be6
Commit
dcda9be6
authored
Aug 13, 2003
by
Laurent Aimar
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* ts.c: commented out useless code and an annoying error message.
parent
2f04d372
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
2 deletions
+5
-2
modules/demux/mpeg/ts.c
modules/demux/mpeg/ts.c
+5
-2
No files found.
modules/demux/mpeg/ts.c
View file @
dcda9be6
...
@@ -2,7 +2,7 @@
...
@@ -2,7 +2,7 @@
* mpeg_ts.c : Transport Stream input module for vlc
* mpeg_ts.c : Transport Stream input module for vlc
*****************************************************************************
*****************************************************************************
* Copyright (C) 2000-2001 VideoLAN
* Copyright (C) 2000-2001 VideoLAN
* $Id: ts.c,v 1.3
2 2003/08/04 12:40:22 jpsaman
Exp $
* $Id: ts.c,v 1.3
3 2003/08/13 14:06:37 fenrir
Exp $
*
*
* Authors: Henri Fallon <henri@via.ecp.fr>
* Authors: Henri Fallon <henri@via.ecp.fr>
* Johan Bilien <jobi@via.ecp.fr>
* Johan Bilien <jobi@via.ecp.fr>
...
@@ -137,14 +137,17 @@ static int Activate( vlc_object_t * p_this )
...
@@ -137,14 +137,17 @@ static int Activate( vlc_object_t * p_this )
/* Set the demux function */
/* Set the demux function */
p_input
->
pf_demux
=
Demux
;
p_input
->
pf_demux
=
Demux
;
#if 0
/* XXX Unused already done by src/input.c */
/* Initialize access plug-in structures. */
/* Initialize access plug-in structures. */
if( p_input->i_mtu == 0 )
if( p_input->i_mtu == 0 )
{
{
/* Improve speed. */
/* Improve speed. */
msg_
Err
(
p_input
,
"using default mtu (%d) with bufsize (%d)
\n
"
,
msg_
Dbg
( p_input, "using default mtu (%d) with bufsize (%d)\n",
p_input->i_mtu, INPUT_DEFAULT_BUFSIZE );
p_input->i_mtu, INPUT_DEFAULT_BUFSIZE );
p_input->i_bufsize = INPUT_DEFAULT_BUFSIZE;
p_input->i_bufsize = INPUT_DEFAULT_BUFSIZE;
}
}
#endif
/* Have a peep at the show. */
/* Have a peep at the show. */
if
(
input_Peek
(
p_input
,
&
p_peek
,
1
)
<
1
)
if
(
input_Peek
(
p_input
,
&
p_peek
,
1
)
<
1
)
...
...
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