[vlc-commits] macosx: fix run-time exception
Felix Paul Kühne
git at videolan.org
Sat Jul 12 16:47:34 CEST 2014
vlc | branch: master | Felix Paul Kühne <fkuehne at videolan.org> | Sat Jul 12 16:47:28 2014 +0200| [79c5b0cdfe74e38ebf0f234afccf5b085ed5771b] | committer: Felix Paul Kühne
macosx: fix run-time exception
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=79c5b0cdfe74e38ebf0f234afccf5b085ed5771b
---
modules/gui/macosx/TrackSynchronization.m | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/modules/gui/macosx/TrackSynchronization.m b/modules/gui/macosx/TrackSynchronization.m
index c0b8f3c..f65e5ce 100644
--- a/modules/gui/macosx/TrackSynchronization.m
+++ b/modules/gui/macosx/TrackSynchronization.m
@@ -1,8 +1,8 @@
/*****************************************************************************
* TrackSynchronization.m: MacOS X interface module
*****************************************************************************
- * Copyright (C) 2011-2012 VLC authors and VideoLAN
- * Copyright (C) 2011-2012 Felix Paul Kühne
+ * Copyright (C) 2011-2014 VLC authors and VideoLAN
+ * Copyright (C) 2011-2014 Felix Paul Kühne
* $Id$
*
* Authors: Felix Paul Kühne <fkuehne -at- videolan -dot- org>
@@ -24,9 +24,9 @@
#import "CompatibilityFixes.h"
#import "intf.h"
-#import "VideoEffects.h"
#import <vlc_common.h>
#import "TrackSynchronization.h"
+#import "CoreInteraction.h"
#define SUBSDELAY_CFG_MODE "subsdelay-mode"
#define SUBSDELAY_CFG_FACTOR "subsdelay-factor"
@@ -218,7 +218,7 @@ static VLCTrackSynchronization *_o_sharedInstance = nil;
var_SetFloat(p_obj, SUBSDELAY_CFG_FACTOR, f_factor);
vlc_object_release(p_obj);
}
- [[VLCVideoEffects sharedInstance] setVideoFilter: "subsdelay" on: f_factor > 0];
+ [[VLCCoreInteraction sharedInstance] setVideoFilter: "subsdelay" on: f_factor > 0];
vlc_object_release(p_input);
}
More information about the vlc-commits
mailing list