Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-2-2
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
videolan
vlc-2-2
Commits
2548031a
Commit
2548031a
authored
Mar 25, 2012
by
Felix Paul Kühne
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
MobileVLCKit: enforce the correct aout and vout modules, enable debug messages
parent
1e9dc296
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
2 deletions
+4
-2
projects/macosx/framework/Sources/VLCLibrary.m
projects/macosx/framework/Sources/VLCLibrary.m
+4
-2
No files found.
projects/macosx/framework/Sources/VLCLibrary.m
View file @
2548031a
...
@@ -59,10 +59,12 @@ static VLCLibrary * sharedLibrary = nil;
...
@@ -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
:
@"--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-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
:
@"--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
#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
:
@"--ffmpeg-skiploopfilter=all"
];
[
defaultParams
addObject
:
@"--vout=vout_ios"
];
[
defaultParams
addObject
:
@"--aout=audioqueue"
];
#else
#else
[
defaultParams
addObject
:
@"--no-sout-keep"
];
[
defaultParams
addObject
:
@"--no-sout-keep"
];
[
defaultParams
addObject
:
@"--vout=macosx"
];
// Select Mac OS X video output
[
defaultParams
addObject
:
@"--vout=macosx"
];
// Select Mac OS X video output
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment