Initial commit: TXW82x FPV v2.7.0.7-42229 SDK + project sources

This commit is contained in:
2026-07-06 11:30:13 +08:00
commit e76462eeb7
3451 changed files with 1415300 additions and 0 deletions

View File

@@ -0,0 +1,20 @@
#ifndef __ENCODER_AUDIO_H
#define __ENCODER_AUDIO_H
struct audio_encoder {
struct stream *output;
int format;
struct frame_exchanger *ex;
volatile int running;
};
void * file_audio_init_ret(void);
void * rtp_audio_init_ret(void);
void *get_audio_ex(struct audio_encoder *en);
int rtp_audio_init(void);
#endif