Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Stefan Strogin
flac
Commits
f12edc64
Commit
f12edc64
authored
Oct 11, 2002
by
Josh Coalson
Browse files
fix assertion bug
parent
64df7151
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/libFLAC/format.c
View file @
f12edc64
...
...
@@ -243,7 +243,10 @@ unsigned FLAC__format_get_max_rice_partition_order_from_blocksize_limited_max_an
while
(
max_rice_partition_order
>
0
&&
(
blocksize
>>
max_rice_partition_order
)
<=
predictor_order
)
max_rice_partition_order
--
;
FLAC__ASSERT
(
blocksize
>>
max_rice_partition_order
>
predictor_order
);
FLAC__ASSERT
(
(
max_rice_partition_order
==
0
&&
blocksize
>=
predictor_order
)
||
(
max_rice_partition_order
>
0
&&
blocksize
>>
max_rice_partition_order
>
predictor_order
)
);
return
max_rice_partition_order
;
}
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment