Quellcodebibliothek Statistik Leitseite products/Sources/formale Sprachen/C/Firefox/third_party/pipewire/spa/param/audio/   (Firefox Browser Version 153.0.1©)  Datei vom 27.6.2026 mit Größe 1 kB image not shown  

Quelle  ape-utils.h

  Sprache: C
 

/* Simple Plugin API */
/* SPDX-FileCopyrightText: Copyright © 2023 Wim Taymans */
/* SPDX-License-Identifier: MIT */

#ifndef SPA_AUDIO_APE_UTILS_H
#define SPA_AUDIO_APE_UTILS_H

#ifdef __cplusplus
extern "C" {
#endif

/**
 * \addtogroup spa_param
 * \{
 */


#include <spa/pod/parser.h>
#include <spa/pod/builder.h>
#include <spa/param/audio/format.h>
#include <spa/param/format-utils.h>

#ifndef SPA_API_AUDIO_APE_UTILS
 #ifdef SPA_API_IMPL
  #define SPA_API_AUDIO_APE_UTILS SPA_API_IMPL
 #else
  #define SPA_API_AUDIO_APE_UTILS static inline
 #endif
#endif

SPA_API_AUDIO_APE_UTILS int
spa_format_audio_ape_parse(const struct spa_pod *format, struct spa_audio_info_ape *info)
{
 int res;
 res = spa_pod_parse_object(format,
   SPA_TYPE_OBJECT_Format, NULL,
   SPA_FORMAT_AUDIO_rate,  SPA_POD_OPT_Int(&info->rate),
   SPA_FORMAT_AUDIO_channels, SPA_POD_OPT_Int(&info->channels));
 return res;
}

SPA_API_AUDIO_APE_UTILS struct spa_pod *
spa_format_audio_ape_build(struct spa_pod_builder *builder, uint32_t id,
      const struct spa_audio_info_ape *info)
{
 struct spa_pod_frame f;
 spa_pod_builder_push_object(builder, &f, SPA_TYPE_OBJECT_Format, id);
 spa_pod_builder_add(builder,
   SPA_FORMAT_mediaType,  SPA_POD_Id(SPA_MEDIA_TYPE_audio),
   SPA_FORMAT_mediaSubtype, SPA_POD_Id(SPA_MEDIA_SUBTYPE_ape),
   SPA_FORMAT_AUDIO_format, SPA_POD_Id(SPA_AUDIO_FORMAT_ENCODED),
   0);
 if (info->rate != 0)
  spa_pod_builder_add(builder,
   SPA_FORMAT_AUDIO_rate,  SPA_POD_Int(info->rate), 0);
 if (info->channels != 0)
  spa_pod_builder_add(builder,
   SPA_FORMAT_AUDIO_channels, SPA_POD_Int(info->channels), 0);
 return (struct spa_pod*)spa_pod_builder_pop(builder, &f);
}

/**
 * \}
 */


#ifdef __cplusplus
}  /* extern "C" */
#endif

#endif /* SPA_AUDIO_APE_UTILS_H */

Messung V0.5 in Prozent
C=91 H=100 G=95

¤ Dauer der Verarbeitung: 0.12 Sekunden  (vorverarbeitet am  2026-08-25) ¤

*© Formatika GbR, Deutschland






Wurzel

Suchen

PVS Prover

Isabelle Prover

NIST Cobol Testsuite

Cephes Mathematical Library

Vienna Development Method

Haftungshinweis

Die Informationen auf dieser Webseite wurden nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit, noch Qualität der bereit gestellten Informationen zugesichert.

Bemerkung:

Die farbliche Syntaxdarstellung und die Messung sind noch experimentell.