Skip to content

TS parsing is incorrect #893

Closed
Closed
@pbesedm

Description

@pbesedm

image

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

Metadata

Metadata

Assignees

Labels

BugIt might be a bug.TransByAITranslated by AI/GPT.

Type

No type

Projects

No projects

Milestone

Relationships

None yet

Development

No branches or pull requests

Issue actions