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
cbb9f5f6
Commit
cbb9f5f6
authored
Jun 26, 2010
by
Srikanth Raju
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Suppress warnings in missing.c
parent
8bf3b3a0
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
32 additions
and
0 deletions
+32
-0
src/missing.c
src/missing.c
+32
-0
No files found.
src/missing.c
View file @
cbb9f5f6
...
...
@@ -401,54 +401,82 @@ vlm_t *vlm_New (vlc_object_t *obj)
media_library_t
*
__ml_Hold
(
vlc_object_t
*
p_this
)
{
VLC_UNUSED
(
p_this
);
return
NULL
;
}
void
__ml_Release
(
vlc_object_t
*
p_this
)
{
VLC_UNUSED
(
p_this
);
assert
(
0
);
}
media_library_t
*
__ml_Create
(
vlc_object_t
*
p_this
,
char
*
psz_name
)
{
VLC_UNUSED
(
p_this
);
VLC_UNUSED
(
psz_name
);
return
NULL
;
}
void
__ml_Destroy
(
vlc_object_t
*
p_this
)
{
VLC_UNUSED
(
p_this
);
assert
(
0
);
}
ml_media_t
*
media_New
(
media_library_t
*
p_ml
,
int
id
,
ml_select_e
select
,
bool
reload
)
{
VLC_UNUSED
(
p_ml
);
VLC_UNUSED
(
id
);
VLC_UNUSED
(
select
);
VLC_UNUSED
(
reload
);
assert
(
0
);
return
NULL
;
}
int
__ml_UpdateSimple
(
media_library_t
*
p_media_library
,
ml_select_e
selected_type
,
const
char
*
psz_lvalue
,
int
id
,
...
)
{
VLC_UNUSED
(
p_media_library
);
VLC_UNUSED
(
selected_type
);
VLC_UNUSED
(
psz_lvalue
);
VLC_UNUSED
(
id
);
assert
(
0
);
return
0
;
}
ml_ftree_t
*
ml_OpConnectChilds
(
ml_op_e
op
,
ml_ftree_t
*
left
,
ml_ftree_t
*
right
)
{
VLC_UNUSED
(
op
);
VLC_UNUSED
(
left
);
VLC_UNUSED
(
right
);
assert
(
0
);
return
NULL
;
}
ml_ftree_t
*
__ml_FtreeSpec
(
ml_ftree_t
*
tree
,
ml_select_e
crit
,
int
limit
,
char
*
sort
)
{
VLC_UNUSED
(
tree
);
VLC_UNUSED
(
crit
);
VLC_UNUSED
(
limit
);
VLC_UNUSED
(
sort
);
assert
(
0
);
return
NULL
;
}
void
ml_PlaySmartPlaylistBasedOn
(
media_library_t
*
p_ml
,
ml_ftree_t
*
p_tree
)
{
VLC_UNUSED
(
p_ml
);
VLC_UNUSED
(
p_tree
);
assert
(
0
);
}
void
ml_DeletePersonTypeFromMedia
(
ml_media_t
*
p_media
,
const
char
*
psz_role
)
{
VLC_UNUSED
(
p_media
);
VLC_UNUSED
(
psz_role
);
assert
(
0
);
}
...
...
@@ -456,6 +484,10 @@ ml_person_t* ml_GetPersonsFromMedia( media_library_t* p_ml,
ml_media_t
*
p_media
,
const
char
*
psz_role
)
{
VLC_UNUSED
(
p_ml
);
VLC_UNUSED
(
p_media
);
VLC_UNUSED
(
psz_role
);
assert
(
0
);
return
NULL
;
}
#endif
/* !MEDIA_LIBRARY */
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