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

MacOSX/Framework/VLCLibrary.m: Default the use of the opengllayer video output...

MacOSX/Framework/VLCLibrary.m: Default the use of the opengllayer video output module. Don't be verbose by default.
parent 07f63871
...@@ -75,11 +75,11 @@ static void * DestroySharedLibraryAtExit( void ) ...@@ -75,11 +75,11 @@ static void * DestroySharedLibraryAtExit( void )
libvlc_exception_init( &ex ); libvlc_exception_init( &ex );
const char *lib_vlc_params[] = { const char *lib_vlc_params[] = {
"-I", "dummy", "-vvvv", "--opengl-provider", "minimal_macosx", "-I", "dummy", "--vout=opengllayer",
"--no-video-title-show", NULL "--no-video-title-show"
}; };
instance = (void *)libvlc_new( 6, lib_vlc_params, &ex ); instance = (void *)libvlc_new( sizeof(lib_vlc_params)/sizeof(lib_vlc_params[0]), lib_vlc_params, &ex );
quit_on_exception( &ex ); quit_on_exception( &ex );
// Assignment unneeded, as the audio unit will do it for us // Assignment unneeded, as the audio unit will do it for us
...@@ -127,4 +127,3 @@ static void * DestroySharedLibraryAtExit( void ) ...@@ -127,4 +127,3 @@ static void * DestroySharedLibraryAtExit( void )
audio = value; audio = value;
} }
@end @end
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