(Using apptrack, but hey, the code was already stolen)
Class-dump of most of them looks like this:Video Download Pro http://itunes.apple.com/us/app/video-do ... 36142?mt=8
GoodPlayer http://itunes.apple.com/us/app/goodplay ... 56729?mt=8
Movie Player http://itunes.apple.com/us/app/id406779775?mt=8
Azul http://ax.itunes.apple.com/app/id406845187?mt=8
Code: Select all
...
@interface VLCMedia (LibVLCBridging)
@property(readonly, assign) void* libVLCMediaDescriptor;
+(id)mediaWithLibVLCMediaDescriptor:(void*)libVLCMediaDescriptor;
+(id)mediaWithMedia:(id)media andLibVLCOptions:(id)options;
-(id)initWithLibVLCMediaDescriptor:(void*)libVLCMediaDescriptor;
@end
@interface VLCMediaList (Private)
-(void)initInternalMediaList;
-(void)mediaListItemAdded:(id)added;
-(void)mediaListItemRemoved:(id)removed;
@end
@interface VLCMediaList (LibVLCBridging)
@property(readonly, assign) void* libVLCMediaList;
+(id)mediaListWithLibVLCMediaList:(void*)libVLCMediaList;
-(id)initWithLibVLCMediaList:(void*)libVLCMediaList;
@end
@interface VLCEventManager (Private)
-(void)addMessageToHandleOnMainThread:(id)handleOnMainThread;
-(BOOL)markMessageHandledOnMainThreadIfExists:(id)exists;
-(void)callDelegateOfObjectAndSendNotificationWithArgs:(id)args;
-(void)callObjectMethodWithArgs:(id)args;
-(void)callDelegateOfObject:(id)object withDelegateMethod:(SEL)delegateMethod withNotificationName:(id)notificationName;
-(id)messageQueue;
-(id)pendingMessagesOnMainThread;
-(id)pendingMessagesLock;
-(opaque_pthread_cond_t*)signalData;
-(opaque_pthread_mutex_t*)queueLock;
@end
@interface VLCLibrary (VLCLibVLCBridging)
@property(readonly, assign) void* instance;
+(void*)sharedInstance;
@end
@interface VLCOpenGLESVideoView (Private)
-(void)_createFramebuffer;
-(void)_updateViewportWithBackingWitdh:(unsigned)backingWitdh andBackingHeight:(unsigned)height;
-(void)_destroyFramebuffer;
@end
...