Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
VideoLAN
VLC-iOS
Commits
df980084
Commit
df980084
authored
Jun 23, 2013
by
Felix Paul Kühne
Browse files
H.264 loop filter: match Android settings
parent
fae637f9
Changes
4
Hide whitespace changes
Inline
Side-by-side
AspenProject/VLCAppDelegate.m
View file @
df980084
...
...
@@ -43,7 +43,7 @@
if
(
deviceSpeedCategory
<
3
)
skipLoopFilterDefaultValue
=
kVLCSettingSkipLoopFilterNonKey
;
else
skipLoopFilterDefaultValue
=
kVLCSettingSkipLoopFilter
Bidir
;
skipLoopFilterDefaultValue
=
kVLCSettingSkipLoopFilter
NonRef
;
NSDictionary
*
appDefaults
=
@{
kVLCSettingPasscodeKey
:
@""
,
kVLCSettingPasscodeOnKey
:
@
(
NO
),
kVLCSettingContinueAudioInBackgroundKey
:
@
(
YES
),
kVLCSettingStretchAudio
:
@
(
NO
),
kVLCSettingTextEncoding
:
kVLCSettingTextEncodingDefaultValue
,
kVLCSettingSkipLoopFilter
:
skipLoopFilterDefaultValue
};
...
...
AspenProject/VLCConstants.h
View file @
df980084
...
...
@@ -21,9 +21,7 @@
#define kVLCSettingSkipLoopFilter @"avcodec-skiploopfilter"
#define kVLCSettingSkipLoopFilterNone @(0)
#define kVLCSettingSkipLoopFilterNonRef @(1)
#define kVLCSettingSkipLoopFilterBidir @(2)
#define kVLCSettingSkipLoopFilterNonKey @(3)
#define kVLCSettingSkipLoopFilterAll @(4)
#define kVLCShowRemainingTime @"show-remaining-time"
#define kVLCRecentURLs @"recent-urls"
...
...
Resources/Settings.bundle/Root.inApp.plist
View file @
df980084
...
...
@@ -39,17 +39,13 @@
<array>
<string>
None
</string>
<string>
Non-ref
</string>
<string>
Bidir
</string>
<string>
Non-key
</string>
<string>
All
</string>
</array>
<key>
Values
</key>
<array>
<integer>
0
</integer>
<integer>
1
</integer>
<integer>
2
</integer>
<integer>
3
</integer>
<integer>
4
</integer>
</array>
</dict>
<dict>
...
...
Resources/Settings.bundle/Root.plist
View file @
df980084
...
...
@@ -23,17 +23,13 @@
<array>
<string>
None
</string>
<string>
Non-ref
</string>
<string>
Bidir
</string>
<string>
Non-key
</string>
<string>
All
</string>
</array>
<key>
Values
</key>
<array>
<integer>
0
</integer>
<integer>
1
</integer>
<integer>
2
</integer>
<integer>
3
</integer>
<integer>
4
</integer>
</array>
</dict>
<dict>
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new 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