1
0
Fork 0
mirror of https://github.com/ossrs/srs.git synced 2025-03-09 15:49:59 +00:00

Fix some warnings for compiler

This commit is contained in:
winlin 2020-01-05 22:30:57 +08:00
parent 10464a5fbe
commit 69e2d94e50
6 changed files with 10 additions and 10 deletions

View file

@ -4788,13 +4788,13 @@ VOID TEST(KernelMP4Test, CoverMP4All)
if (true) {
SrsMp4ElstEntry e;
EXPECT_EQ(0, e.media_time);
EXPECT_EQ(0, e.segment_duration);
EXPECT_EQ(0, (int)e.segment_duration);
}
if (true) {
SrsMp4CttsEntry e;
EXPECT_EQ(0, e.sample_count);
EXPECT_EQ(0, e.sample_offset);
EXPECT_EQ(0, (int)e.sample_count);
EXPECT_EQ(0, (int)e.sample_offset);
}
}