Opened 16 years ago
Closed 16 years ago
Last modified 16 years ago
#289 closed patch (fixed)
Fix for non-OSS audio
Reported by: | Owned by: | ||
---|---|---|---|
Priority: | major | Milestone: | unknown |
Component: | mythtv | Version: | |
Severity: | high | Keywords: | |
Cc: | Ticket locked: | no |
Description
Index: mythtv/libs/libmythtv/NuppelVideoRecorder.cpp =================================================================== --- mythtv/libs/libmythtv/NuppelVideoRecorder.cpp (revision 7193) +++ mythtv/libs/libmythtv/NuppelVideoRecorder.cpp (working copy) @@ -614,7 +614,7 @@
int frag, blocksize = 4096; int tmp;
-#ifdef CONFIG_DARWIN
( !defined(HAVE_SYS_SOUNDCARD_H) && !defined(HAVE_SOUNDCARD_H)) |
VERBOSE(VB_IMPORTANT, QString("NVR::AudioInit?() This Unix doesn't support"
" device files for audio access. Skipping"));
return 1;
@@ -2076,7 +2076,7 @@
void NuppelVideoRecorder::doAudioThread(void) {
-#ifdef CONFIG_DARWIN
( !defined(HAVE_SYS_SOUNDCARD_H) && !defined(HAVE_SOUNDCARD_H)) |
VERBOSE(VB_IMPORTANT,
QString("NVR::doAudioThread() This Unix doesn't support"
" device files for audio access. Skipping"));
Index: mythtv/programs/mythbackend/mainserver.cpp =================================================================== --- mythtv/programs/mythbackend/mainserver.cpp (revision 7193) +++ mythtv/programs/mythbackend/mainserver.cpp (working copy) @@ -826,7 +826,7 @@
if (audiodevice.right(4) == audiooutputdevice.right(4) &&
(cardtype == "V4L" cardtype == "MJPEG")) they match {
-#ifdef CONFIG_DARWIN
( !defined(HAVE_SYS_SOUNDCARD_H) && !defined(HAVE_SOUNDCARD_H)) |
VERBOSE(VB_ALL, QString("Audio device files are not "
"supported on this Unix."));
#else
(In [7200]) Fixes #289