[vlc-commits] macosx: Add warning for QTKit stuff being broken but still used

Marvin Scholz git at videolan.org
Mon Apr 2 02:46:42 CEST 2018


vlc | branch: master | Marvin Scholz <epirat07 at gmail.com> | Mon Apr  2 02:45:57 2018 +0200| [79c40dfcb2e8cf506b9f94581731b39d05ff74a0] | committer: Marvin Scholz

macosx: Add warning for QTKit stuff being broken but still used

> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=79c40dfcb2e8cf506b9f94581731b39d05ff74a0
---

 modules/gui/macosx/VLCOpenWindowController.m | 6 ++++++
 1 file changed, 6 insertions(+)

diff --git a/modules/gui/macosx/VLCOpenWindowController.m b/modules/gui/macosx/VLCOpenWindowController.m
index be54b53a8e..5b6ef34d61 100644
--- a/modules/gui/macosx/VLCOpenWindowController.m
+++ b/modules/gui/macosx/VLCOpenWindowController.m
@@ -214,6 +214,12 @@ static NSString *kCaptureTabViewId  = @"capture";
     [_screenFollowMouseCheckbox setTitle: _NS("Follow the mouse")];
     [_screenqtkAudioCheckbox setTitle: _NS("Capture Audio")];
 
+#warning QTKit stuff is deprecated and broken!
+    /* The QTKit audio capture does not work anymore since 3.x, it has to be
+     * replaced with AVFoundation audio capture stuff and things have to be
+     * changed here to not try to use the qtkit module anymore.
+     */
+
     // setup start / stop time fields
     [_fileStartTimeTextField setFormatter:[[PositionFormatter alloc] init]];
     [_fileStopTimeTextField setFormatter:[[PositionFormatter alloc] init]];



More information about the vlc-commits mailing list