mirror of
https://gitlab.freedesktop.org/pipewire/pipewire.git
synced 2025-11-18 07:00:06 -05: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
585 B
C
19 lines
585 B
C
/* Simple Plugin API */
|
|
/* SPDX-FileCopyrightText: Copyright © 2021 Wim Taymans */
|
|
/* SPDX-FileCopyrightText: Copyright © 2022 Asymptotic Inc. */
|
|
/* SPDX-License-Identifier: MIT */
|
|
|
|
#ifndef SPA_AUDIO_COMPRESSED_H
|
|
#define SPA_AUDIO_COMPRESSED_H
|
|
|
|
#include <spa/param/audio/aac.h>
|
|
#include <spa/param/audio/alac.h>
|
|
#include <spa/param/audio/amr.h>
|
|
#include <spa/param/audio/ape.h>
|
|
#include <spa/param/audio/flac.h>
|
|
#include <spa/param/audio/mp3.h>
|
|
#include <spa/param/audio/ra.h>
|
|
#include <spa/param/audio/vorbis.h>
|
|
#include <spa/param/audio/wma.h>
|
|
|
|
#endif /* SPA_AUDIO_COMPRESSED_H */
|