mirror of
https://github.com/DrKLO/Telegram.git
synced 2024-12-23 06:50:36 +01:00
17 lines
304 B
C
17 lines
304 B
C
|
#pragma once
|
||
|
|
||
|
#include <cinttypes>
|
||
|
#include <cstring>
|
||
|
|
||
|
namespace tgcalls {
|
||
|
struct AudioFrame {
|
||
|
const int16_t *audio_samples;
|
||
|
size_t num_samples;
|
||
|
size_t bytes_per_sample;
|
||
|
size_t num_channels;
|
||
|
uint32_t samples_per_sec;
|
||
|
int64_t elapsed_time_ms;
|
||
|
int64_t ntp_time_ms;
|
||
|
};
|
||
|
} // namespace tgcalls
|