We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
srs_kernel_ts.cpp
1658: // (1+x)B 1659: if (PES_extension_flag_2) { 1660: PES_extension_field_length = stream->read_1bytes(); 1661: PES_extension_field_length &= 0x07;
1661 行的 PES_extension_field_length &= 0x07; 不应该是 PES_extension_field_length &= 0x7F; 吗?'
Shouldn't it be PES_extension_field_length &= 0x7F; instead of PES_extension_field_length &= 0x07; on line 1661?
TRANS_BY_GPT3
The text was updated successfully, but these errors were encountered:
👍 Yep, can you file a PR please?
Sorry, something went wrong.
Merged
Merge #899 to fix #893, ts PES ext length. 2.0.243
e8cb2e6
For #893, #899, merge SRS2
c496648
winlinvip
No branches or pull requests
srs_kernel_ts.cpp
1661 行的 PES_extension_field_length &= 0x07; 不应该是 PES_extension_field_length &= 0x7F; 吗?'
Shouldn't it be PES_extension_field_length &= 0x7F; instead of PES_extension_field_length &= 0x07; on line 1661?
TRANS_BY_GPT3
The text was updated successfully, but these errors were encountered: