Skip to content

Commit a78936f

Browse files
duiniuluantanqinmapengfei53chundonglinlin
authored
GB: Fix PSM parsing indicator bug (#3383)
Co-authored-by: pengfei.ma <[email protected]> Co-authored-by: chundonglinlin <[email protected]>
1 parent dbc8e8c commit a78936f

File tree

1 file changed

+8
-7
lines changed

1 file changed

+8
-7
lines changed

trunk/src/kernel/srs_kernel_ps.cpp

+8-7
Original file line numberDiff line numberDiff line change
@@ -427,17 +427,18 @@ srs_error_t SrsPsPsmPacket::decode(SrsBuffer* stream)
427427
return srs_error_new(ERROR_GB_PS_HEADER, "requires 4 only %d bytes", stream->left());
428428
}
429429

430-
uint16_t r0 = stream->read_2bytes();
431-
if ((r0&0x01) != 0x01) {
432-
return srs_error_new(ERROR_GB_PS_HEADER, "invalid marker of 0x%#x", r0);
433-
}
434-
435-
program_stream_map_version_ = (uint8_t)(r0&0x1f);
436-
current_next_indicator_ = (uint8_t)((r0>>7) & 0x01);
430+
uint8_t r0 = stream->read_1bytes();
431+
program_stream_map_version_ = r0&0x1f;
432+
current_next_indicator_ = (r0>>7) & 0x01;
437433
if (!current_next_indicator_) {
438434
return srs_error_new(ERROR_GB_PS_HEADER, "invalid indicator of 0x%#x", r0);
439435
}
440436

437+
uint8_t r1 = stream->read_1bytes();
438+
if ((r1&0x01) != 0x01) {
439+
return srs_error_new(ERROR_GB_PS_HEADER, "invalid marker of 0x%#x", r1);
440+
}
441+
441442
program_stream_info_length_ = stream->read_2bytes();
442443
if (!stream->require(program_stream_info_length_)) {
443444
return srs_error_new(ERROR_GB_PS_HEADER, "requires %d only %d bytes", program_stream_info_length_, stream->left());

0 commit comments

Comments
 (0)