X-Git-Url: http://git.efficios.com/?a=blobdiff_plain;f=plugins%2Futils%2Fmuxer%2Fmuxer.c;h=be4522f074cd2c8f53457c8924588a95e0bc456c;hb=9b24b6aa4258079f2b59fa156dd3e070969f6f2a;hp=8fa4ebadab6e2831e4af2d526f4df9cff7911f34;hpb=afd452743c7fcc89246029f68055d6f251c857e6;p=babeltrace.git diff --git a/plugins/utils/muxer/muxer.c b/plugins/utils/muxer/muxer.c index 8fa4ebad..be4522f0 100644 --- a/plugins/utils/muxer/muxer.c +++ b/plugins/utils/muxer/muxer.c @@ -550,7 +550,7 @@ int get_msg_ts_ns(struct muxer_comp *muxer_comp, msg); break; case BT_MESSAGE_TYPE_PACKET_BEGINNING: - if (bt_stream_class_packets_have_default_beginning_clock_snapshot( + if (bt_stream_class_packets_have_beginning_default_clock_snapshot( stream_class)) { clock_snapshot = bt_message_packet_beginning_borrow_default_clock_snapshot_const( msg); @@ -560,7 +560,7 @@ int get_msg_ts_ns(struct muxer_comp *muxer_comp, break; case BT_MESSAGE_TYPE_PACKET_END: - if (bt_stream_class_packets_have_default_end_clock_snapshot( + if (bt_stream_class_packets_have_end_default_clock_snapshot( stream_class)) { clock_snapshot = bt_message_packet_end_borrow_default_clock_snapshot_const( msg); @@ -572,7 +572,7 @@ int get_msg_ts_ns(struct muxer_comp *muxer_comp, case BT_MESSAGE_TYPE_DISCARDED_EVENTS: if (bt_stream_class_discarded_events_have_default_clock_snapshots( stream_class)) { - clock_snapshot = bt_message_discarded_events_borrow_default_beginning_clock_snapshot_const( + clock_snapshot = bt_message_discarded_events_borrow_beginning_default_clock_snapshot_const( msg); } else { goto no_clock_snapshot; @@ -582,7 +582,7 @@ int get_msg_ts_ns(struct muxer_comp *muxer_comp, case BT_MESSAGE_TYPE_DISCARDED_PACKETS: if (bt_stream_class_discarded_packets_have_default_clock_snapshots( stream_class)) { - clock_snapshot = bt_message_discarded_packets_borrow_default_beginning_clock_snapshot_const( + clock_snapshot = bt_message_discarded_packets_borrow_beginning_default_clock_snapshot_const( msg); } else { goto no_clock_snapshot;