reduced preallocated us_frame_s size

This commit is contained in:
Maxim Devaev 2026-01-03 18:54:56 +02:00
parent 36b539c275
commit b2b1989c5b

View File

@ -36,7 +36,7 @@
us_frame_s *us_frame_init(void) {
us_frame_s *frame;
US_CALLOC(frame, 1);
us_frame_realloc_data(frame, 512 * 1024);
us_frame_realloc_data(frame, 32 * 1024);
frame->dma_fd = -1;
return frame;
}