12345678910111213141516171819202122232425 |
- //
- // VLCConstants.h
- // VLC for iOS
- //
- // Created by Felix Paul Kühne on 20.05.13.
- // Copyright (c) 2013 VideoLAN. All rights reserved.
- //
- #define kVLCVersionCodename @"Aspen"
- #define kVLCSettingPasscodeKey @"Passcode"
- #define kVLCSettingPasscodeOnKey @"PasscodeProtection"
- #define kVLCSettingContinueAudioInBackgroundKey @"BackgroundAudioPlayback"
- #define kVLCSettingStretchAudio @"StretchAudio"
- #define kVLCSettingStretchAudioOnValue @"--audio-time-stretch"
- #define kVLCSettingStretchAudioOffValue @"--no-audio-time-stretch"
- #define kVLCSettingVerboseOutput @"VerboseLogs"
- #define kVLCSettingVerboseOutputOnValue @"--verbose=3"
- #define kVLCSettingVerboseOutputOffValue @"--verbose=0"
- #define kVLCSettingTextEncoding @"subsdec-encoding"
- #define kVLCSettingTextEncodingDefaultValue @"Windows-1252"
- #define kSupportedFileExtensions @"\\.(3gp|3gp|3gp2|3gpp|amv|asf|avi|axv|divx|dv|flv|f4v|gvi|gxf|m1v|m2p|m2t|m2ts|m2v|m4v|mks|mkv|moov|mov|mp2v|mp4|mpeg|mpeg1|mpeg2|mpeg4|mpg|mpv|mt2s|mts|mxf|nsv|nuv|oga|ogg|ogm|ogv|ogx|spx|ps|qt|rar|rec|rm|rmvb|tod|ts|tts|vob|vro|webm|wm|wmv|wtv|xesc)$"
- #define kSupportedSubtitleFileExtensions @"\\.(cdg|idx|srt|sub|utf|ass|ssa|aqt|jss|psb|rt|smi|txt|smil)$"
|