Skip to content

Commit 6477f31

Browse files
committed
Fix #3749: HLS: Ignore empty NALU to avoid error. v4.0.271
1 parent 4e94300 commit 6477f31

File tree

3 files changed

+4
-1
lines changed

3 files changed

+4
-1
lines changed

trunk/doc/CHANGELOG.md

+1
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ The changelog for SRS.
88

99
## SRS 4.0 Changelog
1010

11+
* v4.0, 2023-08-02, Fix [#3749](https://github.com/ossrs/srs/issues/3749): HLS: Ignore empty NALU to avoid error. v4.0.271
1112
* v4.0, 2023-07-21, Merge [#3695](https://github.com/ossrs/srs/pull/3695): API: Fix HTTPS callback issue using SNI in TLS client handshake. v4.0.270 (#3695)
1213
* v4.0, 2022-12-24, For [#296](https://github.com/ossrs/srs/issues/296): MP3: Fix bug for TS or HLS with mp3 codec. v4.0.269
1314
* v4.0, 2022-11-22, Pick [#3079](https://github.com/ossrs/srs/issues/3079): WebRTC: Fix no audio and video issue for Firefox. v4.0.268

trunk/src/core/srs_core_version4.hpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,6 @@
99

1010
#define VERSION_MAJOR 4
1111
#define VERSION_MINOR 0
12-
#define VERSION_REVISION 270
12+
#define VERSION_REVISION 271
1313

1414
#endif

trunk/src/kernel/srs_kernel_codec.cpp

+2
Original file line numberDiff line numberDiff line change
@@ -544,6 +544,8 @@ srs_error_t SrsVideoFrame::add_sample(char* bytes, int size)
544544
if ((err = SrsFrame::add_sample(bytes, size)) != srs_success) {
545545
return srs_error_wrap(err, "add frame");
546546
}
547+
548+
if (!bytes || size <= 0) return err;
547549

548550
// for video, parse the nalu type, set the IDR flag.
549551
SrsAvcNaluType nal_unit_type = (SrsAvcNaluType)(bytes[0] & 0x1f);

0 commit comments

Comments
 (0)