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
65708116
Commit
65708116
authored
May 03, 2012
by
Jean-Baptiste Kempf
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
VLCKit: remove (void)setValue:(id)value forMeta:(NSString *)VLCMetaInformation;
parent
5f9c8363
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
0 additions
and
13 deletions
+0
-13
projects/macosx/framework/Headers/Public/VLCMedia.h
projects/macosx/framework/Headers/Public/VLCMedia.h
+0
-6
projects/macosx/framework/Sources/VLCMedia.m
projects/macosx/framework/Sources/VLCMedia.m
+0
-7
No files found.
projects/macosx/framework/Headers/Public/VLCMedia.h
View file @
65708116
...
...
@@ -234,12 +234,6 @@ typedef enum VLCMediaState
*/
@property
(
readonly
)
VLCMediaState
state
;
/**
* Sets a value of the metaDictionary
*/
-
(
void
)
setValue
:(
id
)
value
forMeta
:(
NSString
*
)
VLCMetaInformation
;
/**
* Tracks information NSDictionary Possible Keys
*/
...
...
projects/macosx/framework/Sources/VLCMedia.m
View file @
65708116
...
...
@@ -226,13 +226,6 @@ static void HandleMediaParsedChanged(const libvlc_event_t * event, void * self)
return
self
;
}
-
(
void
)
setValue
:(
NSString
*
)
value
forMeta
:(
NSString
*
)
meta
{
libvlc_meta_t
metaName
=
[
VLCMedia
stringToMetaType
:
meta
];
NSAssert
(
metaName
>=
0
,
@"Invalid meta"
);
libvlc_media_set_meta
(
p_md
,
metaName
,
[
value
UTF8String
]);
}
-
(
void
)
dealloc
{
libvlc_event_manager_t
*
p_em
=
libvlc_media_event_manager
(
p_md
);
...
...
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