pipewire/spa/plugins/bluez5/codec-loader.h
Barnabás Pőcze 934ab3036e treewide: use SPDX tags to specify copyright information
SPDX tags make the licensing information easy to understand and clear,
and they are machine parseable.

See https://spdx.dev for more information.
2023-02-16 10:54:48 +00:00

20 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