mirror of
https://github.com/ossrs/srs.git
synced 2025-03-09 15:49:59 +00:00
update readme
This commit is contained in:
parent
1d3621dc23
commit
527abe2157
4 changed files with 12 additions and 4 deletions
|
@ -1281,11 +1281,11 @@ int64_t TSPayloadPES::decode_33bits_int(int64_t& temp)
|
|||
// marker_bit 1bit
|
||||
temp = temp >> 1;
|
||||
// PTS [29..15] 15bits, 15zero, 29-15+1one
|
||||
ret |= temp & 0x3fff8000;
|
||||
ret |= temp & 0x3fff8000LL;
|
||||
// marker_bit 1bit
|
||||
temp = temp >> 1;
|
||||
// PTS [32..30] 3bits
|
||||
ret |= temp & 0x1c0000000;
|
||||
ret |= temp & 0x1c0000000LL;
|
||||
|
||||
temp = temp >> 33;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue