1 --- player.c 2018-02-10 23:53:38.627091352 +0100
2 +++ player.c 2018-02-10 23:54:46.672519217 +0100
7 - char buf[PCM_BUF_SIZE];
8 + char *const buf = xmalloc (PCM_BUF_SIZE);
10 struct sound_params new_sound_params;
11 bool sound_params_change = false;
13 status_msg ("Playing...");
16 - decoded = f->decode (decoder_data, buf, sizeof(buf),
17 + decoded = f->decode (decoder_data, buf, PCM_BUF_SIZE,
22 precache.f->close (precache.decoder_data);
23 precache_reset (&precache);
28 #if !defined(NDEBUG) && defined(DEBUG)