9dec231042
into smaller parts: media_addon_server: * Removed (broken) use of (broken and inefficient) home-brewn Map, and List classes. This also fixes a crash on shutdown when used with the malloc_debug implementation. It's using stl::vector, and stl::map now instead. _shared_buffer_list: * Renamed _shared_buffer_list to SharedBufferList, and put it into the BPrivate namespace. Also, made a class out of it. * Separated shared buffer list creation from cloning. * Enlarged maximum number of buffers to something that is not that evil, but actually uses the space it has (ie. is a useful multiple of shared_buffer_info that fills a multiple of B_PAGE_SIZE as much as possible). * No longer drops into the debugger if the * The list that is currently used is very inefficient for the features it provides though (no change there). _buffer_id_cache: * Renamed to BufferCache, and put it into the private namespace * It now deletes its buffers on deletion; since the BBufferConsumer will be gone, too, at this point, there is little chance that there are still buffers in use. * Also, it's now using std::map instead of the (see above) Map class. BBuffer: * Got rid of the fBufferID member. Misc.: * Got rid of the global "team" variable; the media kit is now using the private app kit's current_team() now. * Added a lot of missing error checks (mostly memory allocations). * Renamed fields like "flavorid" to flavor_id, renamed "dfi_*" fields to something more detailed. * Moved ServerInterface.h from src/servers/media/ to headers/private/media. * Notifications.h was not self contained. * Added missing licenses. * Lots of cleanups, and coding style fixes. What this doesn't fix: * Bug #4954 which started all this (this comes next, though) * Deinitialization is broken, as the PortPool is uninitialized too early, and still used afterwards. * The strange add-on monitoring code in the media_addon_server git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@34500 a95241bf-73f2-0310-859d-f6bbb57e9c96
157 lines
5.3 KiB
C++
157 lines
5.3 KiB
C++
/*
|
|
* Copyright 2009, Haiku Inc. All Rights Reserved.
|
|
* Distributed under the terms of the MIT License.
|
|
*/
|
|
#ifndef _BUFFER_CONSUMER_H
|
|
#define _BUFFER_CONSUMER_H
|
|
|
|
|
|
#include <MediaDefs.h>
|
|
#include <MediaNode.h>
|
|
|
|
|
|
class BBuffer;
|
|
class BBufferGroup;
|
|
class BRegion;
|
|
|
|
namespace BPrivate {
|
|
class BufferCache;
|
|
namespace media {
|
|
class BMediaRosterEx;
|
|
}
|
|
}
|
|
|
|
|
|
class BBufferConsumer : public virtual BMediaNode {
|
|
protected:
|
|
virtual ~BBufferConsumer();
|
|
|
|
public:
|
|
media_type ConsumerType();
|
|
|
|
static status_t RegionToClipData(const BRegion* region,
|
|
int32* format, int32* size, void* data);
|
|
|
|
protected:
|
|
explicit BBufferConsumer(media_type type);
|
|
|
|
static void NotifyLateProducer(
|
|
const media_source& whatSource,
|
|
bigtime_t howMuch,
|
|
bigtime_t performanceTime);
|
|
status_t SetVideoClippingFor(const media_source& output,
|
|
const media_destination& destination,
|
|
const int16* shorts, int32 shortCount,
|
|
const media_video_display_info& display,
|
|
void* userData, int32* changeTag,
|
|
void* _reserved = NULL);
|
|
status_t SetOutputEnabled(const media_source& source,
|
|
const media_destination& destination,
|
|
bool enabled, void* userData,
|
|
int32* changeTag, void* _reserved = NULL);
|
|
status_t RequestFormatChange(const media_source& source,
|
|
const media_destination& destination,
|
|
const media_format& toFormat,
|
|
void* userData, int32* changeTag,
|
|
void* _reserved = NULL);
|
|
status_t RequestAdditionalBuffer(
|
|
const media_source& source,
|
|
BBuffer* previousBuffer,
|
|
void* _reserved = NULL);
|
|
status_t RequestAdditionalBuffer(
|
|
const media_source& source,
|
|
bigtime_t startTime,
|
|
void* _reserved = NULL);
|
|
status_t SetOutputBuffersFor(const media_source& source,
|
|
const media_destination& destination,
|
|
BBufferGroup* group, void* userData,
|
|
int32* changeTag, bool willReclaim = false,
|
|
void* _reserved = NULL);
|
|
status_t SendLatencyChange(const media_source& source,
|
|
const media_destination& destination,
|
|
bigtime_t newLatency, uint32 flags = 0);
|
|
|
|
protected:
|
|
virtual status_t HandleMessage(int32 message, const void* data,
|
|
size_t size);
|
|
|
|
virtual status_t AcceptFormat(
|
|
const media_destination& destination,
|
|
media_format* format) = 0;
|
|
virtual status_t GetNextInput(int32* cookie,
|
|
media_input* _input) = 0;
|
|
virtual void DisposeInputCookie(int32 cookie) = 0;
|
|
virtual void BufferReceived(BBuffer* buffer) = 0;
|
|
virtual void ProducerDataStatus(
|
|
const media_destination& forWhom,
|
|
int32 status,
|
|
bigtime_t atPerformanceTime) = 0;
|
|
virtual status_t GetLatencyFor(const media_destination& forWhom,
|
|
bigtime_t* _latency,
|
|
media_node_id* _timesource) = 0;
|
|
virtual status_t Connected(const media_source& producer,
|
|
const media_destination& where,
|
|
const media_format& withFormat,
|
|
media_input* _input) = 0;
|
|
virtual void Disconnected(const media_source& producer,
|
|
const media_destination& where) = 0;
|
|
virtual status_t FormatChanged(const media_source& producer,
|
|
const media_destination& consumer,
|
|
int32 changeTag,
|
|
const media_format& format) = 0;
|
|
|
|
virtual status_t SeekTagRequested(
|
|
const media_destination& destination,
|
|
bigtime_t targetTime, uint32 flags,
|
|
media_seek_tag* _seekTag,
|
|
bigtime_t* _taggedTime, uint32* _flags);
|
|
|
|
private:
|
|
friend class BMediaNode;
|
|
friend class BBufferProducer;
|
|
friend class BMediaRoster;
|
|
friend class BPrivate::media::BMediaRosterEx;
|
|
|
|
BBufferConsumer();
|
|
BBufferConsumer(const BBufferConsumer& other);
|
|
BBufferConsumer& operator=(const BBufferConsumer& other);
|
|
|
|
// deprecated methods following
|
|
static status_t SetVideoClippingFor(const media_source& output,
|
|
const int16* shorts, int32 shortCount,
|
|
const media_video_display_info& display,
|
|
int32* changeTag);
|
|
static status_t RequestFormatChange(const media_source& source,
|
|
const media_destination& destination,
|
|
media_format* toFormat, int32* changeTag);
|
|
static status_t SetOutputEnabled(const media_source& source,
|
|
bool enabled, int32* changeTag);
|
|
|
|
status_t _Reserved_BufferConsumer_0(void*);
|
|
// used for SeekTagRequested()
|
|
virtual status_t _Reserved_BufferConsumer_1(void*);
|
|
virtual status_t _Reserved_BufferConsumer_2(void*);
|
|
virtual status_t _Reserved_BufferConsumer_3(void*);
|
|
virtual status_t _Reserved_BufferConsumer_4(void*);
|
|
virtual status_t _Reserved_BufferConsumer_5(void*);
|
|
virtual status_t _Reserved_BufferConsumer_6(void*);
|
|
virtual status_t _Reserved_BufferConsumer_7(void*);
|
|
virtual status_t _Reserved_BufferConsumer_8(void*);
|
|
virtual status_t _Reserved_BufferConsumer_9(void*);
|
|
virtual status_t _Reserved_BufferConsumer_10(void*);
|
|
virtual status_t _Reserved_BufferConsumer_11(void*);
|
|
virtual status_t _Reserved_BufferConsumer_12(void*);
|
|
virtual status_t _Reserved_BufferConsumer_13(void*);
|
|
virtual status_t _Reserved_BufferConsumer_14(void*);
|
|
virtual status_t _Reserved_BufferConsumer_15(void*);
|
|
|
|
private:
|
|
media_type fConsumerType;
|
|
BPrivate::BufferCache* fBufferCache;
|
|
BBufferGroup* fDeleteBufferGroup;
|
|
uint32 _reserved[14];
|
|
};
|
|
|
|
|
|
#endif // _BUFFER_CONSUMER_H
|