vgmstream/src/base/mixing_priv.h

67 lines
2.5 KiB
C
Raw Normal View History

2023-07-30 23:47:50 +02:00
#ifndef _MIXING_PRIV_H_
#define _MIXING_PRIV_H_
2024-07-23 22:31:30 +02:00
#include "../streamtypes.h"
2023-07-30 23:47:50 +02:00
#define VGMSTREAM_MAX_MIXING 512
2024-07-23 22:31:30 +02:00
//TODO rename
2023-07-30 23:47:50 +02:00
/* mixing info */
typedef enum {
MIX_SWAP,
MIX_ADD,
MIX_VOLUME,
MIX_LIMIT,
MIX_UPMIX,
MIX_DOWNMIX,
MIX_KILLMIX,
MIX_FADE
} mix_command_t;
typedef struct {
mix_command_t command;
/* common */
int ch_dst;
int ch_src;
float vol;
/* fade envelope */
float vol_start; /* volume from pre to start */
float vol_end; /* volume from end to post */
char shape; /* curve type */
int32_t time_pre; /* position before time_start where vol_start applies (-1 = beginning) */
int32_t time_start; /* fade start position where vol changes from vol_start to vol_end */
int32_t time_end; /* fade end position where vol changes from vol_start to vol_end */
int32_t time_post; /* position after time_end where vol_end applies (-1 = end) */
} mix_command_data;
typedef struct {
int mixing_channels; /* max channels needed to mix */
int output_channels; /* resulting channels after mixing */
2024-07-23 22:31:30 +02:00
bool mixing_on; /* mixing allowed */
2023-07-30 23:47:50 +02:00
int mixing_count; /* mixing number */
size_t mixing_size; /* mixing max */
mix_command_data mixing_chain[VGMSTREAM_MAX_MIXING]; /* effects to apply (could be alloc'ed but to simplify...) */
2024-07-23 22:31:30 +02:00
2023-07-30 23:47:50 +02:00
float* mixbuf; /* internal mixing buffer */
2024-07-23 22:31:30 +02:00
int current_channels; /* state: channels may increase/decrease during ops */
int32_t current_subpos; /* state: current sample pos in the stream */
2023-07-30 23:47:50 +02:00
/* fades only apply at some points, other mixes are active */
2024-07-23 22:31:30 +02:00
bool has_non_fade;
bool has_fade;
} mixer_data_t;
2023-07-30 23:47:50 +02:00
2024-07-23 22:31:30 +02:00
void mixer_op_swap(mixer_data_t* data, int32_t sample_count, mix_command_data* mix);
void mixer_op_add(mixer_data_t* data, int32_t sample_count, mix_command_data* mix);
void mixer_op_volume(mixer_data_t* data, int32_t sample_count, mix_command_data* mix);
void mixer_op_limit(mixer_data_t* data, int32_t sample_count, mix_command_data* mix);
void mixer_op_upmix(mixer_data_t* data, int32_t sample_count, mix_command_data* mix);
void mixer_op_downmix(mixer_data_t* data, int32_t sample_count, mix_command_data* mix);
void mixer_op_killmix(mixer_data_t* data, int32_t sample_count, mix_command_data* mix);
void mixer_op_fade(mixer_data_t* data, int32_t sample_count, mix_command_data* mix);
bool mixer_op_fade_is_active(mixer_data_t* data, int32_t current_start, int32_t current_end);
2023-07-30 23:47:50 +02:00
#endif