* 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
* FILE: OldAudioModule.cpp
* DESCR:
***********************************************************************/
#include <OldAudioModule.h>
#include "debug.h"
/*
* Copyright 2002, Marcus Overhagen. All Rights Reserved.
* Distributed under the terms of the MIT License.
*/
#include "OldAudioModule.h"
#include <debug.h>
/*************************************************************
* public BAudioEvent
*************************************************************/
BAudioEvent::BAudioEvent(int32 frames,
bool stereo,
float *samples)
BAudioEvent::BAudioEvent(int32 frames, bool stereo, float *samples)
{
UNIMPLEMENTED();
}
@@ -108,9 +109,7 @@ BAudioEvent::SetDestination(int32)
bool
BAudioEvent::MixIn(float *dst,
int32 frames,
mk_time time)
BAudioEvent::MixIn(float *dst, int32 frames, mk_time time)
{
UNIMPLEMENTED();
@@ -224,8 +223,7 @@ BDACRenderer::Wakeup()
void
BDACRenderer::TransportChanged(mk_time time,
mk_rate rate,
BDACRenderer::TransportChanged(mk_time time, mk_rate rate,
transport_status status)
{
UNIMPLEMENTED();
@@ -252,10 +250,7 @@ BDACRenderer::Channel()
bool
BDACRenderer::_WriteDAC(void *arg,
char *buf,
uint32 bytes,
void *header)
BDACRenderer::_WriteDAC(void *arg, char *buf, uint32 bytes, void *header)
{
UNIMPLEMENTED();
@@ -264,9 +259,7 @@ BDACRenderer::_WriteDAC(void *arg,
bool
BDACRenderer::WriteDAC(short *buf,
int32 frames,
audio_buffer_header *header)
BDACRenderer::WriteDAC(short *buf, int32 frames, audio_buffer_header *header)
{
UNIMPLEMENTED();
@@ -294,8 +287,7 @@ BDACRenderer::MixOutput(short *dst)
* public BAudioFileStream
*************************************************************/
BAudioFileStream::BAudioFileStream(BMediaChannel *channel,
BFile *file,
BAudioFileStream::BAudioFileStream(BMediaChannel *channel, BFile *file,
mk_time start)
{
UNIMPLEMENTED();
@@ -317,8 +309,7 @@ BAudioFileStream::GetEvent(BMediaChannel *channel)
BMediaEvent *
BAudioFileStream::PeekEvent(BMediaChannel *channel,
mk_time asap)
BAudioFileStream::PeekEvent(BMediaChannel *channel, mk_time asap)
{
UNIMPLEMENTED();
return NULL;
@@ -326,8 +317,7 @@ BAudioFileStream::PeekEvent(BMediaChannel *channel,
status_t
BAudioFileStream::SeekToTime(BMediaChannel *channel,
mk_time time)
BAudioFileStream::SeekToTime(BMediaChannel *channel, mk_time time)
{
UNIMPLEMENTED();
@@ -362,8 +352,7 @@ BAudioFileStream::Channel()
* public BADCSource
*************************************************************/
BADCSource::BADCSource(BMediaChannel *channel,
mk_time start)
BADCSource::BADCSource(BMediaChannel *channel, mk_time start)
:
fEventLock("BADCSource lock")
{
@@ -386,8 +375,7 @@ BADCSource::GetEvent(BMediaChannel *channel)
BMediaEvent *
BADCSource::PeekEvent(BMediaChannel *channel,
mk_time asap)
BADCSource::PeekEvent(BMediaChannel *channel, mk_time asap)
{
UNIMPLEMENTED();
return NULL;
@@ -395,8 +383,7 @@ BADCSource::PeekEvent(BMediaChannel *channel,
status_t
BADCSource::SeekToTime(BMediaChannel *channel,
mk_time time)
BADCSource::SeekToTime(BMediaChannel *channel, mk_time time)
{
UNIMPLEMENTED();
@@ -423,10 +410,7 @@ BADCSource::Channel()
*************************************************************/
bool
BADCSource::_ReadADC(void *arg,
char *buf,
uint32 bytes,
void *header)
BADCSource::_ReadADC(void *arg, char *buf, uint32 bytes, void *header)
{
UNIMPLEMENTED();
@@ -435,9 +419,7 @@ BADCSource::_ReadADC(void *arg,
void
BADCSource::ReadADC(short *buf,
int32 frames,
audio_buffer_header *header)
BADCSource::ReadADC(short *buf, int32 frames, audio_buffer_header *header)
{
UNIMPLEMENTED();
}
+3 -2
View File
@@ -11,10 +11,11 @@
#ifndef _AUDIO_MODULE_H
#define _AUDIO_MODULE_H
#include <OldMediaModule.h>
#include <OldMediaDefs.h>
#include <File.h>
#include "OldMediaModule.h"
#include "OldMediaDefs.h"
class BADCStream;
class BDACStream;
class BSubscriber;
+10 -7
View File
@@ -1,10 +1,13 @@
/***********************************************************************
* AUTHOR: Marcus Overhagen
* FILE: OldAudioStream.cpp
* DESCR:
***********************************************************************/
#include <OldAudioStream.h>
#include "debug.h"
/*
* Copyright 2002, Marcus Overhagen. All Rights Reserved.
* Distributed under the terms of the MIT License.
*/
#include "OldAudioStream.h"
#include <debug.h>
/*************************************************************
* public BADCStream
+3 -1
View File
@@ -8,9 +8,11 @@
#ifndef _AUDIO_STREAM_H
#define _AUDIO_STREAM_H
#include <OldBufferStream.h>
#include <ClassInfo.h>
#include "OldBufferStream.h"
/* ================
Class definition for BADCStream and BDACStream
+12 -9
View File
@@ -1,10 +1,14 @@
/***********************************************************************
* AUTHOR: Marcus Overhagen
* FILE: OldBufferStream.cpp
* DESCR:
***********************************************************************/
#include <OldBufferStream.h>
#include "debug.h"
/*
* Copyright 2002, Marcus Overhagen. All Rights Reserved.
* Distributed under the terms of the MIT License.
*/
#include "OldBufferStream.h"
#include <debug.h>
#include <new>
/*************************************************************
* public BAbstractBufferStream
@@ -181,8 +185,7 @@ BBufferStream::operator new(size_t size)
void
BBufferStream::operator delete(void *stream,
size_t size)
BBufferStream::operator delete(void *stream, size_t size)
{
UNIMPLEMENTED();
}
+10 -7
View File
@@ -1,10 +1,13 @@
/***********************************************************************
* AUTHOR: Marcus Overhagen
* FILE: OldBufferStreamManager.cpp
* DESCR:
***********************************************************************/
#include <OldBufferStreamManager.h>
#include "debug.h"
/*
* Copyright 2002, Marcus Overhagen. All Rights Reserved.
* Distributed under the terms of the MIT License.
*/
#include "OldBufferStreamManager.h"
#include <debug.h>
/*************************************************************
* public BBufferStreamManager
+3 -1
View File
@@ -8,12 +8,14 @@
#ifndef _BUFFER_STREAM_MANAGER_H
#define _BUFFER_STREAM_MANAGER_H
#include <OldBufferStream.h>
#include <OS.h>
#include <SupportDefs.h>
#include <ClassInfo.h>
#include <Locker.h>
#include "OldBufferStream.h"
/* ================
Local Declarations
+10 -7
View File
@@ -1,10 +1,13 @@
/***********************************************************************
* AUTHOR: Marcus Overhagen
* FILE: OldMediaModule.cpp
* DESCR:
***********************************************************************/
#include <OldMediaModule.h>
#include "debug.h"
/*
* Copyright 2002, Marcus Overhagen. All Rights Reserved.
* Distributed under the terms of the MIT License.
*/
#include "OldMediaModule.h"
#include <debug.h>
/*************************************************************
* public BMediaEvent
+9 -6
View File
@@ -1,11 +1,14 @@
/***********************************************************************
* AUTHOR: Marcus Overhagen
* FILE: OldSubscriber.cpp
* DESCR:
***********************************************************************/
#include <OldSubscriber.h>
/*
* Copyright 2002, Marcus Overhagen. All Rights Reserved.
* Distributed under the terms of the MIT License.
*/
#include "OldSubscriber.h"
#include "debug.h"
/*************************************************************
* public BSubscriber
*************************************************************/
+2 -1
View File
@@ -13,7 +13,8 @@
#include <MediaDefs.h>
#include <ClassInfo.h>
#include <OldBufferStream.h>
#include "OldBufferStream.h"
/* ================
declarations