10#ifndef __SCHEMAS_AUDIO_CLIP_H__
11#define __SCHEMAS_AUDIO_CLIP_H__
16typedef enum BitDepth_v1
29 BitDepth_v1 bit_depth;
35static const cyaml_strval_t bit_depth_strings_v1[] = {
36 {
"16", BIT_DEPTH_16_v1 },
37 {
"24", BIT_DEPTH_24_v1 },
38 {
"32", BIT_DEPTH_32_v1 },
41static const cyaml_schema_field_t audio_clip_fields_schema_v1[] = {
44 YAML_FIELD_STRING_PTR_OPTIONAL (
AudioClip_v1, file_hash),
46 YAML_FIELD_ENUM (
AudioClip_v1, bit_depth, bit_depth_strings_v1),
54static const cyaml_schema_value_t audio_clip_schema_v1 = {
55 YAML_VALUE_PTR_NULLABLE (
AudioClip_v1, audio_clip_fields_schema_v1),