浏览代码

Movie View: allow custom setting of subtitle text encoding (close #8671)

Felix Paul Kühne 12 年之前
父节点
当前提交
59d2b84c81
共有 1 个文件被更改,包括 2 次插入1 次删除
  1. 2 1
      AspenProject/VLCMovieViewController.m

+ 2 - 1
AspenProject/VLCMovieViewController.m

@@ -46,7 +46,8 @@
 
     NSUserDefaults *defaults = [NSUserDefaults standardUserDefaults];
     NSArray *options = @[[defaults objectForKey:kVLCSettingVerboseOutput],
-                         [defaults objectForKey:kVLCSettingStretchAudio]];
+                         [defaults objectForKey:kVLCSettingStretchAudio],
+                         [defaults objectForKey:kVLCSettingTextEncoding]];
 
     _mediaPlayer = [[VLCMediaPlayer alloc] initWithOptions:options];
     [_mediaPlayer setDelegate:self];