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
0761ae5e
Commit
0761ae5e
authored
Dec 11, 2007
by
Pierre d'Herbemont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
MacOSX/Framework/VLCMedia.m: Remove not used code.
parent
4884ccb0
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
0 additions
and
41 deletions
+0
-41
extras/MacOSX/Framework/Sources/VLCMedia.m
extras/MacOSX/Framework/Sources/VLCMedia.m
+0
-41
No files found.
extras/MacOSX/Framework/Sources/VLCMedia.m
View file @
0761ae5e
...
@@ -51,24 +51,8 @@ NSString *VLCMetaInformationTrackID = @"trackID";
...
@@ -51,24 +51,8 @@ NSString *VLCMetaInformationTrackID = @"trackID";
/* Notification Messages */
/* Notification Messages */
NSString
*
VLCMediaMetaChanged
=
@"VLCMediaMetaChanged"
;
NSString
*
VLCMediaMetaChanged
=
@"VLCMediaMetaChanged"
;
//NSString *VLCMediaSubItemAdded = @"VLCMediaSubItemAdded";
//NSString *VLCMediaSubItemDeleted = @"VLCMediaSubItemDeleted";
/* libvlc event callback */
/* libvlc event callback */
//static void HandleMediaSubItemAdded(const libvlc_event_t *event, void *self)
//{
// [[VLCEventManager sharedManager] callOnMainThreadObject:self
// withMethod:@selector(subItemAdded:)
// withArgumentAsObject:(id)event->u.media_descriptor_subitem_added.new_child];
//}
//
//static void HandleMediaSubItemDeleted(const libvlc_event_t *event, void *self)
//{
// [[VLCEventManager sharedManager] callOnMainThreadObject:self
// withMethod:@selector(subItemDeleted)
// withArgumentAsObject:nil];
//}
static
void
HandleMediaMetaChanged
(
const
libvlc_event_t
*
event
,
void
*
self
)
static
void
HandleMediaMetaChanged
(
const
libvlc_event_t
*
event
,
void
*
self
)
{
{
NSAutoreleasePool
*
pool
=
[[
NSAutoreleasePool
alloc
]
init
];
NSAutoreleasePool
*
pool
=
[[
NSAutoreleasePool
alloc
]
init
];
...
@@ -107,8 +91,6 @@ static void HandleMediaDurationChanged(const libvlc_event_t *event, void *self)
...
@@ -107,8 +91,6 @@ static void HandleMediaDurationChanged(const libvlc_event_t *event, void *self)
-
(
void
)
notifyChangeForKey
:(
NSString
*
)
key
withOldValue
:(
id
)
oldValue
;
-
(
void
)
notifyChangeForKey
:(
NSString
*
)
key
withOldValue
:(
id
)
oldValue
;
/* Callback Methods */
/* Callback Methods */
//- (void)subItemAdded:(libvlc_media_descriptor_t *)child;
//- (void)subItemRemoved:(libvlc_media_descriptor_t *)child;
-
(
void
)
metaChanged
:(
NSNumber
*
)
metaType
;
-
(
void
)
metaChanged
:(
NSNumber
*
)
metaType
;
@end
@end
...
@@ -159,8 +141,6 @@ static void HandleMediaDurationChanged(const libvlc_event_t *event, void *self)
...
@@ -159,8 +141,6 @@ static void HandleMediaDurationChanged(const libvlc_event_t *event, void *self)
* We also may receive a -retain in some event callback that may occcur
* We also may receive a -retain in some event callback that may occcur
* Before libvlc_event_detach. So this can't happen in dealloc */
* Before libvlc_event_detach. So this can't happen in dealloc */
libvlc_event_manager_t
*
p_em
=
libvlc_media_descriptor_event_manager
(
p_md
,
NULL
);
libvlc_event_manager_t
*
p_em
=
libvlc_media_descriptor_event_manager
(
p_md
,
NULL
);
// libvlc_event_detach(p_em, libvlc_MediaDescriptorSubItemAdded, HandleMediaSubItemAdded, self, NULL);
// libvlc_event_detach(p_em, libvlc_MediaDescriptorSubItemDeleted, HandleMediaSubItemAdded, self, NULL);
libvlc_event_detach
(
p_em
,
libvlc_MediaDescriptorMetaChanged
,
HandleMediaMetaChanged
,
self
,
NULL
);
libvlc_event_detach
(
p_em
,
libvlc_MediaDescriptorMetaChanged
,
HandleMediaMetaChanged
,
self
,
NULL
);
libvlc_event_detach
(
p_em
,
libvlc_MediaDescriptorDurationChanged
,
HandleMediaDurationChanged
,
self
,
NULL
);
libvlc_event_detach
(
p_em
,
libvlc_MediaDescriptorDurationChanged
,
HandleMediaDurationChanged
,
self
,
NULL
);
}
}
...
@@ -362,10 +342,7 @@ static void HandleMediaDurationChanged(const libvlc_event_t *event, void *self)
...
@@ -362,10 +342,7 @@ static void HandleMediaDurationChanged(const libvlc_event_t *event, void *self)
libvlc_media_descriptor_set_user_data
(
p_md
,
(
void
*
)
self
,
&
ex
);
libvlc_media_descriptor_set_user_data
(
p_md
,
(
void
*
)
self
,
&
ex
);
quit_on_exception
(
&
ex
);
quit_on_exception
(
&
ex
);
// TODO: Should these events be caught by VLCMediaList's notification hooks?
libvlc_event_manager_t
*
p_em
=
libvlc_media_descriptor_event_manager
(
p_md
,
&
ex
);
libvlc_event_manager_t
*
p_em
=
libvlc_media_descriptor_event_manager
(
p_md
,
&
ex
);
// libvlc_event_attach(p_em, libvlc_MediaDescriptorSubItemAdded, HandleMediaSubItemAdded, self, &ex);
// libvlc_event_attach(p_em, libvlc_MediaDescriptorSubItemRemoved, HandleMediaSubItemRemoved, self, &ex);
libvlc_event_attach
(
p_em
,
libvlc_MediaDescriptorMetaChanged
,
HandleMediaMetaChanged
,
self
,
&
ex
);
libvlc_event_attach
(
p_em
,
libvlc_MediaDescriptorMetaChanged
,
HandleMediaMetaChanged
,
self
,
&
ex
);
libvlc_event_attach
(
p_em
,
libvlc_MediaDescriptorDurationChanged
,
HandleMediaDurationChanged
,
self
,
&
ex
);
libvlc_event_attach
(
p_em
,
libvlc_MediaDescriptorDurationChanged
,
HandleMediaDurationChanged
,
self
,
&
ex
);
quit_on_exception
(
&
ex
);
quit_on_exception
(
&
ex
);
...
@@ -465,24 +442,6 @@ static void HandleMediaDurationChanged(const libvlc_event_t *event, void *self)
...
@@ -465,24 +442,6 @@ static void HandleMediaDurationChanged(const libvlc_event_t *event, void *self)
[
delegate
media
:
self
metaValueChangedFrom
:
oldValue
forKey
:
key
];
[
delegate
media
:
self
metaValueChangedFrom
:
oldValue
forKey
:
key
];
}
}
//- (void)subItemAdded:(libvlc_media_descriptor_t *)child
//{
// // TODO: SubItemAdded Notification
//// if (!subitems)
//// {
//// subitems = [[VLCMediaList alloc] initWithLibVLCMediaList:];
//// }
//}
//
//- (void)subItemRemoved:(libvlc_media_descriptor_t *)child
//{
// // TODO: SubItemAdded Notification
// // if (!subitems)
// // {
// // subitems = [[VLCMediaList alloc] initWithLibVLCMediaList:];
// // }
//}
-
(
void
)
metaChanged
:
(
NSNumber
*
)
metaType
-
(
void
)
metaChanged
:
(
NSNumber
*
)
metaType
{
{
// TODO: Only retrieve the meta that was changed
// TODO: Only retrieve the meta that was changed
...
...
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