mirror of
https://gitlab.freedesktop.org/pipewire/pipewire.git
synced 2025-10-29 05:40:27 -04:00
SPDX tags make the licensing information easy to understand and clear, and they are machine parseable. See https://spdx.dev for more information.
19 lines
517 B
C
19 lines
517 B
C
/* Spa A2DP codec API */
|
|
/* SPDX-FileCopyrightText: Copyright © 2020 Wim Taymans */
|
|
/* SPDX-License-Identifier: MIT */
|
|
|
|
#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"
|
|
#include "media-codecs.h"
|
|
|
|
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);
|
|
|
|
#endif
|