mirror of
https://github.com/morgan9e/UxPlay
synced 2026-04-14 00:04:13 +09:00
add seqnum to audio_decode_struct
This commit is contained in:
@@ -34,7 +34,7 @@ void audio_renderer_init(logger_t *logger, const char* audiosink);
|
||||
void audio_renderer_start(unsigned char* compression_type);
|
||||
void audio_renderer_stop();
|
||||
void audio_renderer_render_buffer(raop_ntp_t *ntp, unsigned char* data, int data_len,
|
||||
uint64_t ntp_time, uint64_t rtp_time);
|
||||
uint64_t ntp_time, uint64_t rtp_time, unsigned short seqnum);
|
||||
void audio_renderer_set_volume(float volume);
|
||||
void audio_renderer_flush();
|
||||
void audio_renderer_destroy();
|
||||
|
||||
@@ -182,7 +182,7 @@ void audio_renderer_start(unsigned char *ct) {
|
||||
}
|
||||
|
||||
void audio_renderer_render_buffer(raop_ntp_t *ntp, unsigned char* data, int data_len, uint64_t ntp_time,
|
||||
uint64_t rtp_time) {
|
||||
uint64_t rtp_time, unsigned short seqnum) {
|
||||
GstBuffer *buffer;
|
||||
bool valid;
|
||||
if (data_len == 0 || renderer == NULL) return;
|
||||
|
||||
Reference in New Issue
Block a user