Skip to content

Commit

Permalink
MpegSplitter - более "точное" определение "SMPTE ST 302" дорожек. Это…
Browse files Browse the repository at this point in the history
… избавит от ложных срабатываний.
  • Loading branch information
Aleksoid1978 committed Jul 3, 2023
1 parent 301a756 commit 0adcaab
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/filters/parser/MpegSplitter/MpegSplitterFile.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1295,7 +1295,7 @@ DWORD CMpegSplitterFile::AddStream(const WORD pid, BYTE pesid, const BYTE ext_id
}

// AES3
if (type == stream_type::unknown && stream_type & AES3_AUDIO) {
if (type == stream_type::unknown && stream_type == AES3_AUDIO) {
Seek(start);
aes3_ts_hdr h;
if (Read(h, len, &s.mt)) {
Expand Down

0 comments on commit 0adcaab

Please sign in to comment.