[vlc-commits] MobileVLCKit: enforce the correct aout and vout modules, enable debug messages
Felix Paul Kühne
git at videolan.org
Sun Mar 25 13:46:37 CEST 2012
vlc | branch: master | Felix Paul Kühne <fkuehne at videolan.org> | Sun Mar 25 13:46:13 2012 +0200| [2548031a834919f3ff7dfb34869ff371c2897bfa] | committer: Felix Paul Kühne
MobileVLCKit: enforce the correct aout and vout modules, enable debug messages
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=2548031a834919f3ff7dfb34869ff371c2897bfa
---
projects/macosx/framework/Sources/VLCLibrary.m | 6 ++++--
1 files changed, 4 insertions(+), 2 deletions(-)
diff --git a/projects/macosx/framework/Sources/VLCLibrary.m b/projects/macosx/framework/Sources/VLCLibrary.m
index 913f0d1..a6787c6 100644
--- a/projects/macosx/framework/Sources/VLCLibrary.m
+++ b/projects/macosx/framework/Sources/VLCLibrary.m
@@ -59,10 +59,12 @@ static VLCLibrary * sharedLibrary = nil;
[defaultParams addObject:@"--play-and-pause"]; // We want every movie to pause instead of stopping at eof
[defaultParams addObject:@"--no-color"]; // Don't use color in output (Xcode doesn't show it)
[defaultParams addObject:@"--no-video-title-show"]; // Don't show the title on overlay when starting to play
- [defaultParams addObject:@"--verbose=-1"]; // Let's not wreck the logs
+ [defaultParams addObject:@"--verbose=4"]; // Let's not wreck the logs
#if TARGET_OS_IPHONE
-// [defaultParams addObject:@"--ffmpeg-fast"]; // Let's disable this as it is error-prone
+ [defaultParams addObject:@"--ffmpeg-fast"];
[defaultParams addObject:@"--ffmpeg-skiploopfilter=all"];
+ [defaultParams addObject:@"--vout=vout_ios"];
+ [defaultParams addObject:@"--aout=audioqueue"];
#else
[defaultParams addObject:@"--no-sout-keep"];
[defaultParams addObject:@"--vout=macosx"]; // Select Mac OS X video output
More information about the vlc-commits
mailing list