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
5a6a1bdf
Commit
5a6a1bdf
authored
Dec 13, 2004
by
Gildas Bazin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* modules/access/directory.c: scandir isn't available on win32.
parent
6656f5a2
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
10 additions
and
20 deletions
+10
-20
modules/access/directory.c
modules/access/directory.c
+10
-20
No files found.
modules/access/directory.c
View file @
5a6a1bdf
...
...
@@ -150,7 +150,6 @@ static int Open( vlc_object_t *p_this )
*****************************************************************************/
static
void
Close
(
vlc_object_t
*
p_this
)
{
}
/*****************************************************************************
...
...
@@ -333,12 +332,10 @@ static int Demux( demux_t *p_demux )
*****************************************************************************/
static
int
DemuxControl
(
demux_t
*
p_demux
,
int
i_query
,
va_list
args
)
{
return
demux2_vaControlHelper
(
p_demux
->
s
,
0
,
0
,
0
,
1
,
i_query
,
args
);
return
demux2_vaControlHelper
(
p_demux
->
s
,
0
,
0
,
0
,
1
,
i_query
,
args
);
}
#if
def SYS_BEOS
#if
defined(SYS_BEOS) || defined(WIN32)
/* BeOS doesn't have scandir/alphasort/versionsort */
static
int
alphasort
(
const
struct
dirent
**
a
,
const
struct
dirent
**
b
)
{
...
...
@@ -355,11 +352,7 @@ static int scandir( const char *name, struct dirent ***namelist,
struct
dirent
**
pp_list
;
int
ret
,
size
;
if
(
!
namelist
||
!
(
p_dir
=
opendir
(
name
)
)
)
{
return
-
1
;
}
if
(
!
namelist
||
!
(
p_dir
=
opendir
(
name
)
)
)
return
-
1
;
ret
=
0
;
pp_list
=
NULL
;
...
...
@@ -400,17 +393,16 @@ static int ReadDir( playlist_t *p_playlist,
char
*
psz_name
,
int
i_mode
,
int
*
pi_position
,
playlist_item_t
*
p_parent
)
{
struct
dirent
*
p_dir_content
;
struct
dirent
**
pp_dir_content
;
int
i_dir_content
;
struct
dirent
*
p_dir_content
;
struct
dirent
**
pp_dir_content
;
int
i_dir_content
,
i
=
0
;
playlist_item_t
*
p_node
;
int
i
=
0
;
/* Change the item to a node */
if
(
p_parent
->
i_children
==
-
1
)
{
/* Change the item to a node */
if
(
p_parent
->
i_children
==
-
1
)
{
playlist_ItemToNode
(
p_playlist
,
p_parent
);
}
}
/* get the first directory entry */
i_dir_content
=
scandir
(
psz_name
,
&
pp_dir_content
,
Filter
,
alphasort
);
...
...
@@ -502,5 +494,3 @@ static int ReadDir( playlist_t *p_playlist,
free
(
pp_dir_content
);
return
VLC_SUCCESS
;
}
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