Commit f35e96de authored by Pierre d'Herbemont's avatar Pierre d'Herbemont

MacOSX/Framework: Reenable play and pause.

parent 29cd2f90
...@@ -158,7 +158,7 @@ static void HandleMediaListPlayerStopped( const libvlc_event_t * event, void * s ...@@ -158,7 +158,7 @@ static void HandleMediaListPlayerStopped( const libvlc_event_t * event, void * s
{ {
libvlc_exception_t p_e; libvlc_exception_t p_e;
libvlc_exception_init( &p_e ); libvlc_exception_init( &p_e );
//libvlc_media_list_player_pause( p_mlp, &p_e ); libvlc_media_list_player_pause( p_mlp, &p_e );
quit_on_exception( &p_e ); quit_on_exception( &p_e );
} }
...@@ -170,14 +170,18 @@ static void HandleMediaListPlayerStopped( const libvlc_event_t * event, void * s ...@@ -170,14 +170,18 @@ static void HandleMediaListPlayerStopped( const libvlc_event_t * event, void * s
/* State */ /* State */
- (BOOL)isPlaying - (BOOL)isPlaying
{ {
//libvlc_media_list_player_is_playing( p_mlp, &p_e ); libvlc_exception_t p_e;
//quit_on_exception( &p_e ); BOOL ret = libvlc_media_list_player_is_playing( p_mlp, &p_e );
return FALSE; quit_on_exception( &p_e );
return ret;
} }
- (BOOL)isPaused - (BOOL)isPaused
{ {
return FALSE; libvlc_exception_t p_e;
libvlc_state_t state = libvlc_media_list_player_get_state( p_mlp, &p_e );
quit_on_exception( &p_e );
return (state == libvlc_Paused);
} }
- (VLCTime *)currentTime - (VLCTime *)currentTime
...@@ -234,10 +238,6 @@ static void HandleMediaListPlayerStopped( const libvlc_event_t * event, void * s ...@@ -234,10 +238,6 @@ static void HandleMediaListPlayerStopped( const libvlc_event_t * event, void * s
NSRectFill(aRect); NSRectFill(aRect);
[self unlockFocus]; [self unlockFocus];
} }
- (BOOL)preservesContentDuringLiveResize
{
return NO;//YES;
}
- (BOOL)isOpaque - (BOOL)isOpaque
{ {
return YES; return YES;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment