Commit 3bb57649 authored by Pierre d'Herbemont's avatar Pierre d'Herbemont

macosx/framework: Activate --play-and-pause with the framework by default.

parent 4575e52e
...@@ -91,10 +91,14 @@ void * DestroySharedLibraryAtExit( void ) ...@@ -91,10 +91,14 @@ void * DestroySharedLibraryAtExit( void )
libvlc_exception_init( &ex ); libvlc_exception_init( &ex );
const char * lib_vlc_params[] = { const char * lib_vlc_params[] = {
"-I", "dummy", "--vout=minimal_macosx", "-I", "dummy", // No interface
"--no-video-title-show", "--no-sout-keep", "--ignore-config", "--no-video-title-show", // Don't show the title on overlay when starting to play
"--opengl-provider=minimal_macosx", "--no-sout-keep",
"-verbose=-1" "--ignore-config", // Don't read and write VLC config files.
"--opengl-provider=minimal_macosx", // Use minimal_macosx
"--vout=minimal_macosx",
"-verbose=-1", // Don't polute the log
"--play-and-pause" // When ending a stream pause it instead of stopping it.
//, "--control=motion", "--motion-use-rotate", "--video-filter=rotate" //, "--control=motion", "--motion-use-rotate", "--video-filter=rotate"
}; };
......
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