2023-02-08 18:12:00 +01:00
|
|
|
/* Spa A2DP codec API */
|
|
|
|
|
/* SPDX-FileCopyrightText: Copyright © 2020 Wim Taymans */
|
|
|
|
|
/* SPDX-License-Identifier: MIT */
|
2021-09-01 00:33:43 +03:00
|
|
|
|
|
|
|
|
#ifndef SPA_BLUEZ5_CODEC_LOADER_H_
|
|
|
|
|
#define SPA_BLUEZ5_CODEC_LOADER_H_
|
|
|
|
|
|
|
|
|
|
#include <stdint.h>
|
|
|
|
|
#include <stddef.h>
|
|
|
|
|
|
|
|
|
|
#include <spa/support/plugin-loader.h>
|
|
|
|
|
|
|
|
|
|
#include "a2dp-codec-caps.h"
|
2022-06-15 17:24:41 +02:00
|
|
|
#include "media-codecs.h"
|
2021-09-01 00:33:43 +03:00
|
|
|
|
2022-06-15 17:24:41 +02:00
|
|
|
const struct media_codec * const *load_media_codecs(struct spa_plugin_loader *loader, struct spa_log *log);
|
|
|
|
|
void free_media_codecs(const struct media_codec * const *media_codecs);
|
2021-09-01 00:33:43 +03:00
|
|
|
|
|
|
|
|
#endif
|