|
Revision 0eef312522322e11e94c6b6750e890c06ff29bb6, 385 bytes
(checked in by Pierre d'Herbemont <pdherbemont@videolan.org>, 10 months ago)
|
macosx/frontrow_plugin: VLCMediaListController, display a mediaListAspect in a FrontRow? list. To get a service discovery in frontrow go into VLCAppliance.m -applianceController and uncomment the right part.
|
- Property mode set to
100644
|
| Line | |
|---|
| 1 |
|
|---|
| 2 |
|
|---|
| 3 |
|
|---|
| 4 |
|
|---|
| 5 |
|
|---|
| 6 |
|
|---|
| 7 |
|
|---|
| 8 |
|
|---|
| 9 |
#import <Cocoa/Cocoa.h> |
|---|
| 10 |
#import <BackRow/BRMediaPlayerController.h> |
|---|
| 11 |
#import "VLCMediaLayer.h" |
|---|
| 12 |
#import <VLCKit/VLCKit.h> |
|---|
| 13 |
|
|---|
| 14 |
@interface VLCPlayerController : BRController |
|---|
| 15 |
{ |
|---|
| 16 |
VLCMediaLayer * _mediaLayer; |
|---|
| 17 |
} |
|---|
| 18 |
|
|---|
| 19 |
@property(retain) VLCMedia * media; |
|---|
| 20 |
|
|---|
| 21 |
@end |
|---|