2023-02-08 18:12:00 +01:00
|
|
|
/* PipeWire */
|
|
|
|
|
/* SPDX-FileCopyrightText: Copyright © 2022 Wim Taymans */
|
|
|
|
|
/* SPDX-License-Identifier: MIT */
|
2022-03-15 18:16:00 +01:00
|
|
|
|
|
|
|
|
#ifndef PIPEWIRE_AVB_H
|
|
|
|
|
#define PIPEWIRE_AVB_H
|
|
|
|
|
|
2023-07-01 22:52:06 +02:00
|
|
|
#include <stddef.h>
|
|
|
|
|
|
2022-03-15 18:16:00 +01:00
|
|
|
#ifdef __cplusplus
|
|
|
|
|
extern "C" {
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
struct pw_context;
|
|
|
|
|
struct pw_properties;
|
|
|
|
|
struct pw_avb;
|
|
|
|
|
|
|
|
|
|
struct pw_avb *pw_avb_new(struct pw_context *context,
|
|
|
|
|
struct pw_properties *props, size_t user_data_size);
|
|
|
|
|
void pw_avb_destroy(struct pw_avb *avb);
|
|
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
|
} /* extern "C" */
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
#endif /* PIPEWIRE_AVB_H */
|