소스 검색

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];