1
0
Fork 0
forked from len0rd/rockbox

m4a: Fix a warning under GCC 8.

...Not sure why this just cropped up now.

Change-Id: I2318ee929fb5fddbf033680d92f21bba73631db6
This commit is contained in:
Solomon Peachy 2024-06-19 09:21:52 -04:00
parent 2ef10ec734
commit 6f4d0b7eb1

View file

@ -144,7 +144,7 @@ unsigned int m4a_seek(demux_res_t* demux_res, stream_t* stream,
uint32_t* current_sample, uint32_t* lookup_table_idx) uint32_t* current_sample, uint32_t* lookup_table_idx)
{ {
uint32_t i, sample_i; uint32_t i, sample_i;
uint32_t time, time_cnt, time_dur; uint32_t time, time_cnt = 0, time_dur = 0;
uint32_t chunk, chunk_first_sample; uint32_t chunk, chunk_first_sample;
uint32_t offset; uint32_t offset;
uint64_t sound_sample_i; uint64_t sound_sample_i;