> compile NEMU

221220000 张三
Linux zzy 5.15.146.1-microsoft-standard-WSL2 #1 SMP Thu Jan 11 04:09:03 UTC 2024 x86_64 x86_64 x86_64 GNU/Linux
 14:21:09 up 4 days,  9:26,  1 user,  load average: 1.26, 0.96, 0.70
This commit is contained in:
tracer-ics2023
2024-09-21 14:21:09 +08:00
committed by zzy
parent ac55d291f7
commit f05dc97e1b

View File

@ -42,8 +42,8 @@ static void audio_callback(void *userdata, uint8_t *stream, int len) {
int32_t out_bound_cnt = read_cnt - to_end_cnt;
memset(stream, 0, len);
if (out_bound_cnt > 0) {
// memcpy(stream, sbuf + pos_read, to_end_cnt);
// memcpy(stream + to_end_cnt, sbuf, out_bound_cnt);
memcpy(stream, sbuf + pos_read, to_end_cnt);
memcpy(stream + to_end_cnt, sbuf, out_bound_cnt);
} else {
memcpy(stream, sbuf + pos_read, read_cnt);
}