* Copyright 2002-2015, Haiku Inc. All Rights Reserved.
* Distributed under the terms of the MIT License.
*/
#include <MediaDefs.h>
#include <MediaRoster.h>
#include <SupportDefs.h>
#include "MediaDebug.h"
status_t
BMediaRoster::SetRealtimeFlags(uint32 enabled)
{
UNIMPLEMENTED();
return B_ERROR;
}
status_t
BMediaRoster::GetRealtimeFlags(uint32* _enabled)
{
UNIMPLEMENTED();
return B_ERROR;
}
status_t
BMediaRoster::ParseCommand(BMessage& reply)
{
UNIMPLEMENTED();
return B_ERROR;
}
status_t
BMediaRoster::GetDefaultInfo(media_node_id forDefault, BMessage& config)
{
UNIMPLEMENTED();
return B_ERROR;
}
status_t
BMediaRoster::SetRunningDefault(media_node_id forDefault,
const media_node& node)
{
UNIMPLEMENTED();
return B_ERROR;
}
status_t
BMediaRoster::SetOutputBuffersFor(const media_source& output,
BBufferGroup* group, bool willReclaim)
{
UNIMPLEMENTED();
debugger("BMediaRoster::SetOutputBuffersFor missing\n");
return B_ERROR;
}
status_t launch_media_server(uint32 flags);
status_t media_realtime_init_image(image_id image, uint32 flags);
status_t media_realtime_init_thread(thread_id thread, size_t stack_used,
uint32 flags);
status_t
launch_media_server(uint32 flags)
{
return launch_media_server(0, NULL, NULL, flags);
}
status_t
media_realtime_init_image(image_id image, uint32 flags)
{
UNIMPLEMENTED();
return B_OK;
}
status_t
media_realtime_init_thread(thread_id thread, size_t stack_used, uint32 flags)
{
UNIMPLEMENTED();
return B_OK;
}