mirror of
https://github.com/DigitalDevices/dddvb.git
synced 2023-10-10 13:37:43 +02:00
add ULL
This commit is contained in:
parent
bed4be534a
commit
6b0feea253
@ -649,8 +649,8 @@ static int get_ber_s(struct stv *state, u32 *ber_numerator,
|
|||||||
return -1;
|
return -1;
|
||||||
|
|
||||||
if ((regs[0] & 0x80) == 0) {
|
if ((regs[0] & 0x80) == 0) {
|
||||||
state->last_ber_denominator = 1 << ((state->ber_scale * 2) +
|
state->last_ber_denominator = 1ULL << ((state->ber_scale * 2) +
|
||||||
10 + 3);
|
10 + 3);
|
||||||
state->last_ber_numerator = ((u32)(regs[0] & 0x7f) << 16) |
|
state->last_ber_numerator = ((u32)(regs[0] & 0x7f) << 16) |
|
||||||
((u32)regs[1] << 8) | regs[2];
|
((u32)regs[1] << 8) | regs[2];
|
||||||
if (state->last_ber_numerator < 256 && state->ber_scale < 6) {
|
if (state->last_ber_numerator < 256 && state->ber_scale < 6) {
|
||||||
|
Loading…
Reference in New Issue
Block a user