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
719ff97c
Commit
719ff97c
authored
Feb 22, 2007
by
Jean-Paul Saman
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Remove of excess whitespace
parent
246f8b26
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
5 additions
and
8 deletions
+5
-8
modules/audio_output/alsa.c
modules/audio_output/alsa.c
+0
-1
modules/demux/avi/avi.c
modules/demux/avi/avi.c
+2
-4
modules/stream_out/rtp.c
modules/stream_out/rtp.c
+3
-3
No files found.
modules/audio_output/alsa.c
View file @
719ff97c
...
...
@@ -982,7 +982,6 @@ static void GetDevicesForCard(module_config_t *p_item, int i_card)
p_item
->
i_list
++
;
p_item
->
ppsz_list
[
p_item
->
i_list
]
=
NULL
;
p_item
->
ppsz_list_text
[
p_item
->
i_list
]
=
NULL
;
}
snd_ctl_close
(
p_ctl
);
...
...
modules/demux/avi/avi.c
View file @
719ff97c
...
...
@@ -1077,7 +1077,7 @@ static int Demux_UnSeekable( demux_t *p_demux )
msg_Err
(
p_demux
,
"Can not yet process muxed avi substreams without seeking"
);
return
VLC_EGENERIC
;
}
es_out_Control
(
p_demux
->
out
,
ES_OUT_SET_PCR
,
p_sys
->
i_time
+
1
);
/* *** find master stream for data packet skipping algo *** */
...
...
@@ -1318,8 +1318,6 @@ static int Seek( demux_t *p_demux, mtime_t i_date, int i_percent )
/*****************************************************************************
* Control:
*****************************************************************************
*
*****************************************************************************/
static
double
ControlGetPosition
(
demux_t
*
p_demux
)
{
...
...
@@ -1354,7 +1352,7 @@ static double ControlGetPosition( demux_t *p_demux )
return
0
.
0
;
}
static
int
Control
(
demux_t
*
p_demux
,
int
i_query
,
va_list
args
)
static
int
Control
(
demux_t
*
p_demux
,
int
i_query
,
va_list
args
)
{
demux_sys_t
*
p_sys
=
p_demux
->
p_sys
;
int
i
;
...
...
modules/stream_out/rtp.c
View file @
719ff97c
...
...
@@ -1162,7 +1162,7 @@ static sout_stream_id_t *Add( sout_stream_t *p_stream, es_format_t *p_fmt )
char
*
p_64_sps
=
NULL
;
char
*
p_64_pps
=
NULL
;
char
hexa
[
6
];
while
(
i_buffer
>
4
&&
p_buffer
[
0
]
==
0
&&
p_buffer
[
1
]
==
0
&&
p_buffer
[
2
]
==
0
&&
p_buffer
[
3
]
==
1
)
...
...
@@ -1172,9 +1172,9 @@ static sout_stream_id_t *Add( sout_stream_t *p_stream, es_format_t *p_fmt )
int
i_size
=
0
;
int
i_startcode
=
0
;
int
i_encoded
=
0
;
msg_Dbg
(
p_stream
,
"we found a startcode for NAL with TYPE:%d"
,
i_nal_type
);
for
(
i_offset
=
1
;
i_offset
+
3
<
i_buffer
;
i_offset
++
)
{
if
(
p_buffer
[
i_offset
]
==
0
&&
p_buffer
[
i_offset
+
1
]
==
0
&&
p_buffer
[
i_offset
+
2
]
==
0
&&
p_buffer
[
i_offset
+
3
]
==
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