mirror of
https://github.com/xiph/opus.git
synced 2025-06-02 00:27:43 +00:00
16 lines
No EOL
445 B
C
16 lines
No EOL
445 B
C
#ifndef _DRED_RDOVAE_ENC_H
|
|
#define _DRED_RDOVAE_ENC_H
|
|
|
|
#include "dred_rdovae_enc_data.h"
|
|
|
|
typedef struct {
|
|
float dense2_state[3 * ENC_DENSE2_STATE_SIZE];
|
|
float dense4_state[3 * ENC_DENSE4_STATE_SIZE];
|
|
float dense6_state[3 * ENC_DENSE6_STATE_SIZE];
|
|
float bits_dense_state[BITS_DENSE_STATE_SIZE];
|
|
} RDOVAEEnc;
|
|
|
|
void dred_rdovae_encode_dframe(RDOVAEEnc *enc_state, float *latents, float *initial_state, const float *input);
|
|
|
|
|
|
#endif |