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
f7e4f296
Commit
f7e4f296
authored
Jul 20, 2007
by
Christophe Mutricy
Browse files
Fix some const.
parent
2aaa1abe
Changes
2
Hide whitespace changes
Inline
Side-by-side
modules/demux/mkv.cpp
View file @
f7e4f296
...
...
@@ -1444,8 +1444,8 @@ static int Open( vlc_object_t * p_this )
demux_sys_t
*
p_sys
;
matroska_stream_c
*
p_stream
;
matroska_segment_c
*
p_segment
;
uint8_t
*
p_peek
;
std
::
string
s_path
,
s_filename
;
const
uint8_t
*
p_peek
;
std
::
string
s_path
,
s_filename
;
vlc_stream_io_callback
*
p_io_callback
;
EbmlStream
*
p_io_stream
;
...
...
@@ -1544,9 +1544,11 @@ static int Open( vlc_object_t * p_this )
#endif
{
// test wether this file belongs to our family
uint8_t
*
p_peek
;
bool
file_ok
=
false
;
stream_t
*
p_file_stream
=
stream_UrlNew
(
p_demux
,
s_filename
.
c_str
());
const
uint8_t
*
p_peek
;
bool
file_ok
=
false
;
stream_t
*
p_file_stream
=
stream_UrlNew
(
p_demux
,
s_filename
.
c_str
());
/* peek the begining */
if
(
p_file_stream
&&
stream_Peek
(
p_file_stream
,
&
p_peek
,
4
)
>=
4
...
...
modules/demux/mp4/mp4.c
View file @
f7e4f296
...
...
@@ -268,7 +268,7 @@ static int Open( vlc_object_t * p_this )
demux_t
*
p_demux
=
(
demux_t
*
)
p_this
;
demux_sys_t
*
p_sys
;
uint8_t
*
p_peek
;
const
uint8_t
*
p_peek
;
MP4_Box_t
*
p_ftyp
;
MP4_Box_t
*
p_rmra
;
...
...
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