2016-01-27 02:17:29 +08:00
|
|
|
#include "qemu/osdep.h"
|
2013-02-04 22:40:22 +08:00
|
|
|
#include "hw/stream.h"
|
2019-05-23 22:35:07 +08:00
|
|
|
#include "qemu/module.h"
|
2012-08-10 11:16:11 +08:00
|
|
|
|
2013-04-16 08:27:16 +08:00
|
|
|
size_t
|
2020-09-10 15:01:27 +08:00
|
|
|
stream_push(StreamSink *sink, uint8_t *buf, size_t len, bool eop)
|
2012-08-10 11:16:11 +08:00
|
|
|
{
|
2020-09-10 15:01:27 +08:00
|
|
|
StreamSinkClass *k = STREAM_SINK_GET_CLASS(sink);
|
2012-08-10 11:16:11 +08:00
|
|
|
|
2020-05-06 16:25:09 +08:00
|
|
|
return k->push(sink, buf, len, eop);
|
2013-04-16 08:27:16 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
2020-09-10 15:01:27 +08:00
|
|
|
stream_can_push(StreamSink *sink, StreamCanPushNotifyFn notify,
|
2013-04-16 08:27:16 +08:00
|
|
|
void *notify_opaque)
|
|
|
|
{
|
2020-09-10 15:01:27 +08:00
|
|
|
StreamSinkClass *k = STREAM_SINK_GET_CLASS(sink);
|
2013-04-16 08:27:16 +08:00
|
|
|
|
|
|
|
return k->can_push ? k->can_push(sink, notify, notify_opaque) : true;
|
2012-08-10 11:16:11 +08:00
|
|
|
}
|
|
|
|
|
2020-09-10 15:01:27 +08:00
|
|
|
static const TypeInfo stream_sink_info = {
|
|
|
|
.name = TYPE_STREAM_SINK,
|
2012-08-10 11:16:11 +08:00
|
|
|
.parent = TYPE_INTERFACE,
|
2020-09-10 15:01:27 +08:00
|
|
|
.class_size = sizeof(StreamSinkClass),
|
2012-08-10 11:16:11 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
|
2020-09-10 15:01:27 +08:00
|
|
|
static void stream_sink_register_types(void)
|
2012-08-10 11:16:11 +08:00
|
|
|
{
|
2020-09-10 15:01:27 +08:00
|
|
|
type_register_static(&stream_sink_info);
|
2012-08-10 11:16:11 +08:00
|
|
|
}
|
|
|
|
|
2020-09-10 15:01:27 +08:00
|
|
|
type_init(stream_sink_register_types)
|