2016-01-26 18:17:29 +00:00
|
|
|
#include "qemu/osdep.h"
|
2013-02-04 14:40:22 +00:00
|
|
|
#include "hw/stream.h"
|
2012-08-10 03:16:11 +00:00
|
|
|
|
2013-04-16 00:27:16 +00:00
|
|
|
size_t
|
2013-04-16 00:28:35 +00:00
|
|
|
stream_push(StreamSlave *sink, uint8_t *buf, size_t len)
|
2012-08-10 03:16:11 +00:00
|
|
|
{
|
|
|
|
StreamSlaveClass *k = STREAM_SLAVE_GET_CLASS(sink);
|
|
|
|
|
2013-04-16 00:28:35 +00:00
|
|
|
return k->push(sink, buf, len);
|
2013-04-16 00:27:16 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
|
|
|
stream_can_push(StreamSlave *sink, StreamCanPushNotifyFn notify,
|
|
|
|
void *notify_opaque)
|
|
|
|
{
|
|
|
|
StreamSlaveClass *k = STREAM_SLAVE_GET_CLASS(sink);
|
|
|
|
|
|
|
|
return k->can_push ? k->can_push(sink, notify, notify_opaque) : true;
|
2012-08-10 03:16:11 +00:00
|
|
|
}
|
|
|
|
|
2013-01-10 15:19:07 +00:00
|
|
|
static const TypeInfo stream_slave_info = {
|
2012-08-10 03:16:11 +00:00
|
|
|
.name = TYPE_STREAM_SLAVE,
|
|
|
|
.parent = TYPE_INTERFACE,
|
|
|
|
.class_size = sizeof(StreamSlaveClass),
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
static void stream_slave_register_types(void)
|
|
|
|
{
|
|
|
|
type_register_static(&stream_slave_info);
|
|
|
|
}
|
|
|
|
|
|
|
|
type_init(stream_slave_register_types)
|