mirror of
https://github.com/saitohirga/WSJT-X.git
synced 2024-10-31 23:57:10 -04: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.
|
||||
if( depth < 56 ) {
|
||||
encstate=encstate<<1;
|
||||
}
|
||||
|
||||
// get channel symbols associated with the 0 branch
|
||||
if( depth < 56 ) {
|
||||
ENCODE(lsym,encstate);
|
||||
ENCODE(lsym,encstate); // get channel symbols associated with the 0 branch
|
||||
} else {
|
||||
ENCODE(lsym,encstate<<(depth-55));
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user