mirror of
https://github.com/DigitalDevices/dddvb.git
synced 2023-10-10 13:37:43 +02:00
simplify check expression
This commit is contained in:
parent
4459f50538
commit
766ca0e652
@ -33,8 +33,10 @@ void proc_ts(int i, uint8_t *buf)
|
|||||||
if (ccin & 0x10) {
|
if (ccin & 0x10) {
|
||||||
if( cc[pid] != 0 ) {
|
if( cc[pid] != 0 ) {
|
||||||
// TODO: 1 repetition allowed
|
// TODO: 1 repetition allowed
|
||||||
if ((((cc[pid] + 1) & 0x0F) != (ccin & 0x0F)) )
|
if ((((cc[pid] + 1) & 0x0F) != (ccin & 0x0F)) ) {
|
||||||
cc_errors += 1;
|
cc_errors += 1;
|
||||||
|
printf("%04x: %u != %u\n", pid, (cc[pid] + 1) & 0x0F, ccin & 0x0F);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
cc[pid] = ccin;
|
cc[pid] = ccin;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user