mirror of
https://gitlab.freedesktop.org/pipewire/pipewire.git
synced 2026-05-31 21:38:19 -04:00
Including C headers inside of `extern "C"` breaks use from C++. Hoist the includes of standard C headers above the block so we don't try to mangle the stdlib. I initially tried to scope this with a targeted change but it's too hard to do correctly that way. This way, we avoid whack-a-mole. Firefox is working around this in their e21461b7b8b39cc31ba53c47d4f6f310c673ff2f commit. Bug: https://bugzilla.mozilla.org/1953080
72 lines
1.7 KiB
C
72 lines
1.7 KiB
C
/* Simple Plugin API */
|
|
/* SPDX-FileCopyrightText: Copyright © 2018 Wim Taymans */
|
|
/* SPDX-License-Identifier: MIT */
|
|
|
|
#ifndef SPA_PARAM_AUDIO_FORMAT_H
|
|
#define SPA_PARAM_AUDIO_FORMAT_H
|
|
|
|
#include <spa/param/format.h>
|
|
#include <spa/param/audio/raw.h>
|
|
#include <spa/param/audio/dsp.h>
|
|
#include <spa/param/audio/iec958.h>
|
|
#include <spa/param/audio/dsd.h>
|
|
#include <spa/param/audio/mp3.h>
|
|
#include <spa/param/audio/aac.h>
|
|
#include <spa/param/audio/vorbis.h>
|
|
#include <spa/param/audio/wma.h>
|
|
#include <spa/param/audio/ra.h>
|
|
#include <spa/param/audio/amr.h>
|
|
#include <spa/param/audio/alac.h>
|
|
#include <spa/param/audio/flac.h>
|
|
#include <spa/param/audio/ape.h>
|
|
#include <spa/param/audio/opus.h>
|
|
#include <spa/param/audio/ac3.h>
|
|
#include <spa/param/audio/eac3.h>
|
|
#include <spa/param/audio/truehd.h>
|
|
#include <spa/param/audio/dts.h>
|
|
#include <spa/param/audio/mpegh.h>
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
/**
|
|
* \addtogroup spa_param
|
|
* \{
|
|
*/
|
|
|
|
struct spa_audio_info {
|
|
uint32_t media_type;
|
|
uint32_t media_subtype;
|
|
union {
|
|
struct spa_audio_info_raw raw;
|
|
struct spa_audio_info_dsp dsp;
|
|
struct spa_audio_info_iec958 iec958;
|
|
struct spa_audio_info_dsd dsd;
|
|
struct spa_audio_info_mp3 mp3;
|
|
struct spa_audio_info_aac aac;
|
|
struct spa_audio_info_vorbis vorbis;
|
|
struct spa_audio_info_wma wma;
|
|
struct spa_audio_info_ra ra;
|
|
struct spa_audio_info_amr amr;
|
|
struct spa_audio_info_alac alac;
|
|
struct spa_audio_info_flac flac;
|
|
struct spa_audio_info_ape ape;
|
|
struct spa_audio_info_ape opus;
|
|
struct spa_audio_info_ac3 ac3;
|
|
struct spa_audio_info_eac3 eac3;
|
|
struct spa_audio_info_truehd truehd;
|
|
struct spa_audio_info_dts dts;
|
|
struct spa_audio_info_mpegh mpegh;
|
|
} info;
|
|
};
|
|
|
|
/**
|
|
* \}
|
|
*/
|
|
|
|
#ifdef __cplusplus
|
|
} /* extern "C" */
|
|
#endif
|
|
|
|
#endif /* SPA_PARAM_AUDIO_FORMAT_H */
|