bluez5: Rename codec API from *a2dp* to *media*

The BlueZ Media1 interface will not only be used for A2DP but also for
LE Audio and code related can be shared.
This commit is contained in:
Frédéric Danis 2022-06-15 17:24:41 +02:00 committed by Wim Taymans
parent 64a3edf89e
commit 00d51c3d31
20 changed files with 485 additions and 485 deletions

View file

@ -31,9 +31,9 @@
#include <spa/support/plugin-loader.h>
#include "a2dp-codec-caps.h"
#include "a2dp-codecs.h"
#include "media-codecs.h"
const struct a2dp_codec * const *load_a2dp_codecs(struct spa_plugin_loader *loader, struct spa_log *log);
void free_a2dp_codecs(const struct a2dp_codec * const *a2dp_codecs);
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