mirror of
https://gitlab.freedesktop.org/pipewire/pipewire.git
synced 2026-04-29 06:46:38 -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
46 lines
888 B
C
46 lines
888 B
C
/* Simple Plugin API */
|
|
/* SPDX-FileCopyrightText: Copyright © 2018 Wim Taymans */
|
|
/* SPDX-License-Identifier: MIT */
|
|
|
|
#ifndef SPA_PARAM_FORMAT_UTILS_H
|
|
#define SPA_PARAM_FORMAT_UTILS_H
|
|
|
|
#include <spa/pod/parser.h>
|
|
#include <spa/param/format.h>
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
|
|
/**
|
|
* \addtogroup spa_param
|
|
* \{
|
|
*/
|
|
|
|
#ifndef SPA_API_FORMAT_UTILS
|
|
#ifdef SPA_API_IMPL
|
|
#define SPA_API_FORMAT_UTILS SPA_API_IMPL
|
|
#else
|
|
#define SPA_API_FORMAT_UTILS static inline
|
|
#endif
|
|
#endif
|
|
|
|
SPA_API_FORMAT_UTILS int
|
|
spa_format_parse(const struct spa_pod *format, uint32_t *media_type, uint32_t *media_subtype)
|
|
{
|
|
return spa_pod_parse_object(format,
|
|
SPA_TYPE_OBJECT_Format, NULL,
|
|
SPA_FORMAT_mediaType, SPA_POD_Id(media_type),
|
|
SPA_FORMAT_mediaSubtype, SPA_POD_Id(media_subtype));
|
|
}
|
|
|
|
/**
|
|
* \}
|
|
*/
|
|
|
|
#ifdef __cplusplus
|
|
} /* extern "C" */
|
|
#endif
|
|
|
|
#endif /* SPA_PARAM_FORMAT_UTILS_H */
|