Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc
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
Commits
d62129ac
Commit
d62129ac
authored
Sep 14, 2008
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Hide fetcher and prepase typedefs
parent
a8108e04
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
10 additions
and
12 deletions
+10
-12
include/vlc_common.h
include/vlc_common.h
+0
-2
src/playlist/playlist_internal.h
src/playlist/playlist_internal.h
+10
-10
No files found.
include/vlc_common.h
View file @
d62129ac
...
...
@@ -170,8 +170,6 @@ typedef struct playlist_export_t playlist_export_t;
typedef
struct
services_discovery_t
services_discovery_t
;
typedef
struct
services_discovery_sys_t
services_discovery_sys_t
;
typedef
struct
playlist_add_t
playlist_add_t
;
typedef
struct
playlist_preparse_t
playlist_preparse_t
;
typedef
struct
playlist_fetcher_t
playlist_fetcher_t
;
/* Modules */
typedef
struct
module_bank_t
module_bank_t
;
...
...
src/playlist/playlist_internal.h
View file @
d62129ac
...
...
@@ -37,22 +37,15 @@
#include "input/input_internal.h"
#include <assert.h>
struct
playlist_private_t
{
playlist_preparse_t
*
p_preparse
;
/**< Preparser object */
playlist_fetcher_t
*
p_fetcher
;
/**< Meta and art fetcher object */
sout_instance_t
*
p_sout
;
/**< Kept sout instance */
};
struct
playlist_preparse_t
typedef
struct
playlist_preparse_t
{
VLC_COMMON_MEMBERS
vlc_mutex_t
lock
;
int
i_waiting
;
input_item_t
**
pp_waiting
;
};
}
playlist_preparse_t
;
struct
playlist_fetcher_t
typedef
struct
playlist_fetcher_t
{
VLC_COMMON_MEMBERS
vlc_mutex_t
lock
;
...
...
@@ -61,6 +54,13 @@ struct playlist_fetcher_t
input_item_t
**
pp_waiting
;
DECL_ARRAY
(
playlist_album_t
)
albums
;
}
playlist_fetcher_t
;
struct
playlist_private_t
{
playlist_preparse_t
*
p_preparse
;
/**< Preparser object */
playlist_fetcher_t
*
p_fetcher
;
/**< Meta and art fetcher object */
sout_instance_t
*
p_sout
;
/**< Kept sout instance */
};
/*****************************************************************************
...
...
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