- use AMR decoders built from source code; this eliminates the problem with build environments + ensures latest 0.1.6 version is used

This commit is contained in:
2026-02-28 07:32:23 +03:00
parent 226bbe9b0b
commit e07654e2bc
54 changed files with 17003 additions and 11997 deletions

View File

@@ -39,20 +39,9 @@ enum Mode {
};
#endif
struct encoder_state {
void* encCtx;
void* pidSyncCtx;
};
void* Encoder_Interface_init(int dtx);
//WORK
//void Encoder_Interface_init(void* state,int dtx);
void Encoder_Interface_exit(void* state);
int Encoder_Interface_Encode(void* state, enum Mode mode,
const short* speech,
unsigned char* out, int forceSpeech);
int Encoder_Interface_Encode(void* state, enum Mode mode, const short* speech, unsigned char* out, int forceSpeech);
#ifdef __cplusplus
}