Changeset 4703
- Timestamp:
- 03/21/10 23:30:41 (3 years ago)
- Location:
- vic/branches/cc
- Files:
-
- 2 modified
-
main.cpp (modified) (2 diffs)
-
video/grabber-macosx.cpp (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
vic/branches/cc/main.cpp
r4184 r4703 47 47 #include <ctype.h> 48 48 49 50 #if 051 // XXX - MacOS X 10.3 Ptheard workaround52 extern "C" void find_macosx_capture_devices(void);53 #endif54 55 49 #ifdef WIN32 56 50 //#include <winsock.h> … … 499 493 #endif 500 494 501 #if 0502 // XXX - MacOS X 10.3 Ptheard workaround503 find_macosx_capture_devices();504 #endif505 495 // Option list; If letter is followed by ':' then it takes an argument 506 496 const char* options = -
vic/branches/cc/video/grabber-macosx.cpp
r4515 r4703 630 630 631 631 // Instantiate the video capture device. 632 #if 1633 // this doesn't work with MacOS X 10.3 (QuickTime pthread problem),634 // but works fine with 10.4635 632 static MacOSXScanner find_capture_devices; 636 #else637 // this C function is called from main as a workaround for MacOS X 10.3638 extern "C" void find_macosx_capture_devices(void) {639 MacOSXScanner macOSXScanner;640 }641 #endif642 633 643 634 MacOSXScanner::MacOSXScanner()
