Increase audio samples size for O3DS, to account for bigger packets sometimes

This commit is contained in:
Lorenzooone 2024-06-22 14:30:12 +02:00
parent 950bab462e
commit a602b0e6f7

View File

@ -64,9 +64,9 @@
#define MAX_IN_VIDEO_SIZE (MAX_IN_VIDEO_WIDTH * MAX_IN_VIDEO_HEIGHT)
#define MAX_IN_VIDEO_BPP_SIZE IN_VIDEO_BPP_SIZE_3DS
#define O3DS_SAMPLES_IN 1096
#define O3DS_SAMPLES_IN (1096 * 2) // This one can go beyond the normal amount, so factor in a buffer of sorts. 2x is way more than needed, but better being safe than sorry!
#define N3DSXL_SAMPLES_IN 1096
#define DS_SAMPLES_IN 1096
#define MAX_SAMPLES_IN N3DSXL_SAMPLES_IN
#define MAX_SAMPLES_IN O3DS_SAMPLES_IN
#endif