mirror of
https://github.com/libretro/RetroArch.git
synced 2025-04-02 10:51:52 -04:00
(ffmpeg core) Fix audio buffer size (#16820)
This commit is contained in:
parent
5510181e91
commit
33d9def3b3
1 changed files with 1 additions and 1 deletions
|
@ -615,7 +615,7 @@ void CORE_PREFIX(retro_run)(void)
|
|||
static bool last_l;
|
||||
static bool last_r;
|
||||
double min_pts;
|
||||
int16_t audio_buffer[2048];
|
||||
int16_t audio_buffer[media.sample_rate / 20];
|
||||
bool left, right, up, down, l, r;
|
||||
int16_t ret = 0;
|
||||
size_t to_read_frames = 0;
|
||||
|
|
Loading…
Add table
Reference in a new issue