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