hw/elf_ops: Fix a typo
[qemu/ar7.git] / hw / core / stream.c
blob19477d0f2dfafbe494536d8a0bb7e33c8eaeaed5
1 #include "qemu/osdep.h"
2 #include "hw/stream.h"
3 #include "qemu/module.h"
5 size_t
6 stream_push(StreamSink *sink, uint8_t *buf, size_t len, bool eop)
8 StreamSinkClass *k = STREAM_SINK_GET_CLASS(sink);
10 return k->push(sink, buf, len, eop);
13 bool
14 stream_can_push(StreamSink *sink, StreamCanPushNotifyFn notify,
15 void *notify_opaque)
17 StreamSinkClass *k = STREAM_SINK_GET_CLASS(sink);
19 return k->can_push ? k->can_push(sink, notify, notify_opaque) : true;
22 static const TypeInfo stream_sink_info = {
23 .name = TYPE_STREAM_SINK,
24 .parent = TYPE_INTERFACE,
25 .class_size = sizeof(StreamSinkClass),
29 static void stream_sink_register_types(void)
31 type_register_static(&stream_sink_info);
34 type_init(stream_sink_register_types)