more time source function...

git-svn-id: file:///srv/svn/repos/haiku/trunk/current@2353 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
beveloper
2003-01-03 01:51:22 +00:00
parent 50808915da
commit 287f7492c3
13 changed files with 243 additions and 85 deletions
+5 -1
View File
@@ -111,6 +111,9 @@ struct media_node_attribute
};
namespace BPrivate { namespace media { class TimeSourceObject; } }
class BMediaNode
{
protected:
@@ -252,6 +255,7 @@ private:
friend class _BMediaRosterP;
friend class MNodeManager;
friend class BBufferProducer; // for getting _mNodeID
friend class BPrivate::media::TimeSourceObject;
// Deprecated in 4.1
int32 IncrementChangeTag();
@@ -318,7 +322,7 @@ virtual status_t _Reserved_MediaNode_15(void *);
int32 _mChangeCount; // deprecated
int32 _mChangeCountReserved; // deprecated
uint64 fKinds;
media_node_id fTimeSourceID;
media_node_id _unused;
BBufferProducer * fProducerThis;
BBufferConsumer * fConsumerThis;
-1
View File
@@ -23,7 +23,6 @@ struct command_data;
// BMessage based data exchange with the media_server
status_t SendToServer(BMessage *msg);
//status_t QueryServer(BMessage *request, BMessage *reply);
// Raw data based data exchange with the media_server
status_t SendToServer(int32 msgcode, command_data *msg, int size);
-17
View File
@@ -1,17 +0,0 @@
#ifndef _VOLUME_CONTROL_
#define _VOLUME_CONTROL_
/***********************************************************************
* AUTHOR: Marcus Overhagen
* FILE: VolumeControl.h
* DESCR: transitional private volume control functions
***********************************************************************/
namespace MediaKitPrivate {
status_t GetMasterVolume(float *left, float *right);
status_t SetMasterVolume(float left, float right);
} //namespace MediaKitPrivate
#endif