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
29e5c380
Commit
29e5c380
authored
Feb 09, 2005
by
Gildas Bazin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* modules/demux/mkv.cpp: compilation fixes.
parent
5bc8ca51
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
5 deletions
+3
-5
modules/demux/mkv.cpp
modules/demux/mkv.cpp
+3
-5
No files found.
modules/demux/mkv.cpp
View file @
29e5c380
...
...
@@ -47,8 +47,6 @@
#ifdef HAVE_DIRENT_H
# include <dirent.h>
#elif defined( UNDER_CE )
# include <windows.h>
/* GetFileAttributes() */
#else
# include "../../src/extras/dirent.h"
#endif
...
...
@@ -574,9 +572,9 @@ static int Open( vlc_object_t * p_this )
if
(
p_src_dir
!=
NULL
)
{
while
(
p_file_item
=
readdir
(
p_src_dir
))
while
(
(
p_file_item
=
readdir
(
p_src_dir
)
))
{
if
(
p_file_item
->
d_namlen
>
4
)
if
(
strlen
(
p_file_item
->
d_name
)
>
4
)
{
s_filename
=
s_path
+
DIRECTORY_SEPARATOR
+
p_file_item
->
d_name
;
...
...
@@ -624,7 +622,7 @@ static int Open( vlc_object_t * p_this )
ep
=
new
EbmlParser
(
p_stream
,
p_l0
);
bool
b_this_segment_matches
=
false
;
while
(
p_l1
=
ep
->
Get
(
))
while
(
(
p_l1
=
ep
->
Get
()
))
{
if
(
MKV_IS_ID
(
p_l1
,
KaxInfo
))
{
...
...
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