Ticket #289: oss-fix.diff
File oss-fix.diff, 1.7 KB (added by , 20 years ago) |
---|
-
mythtv/libs/libmythtv/NuppelVideoRecorder.cpp
614 614 int frag, blocksize = 4096; 615 615 int tmp; 616 616 617 #if def CONFIG_DARWIN617 #if defined(CONFIG_DARWIN) || ( !defined(HAVE_SYS_SOUNDCARD_H) && !defined(HAVE_SOUNDCARD_H)) 618 618 VERBOSE(VB_IMPORTANT, QString("NVR::AudioInit() This Unix doesn't support" 619 619 " device files for audio access. Skipping")); 620 620 return 1; … … 2076 2076 2077 2077 void NuppelVideoRecorder::doAudioThread(void) 2078 2078 { 2079 #if def CONFIG_DARWIN2079 #if defined(CONFIG_DARWIN) || ( !defined(HAVE_SYS_SOUNDCARD_H) && !defined(HAVE_SOUNDCARD_H)) 2080 2080 VERBOSE(VB_IMPORTANT, 2081 2081 QString("NVR::doAudioThread() This Unix doesn't support" 2082 2082 " device files for audio access. Skipping")); -
mythtv/programs/mythbackend/mainserver.cpp
826 826 if (audiodevice.right(4) == audiooutputdevice.right(4) && 827 827 (cardtype == "V4L" || cardtype == "MJPEG")) //they match 828 828 { 829 #if def CONFIG_DARWIN829 #if defined(CONFIG_DARWIN) || ( !defined(HAVE_SYS_SOUNDCARD_H) && !defined(HAVE_SOUNDCARD_H)) 830 830 VERBOSE(VB_ALL, QString("Audio device files are not " 831 831 "supported on this Unix.")); 832 832 #else