mirror of
https://github.com/ossrs/srs.git
synced 2025-02-15 04:42:04 +00:00
fix the long long warning.
This commit is contained in:
parent
3d47fbdc5c
commit
e7fd733dc5
1 changed files with 1 additions and 1 deletions
|
@ -1130,7 +1130,7 @@ int SrsTsAdaptationField::encode(SrsStream* stream)
|
|||
// @see https://github.com/winlinvip/simple-rtmp-server/issues/250#issuecomment-71349370
|
||||
int64_t pcrv = program_clock_reference_extension & 0x1ff;
|
||||
pcrv |= (const1_value0 << 9) & 0x7E00;
|
||||
pcrv |= (program_clock_reference_base << 15) & 0x1FFFFFFFF000000;
|
||||
pcrv |= (program_clock_reference_base << 15) & 0x1FFFFFFFF000000LL;
|
||||
|
||||
pp = (char*)&pcrv;
|
||||
*p++ = pp[5];
|
||||
|
|
Loading…
Reference in a new issue