* Build fix; the Jamfile changes caused those to be broken.

git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@34504 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Axel Dörfler
2009-12-05 13:34:39 +00:00
parent 21e74f0305
commit a1e0f39f45
10 changed files with 96 additions and 93 deletions
+23 -41
View File
@@ -1,18 +1,19 @@
/*********************************************************************** /*
* AUTHOR: Marcus Overhagen * Copyright 2002, Marcus Overhagen. All Rights Reserved.
* FILE: OldAudioModule.cpp * Distributed under the terms of the MIT License.
* DESCR: */
***********************************************************************/
#include <OldAudioModule.h>
#include "debug.h" #include "OldAudioModule.h"
#include <debug.h>
/************************************************************* /*************************************************************
* public BAudioEvent * public BAudioEvent
*************************************************************/ *************************************************************/
BAudioEvent::BAudioEvent(int32 frames, BAudioEvent::BAudioEvent(int32 frames, bool stereo, float *samples)
bool stereo,
float *samples)
{ {
UNIMPLEMENTED(); UNIMPLEMENTED();
} }
@@ -108,9 +109,7 @@ BAudioEvent::SetDestination(int32)
bool bool
BAudioEvent::MixIn(float *dst, BAudioEvent::MixIn(float *dst, int32 frames, mk_time time)
int32 frames,
mk_time time)
{ {
UNIMPLEMENTED(); UNIMPLEMENTED();
@@ -224,8 +223,7 @@ BDACRenderer::Wakeup()
void void
BDACRenderer::TransportChanged(mk_time time, BDACRenderer::TransportChanged(mk_time time, mk_rate rate,
mk_rate rate,
transport_status status) transport_status status)
{ {
UNIMPLEMENTED(); UNIMPLEMENTED();
@@ -252,10 +250,7 @@ BDACRenderer::Channel()
bool bool
BDACRenderer::_WriteDAC(void *arg, BDACRenderer::_WriteDAC(void *arg, char *buf, uint32 bytes, void *header)
char *buf,
uint32 bytes,
void *header)
{ {
UNIMPLEMENTED(); UNIMPLEMENTED();
@@ -264,9 +259,7 @@ BDACRenderer::_WriteDAC(void *arg,
bool bool
BDACRenderer::WriteDAC(short *buf, BDACRenderer::WriteDAC(short *buf, int32 frames, audio_buffer_header *header)
int32 frames,
audio_buffer_header *header)
{ {
UNIMPLEMENTED(); UNIMPLEMENTED();
@@ -294,8 +287,7 @@ BDACRenderer::MixOutput(short *dst)
* public BAudioFileStream * public BAudioFileStream
*************************************************************/ *************************************************************/
BAudioFileStream::BAudioFileStream(BMediaChannel *channel, BAudioFileStream::BAudioFileStream(BMediaChannel *channel, BFile *file,
BFile *file,
mk_time start) mk_time start)
{ {
UNIMPLEMENTED(); UNIMPLEMENTED();
@@ -317,8 +309,7 @@ BAudioFileStream::GetEvent(BMediaChannel *channel)
BMediaEvent * BMediaEvent *
BAudioFileStream::PeekEvent(BMediaChannel *channel, BAudioFileStream::PeekEvent(BMediaChannel *channel, mk_time asap)
mk_time asap)
{ {
UNIMPLEMENTED(); UNIMPLEMENTED();
return NULL; return NULL;
@@ -326,8 +317,7 @@ BAudioFileStream::PeekEvent(BMediaChannel *channel,
status_t status_t
BAudioFileStream::SeekToTime(BMediaChannel *channel, BAudioFileStream::SeekToTime(BMediaChannel *channel, mk_time time)
mk_time time)
{ {
UNIMPLEMENTED(); UNIMPLEMENTED();
@@ -362,8 +352,7 @@ BAudioFileStream::Channel()
* public BADCSource * public BADCSource
*************************************************************/ *************************************************************/
BADCSource::BADCSource(BMediaChannel *channel, BADCSource::BADCSource(BMediaChannel *channel, mk_time start)
mk_time start)
: :
fEventLock("BADCSource lock") fEventLock("BADCSource lock")
{ {
@@ -386,8 +375,7 @@ BADCSource::GetEvent(BMediaChannel *channel)
BMediaEvent * BMediaEvent *
BADCSource::PeekEvent(BMediaChannel *channel, BADCSource::PeekEvent(BMediaChannel *channel, mk_time asap)
mk_time asap)
{ {
UNIMPLEMENTED(); UNIMPLEMENTED();
return NULL; return NULL;
@@ -395,8 +383,7 @@ BADCSource::PeekEvent(BMediaChannel *channel,
status_t status_t
BADCSource::SeekToTime(BMediaChannel *channel, BADCSource::SeekToTime(BMediaChannel *channel, mk_time time)
mk_time time)
{ {
UNIMPLEMENTED(); UNIMPLEMENTED();
@@ -423,10 +410,7 @@ BADCSource::Channel()
*************************************************************/ *************************************************************/
bool bool
BADCSource::_ReadADC(void *arg, BADCSource::_ReadADC(void *arg, char *buf, uint32 bytes, void *header)
char *buf,
uint32 bytes,
void *header)
{ {
UNIMPLEMENTED(); UNIMPLEMENTED();
@@ -435,9 +419,7 @@ BADCSource::_ReadADC(void *arg,
void void
BADCSource::ReadADC(short *buf, BADCSource::ReadADC(short *buf, int32 frames, audio_buffer_header *header)
int32 frames,
audio_buffer_header *header)
{ {
UNIMPLEMENTED(); UNIMPLEMENTED();
} }
+3 -2
View File
@@ -11,10 +11,11 @@
#ifndef _AUDIO_MODULE_H #ifndef _AUDIO_MODULE_H
#define _AUDIO_MODULE_H #define _AUDIO_MODULE_H
#include <OldMediaModule.h>
#include <OldMediaDefs.h>
#include <File.h> #include <File.h>
#include "OldMediaModule.h"
#include "OldMediaDefs.h"
class BADCStream; class BADCStream;
class BDACStream; class BDACStream;
class BSubscriber; class BSubscriber;
+10 -7
View File
@@ -1,10 +1,13 @@
/*********************************************************************** /*
* AUTHOR: Marcus Overhagen * Copyright 2002, Marcus Overhagen. All Rights Reserved.
* FILE: OldAudioStream.cpp * Distributed under the terms of the MIT License.
* DESCR: */
***********************************************************************/
#include <OldAudioStream.h>
#include "debug.h" #include "OldAudioStream.h"
#include <debug.h>
/************************************************************* /*************************************************************
* public BADCStream * public BADCStream
+3 -1
View File
@@ -8,9 +8,11 @@
#ifndef _AUDIO_STREAM_H #ifndef _AUDIO_STREAM_H
#define _AUDIO_STREAM_H #define _AUDIO_STREAM_H
#include <OldBufferStream.h>
#include <ClassInfo.h> #include <ClassInfo.h>
#include "OldBufferStream.h"
/* ================ /* ================
Class definition for BADCStream and BDACStream Class definition for BADCStream and BDACStream
+12 -9
View File
@@ -1,10 +1,14 @@
/*********************************************************************** /*
* AUTHOR: Marcus Overhagen * Copyright 2002, Marcus Overhagen. All Rights Reserved.
* FILE: OldBufferStream.cpp * Distributed under the terms of the MIT License.
* DESCR: */
***********************************************************************/
#include <OldBufferStream.h>
#include "debug.h" #include "OldBufferStream.h"
#include <debug.h>
#include <new>
/************************************************************* /*************************************************************
* public BAbstractBufferStream * public BAbstractBufferStream
@@ -181,8 +185,7 @@ BBufferStream::operator new(size_t size)
void void
BBufferStream::operator delete(void *stream, BBufferStream::operator delete(void *stream, size_t size)
size_t size)
{ {
UNIMPLEMENTED(); UNIMPLEMENTED();
} }
+10 -7
View File
@@ -1,10 +1,13 @@
/*********************************************************************** /*
* AUTHOR: Marcus Overhagen * Copyright 2002, Marcus Overhagen. All Rights Reserved.
* FILE: OldBufferStreamManager.cpp * Distributed under the terms of the MIT License.
* DESCR: */
***********************************************************************/
#include <OldBufferStreamManager.h>
#include "debug.h" #include "OldBufferStreamManager.h"
#include <debug.h>
/************************************************************* /*************************************************************
* public BBufferStreamManager * public BBufferStreamManager
+3 -1
View File
@@ -8,12 +8,14 @@
#ifndef _BUFFER_STREAM_MANAGER_H #ifndef _BUFFER_STREAM_MANAGER_H
#define _BUFFER_STREAM_MANAGER_H #define _BUFFER_STREAM_MANAGER_H
#include <OldBufferStream.h>
#include <OS.h> #include <OS.h>
#include <SupportDefs.h> #include <SupportDefs.h>
#include <ClassInfo.h> #include <ClassInfo.h>
#include <Locker.h> #include <Locker.h>
#include "OldBufferStream.h"
/* ================ /* ================
Local Declarations Local Declarations
+10 -7
View File
@@ -1,10 +1,13 @@
/*********************************************************************** /*
* AUTHOR: Marcus Overhagen * Copyright 2002, Marcus Overhagen. All Rights Reserved.
* FILE: OldMediaModule.cpp * Distributed under the terms of the MIT License.
* DESCR: */
***********************************************************************/
#include <OldMediaModule.h>
#include "debug.h" #include "OldMediaModule.h"
#include <debug.h>
/************************************************************* /*************************************************************
* public BMediaEvent * public BMediaEvent
+9 -6
View File
@@ -1,11 +1,14 @@
/*********************************************************************** /*
* AUTHOR: Marcus Overhagen * Copyright 2002, Marcus Overhagen. All Rights Reserved.
* FILE: OldSubscriber.cpp * Distributed under the terms of the MIT License.
* DESCR: */
***********************************************************************/
#include <OldSubscriber.h>
#include "OldSubscriber.h"
#include "debug.h" #include "debug.h"
/************************************************************* /*************************************************************
* public BSubscriber * public BSubscriber
*************************************************************/ *************************************************************/
+2 -1
View File
@@ -13,7 +13,8 @@
#include <MediaDefs.h> #include <MediaDefs.h>
#include <ClassInfo.h> #include <ClassInfo.h>
#include <OldBufferStream.h>
#include "OldBufferStream.h"
/* ================ /* ================
declarations declarations