mirror of
https://github.com/saitohirga/WSJT-X.git
synced 2024-11-23 20:58:55 -05:00
Remove redundant comparison.
git-svn-id: svn+ssh://svn.code.sf.net/p/wsjt/wsjt/branches/wsjtx@5724 ab8295b8-cf94-4d9e-aec4-7959e3be5d79
This commit is contained in:
parent
4f7eb39087
commit
8ed8b9eb13
@ -79,11 +79,7 @@ int jelinek(
|
|||||||
// only 50 bits are not 0's.
|
// only 50 bits are not 0's.
|
||||||
if( depth < 56 ) {
|
if( depth < 56 ) {
|
||||||
encstate=encstate<<1;
|
encstate=encstate<<1;
|
||||||
}
|
ENCODE(lsym,encstate); // get channel symbols associated with the 0 branch
|
||||||
|
|
||||||
// get channel symbols associated with the 0 branch
|
|
||||||
if( depth < 56 ) {
|
|
||||||
ENCODE(lsym,encstate);
|
|
||||||
} else {
|
} else {
|
||||||
ENCODE(lsym,encstate<<(depth-55));
|
ENCODE(lsym,encstate<<(depth-55));
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user