mirror of
https://gitlab.com/mbunkus/mkvtoolnix.git
synced 2024-12-23 19:31:44 +00:00
Don't add to undefined variables.
This commit is contained in:
parent
7925bee3d9
commit
e2492a0613
@ -131,7 +131,7 @@ wv_parse_frame(mm_io_c *mm_io,
|
||||
}
|
||||
} else {
|
||||
meta.channel_count += (wphdr.flags & WV_MONO_FLAG) ? 1 : 2;
|
||||
total_bytes += wphdr.ck_size + 8;
|
||||
total_bytes = wphdr.ck_size + 8;
|
||||
|
||||
if (wphdr.flags & WV_FINAL_BLOCK) {
|
||||
mxverb(2, "wavpack_reader: %d chans: %s, %d bytes\n",
|
||||
|
Loading…
Reference in New Issue
Block a user