Writer: minimize packet padding
[babeltrace.git] / include / babeltrace / ctf-ir / stream-internal.h
index f2ba5d362e90d737ea86ddf849ca3844b7950619..0e0e2498b4d43bf40c0303074a16cb845885b060 100644 (file)
@@ -40,25 +40,18 @@ struct bt_ctf_stream {
        struct bt_object base;
        uint32_t id;
        struct bt_ctf_stream_class *stream_class;
+       GString *name;
+       struct bt_ctf_field *packet_header;
+       struct bt_ctf_field *packet_context;
+
+       /* Writer-specific members. */
        /* Array of pointers to bt_ctf_event for the current packet */
        GPtrArray *events;
-       /* Array of pointers to bt_ctf_field associated with each event */
-       GPtrArray *event_headers;
-       GPtrArray *event_contexts;
        struct ctf_stream_pos pos;
        unsigned int flushed_packet_count;
-       struct bt_ctf_field *packet_header;
-       struct bt_ctf_field *packet_context;
-       struct bt_ctf_field *event_header;
-       struct bt_ctf_field *event_context;
+       uint64_t size;
 };
 
-/* Stream class should be frozen by the caller after creating a stream */
-BT_HIDDEN
-struct bt_ctf_stream *bt_ctf_stream_create(
-               struct bt_ctf_stream_class *stream_class,
-               struct bt_ctf_trace *trace);
-
 BT_HIDDEN
 int bt_ctf_stream_set_fd(struct bt_ctf_stream *stream, int fd);
 
This page took 0.023484 seconds and 4 git commands to generate.