diff options
author | Sebastian Ramacher <sramacher@debian.org> | 2024-12-29 12:50:37 +0000 |
---|---|---|
committer | Sebastian Ramacher <sramacher@debian.org> | 2024-12-29 12:50:37 +0000 |
commit | 873c687c09e0a1a78a8f3601d31330ad1897e484 (patch) | |
tree | ff2fa2e2d27b55c002a6d46d50aab2c66e0bf21a /src/decoder_test.cc | |
parent | 395b1f6877fbc2666383f3428f17400c35aa52a4 (diff) | |
parent | b9ae809f200982119d16ec9613f3db95eca923b9 (diff) | |
download | libgav1-873c687c09e0a1a78a8f3601d31330ad1897e484.tar.gz libgav1-873c687c09e0a1a78a8f3601d31330ad1897e484.tar.bz2 libgav1-873c687c09e0a1a78a8f3601d31330ad1897e484.zip |
Merge branch 'master' into 'scrub-obsolete'
# Conflicts:
# debian/changelog
Diffstat (limited to 'src/decoder_test.cc')
-rw-r--r-- | src/decoder_test.cc | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/decoder_test.cc b/src/decoder_test.cc index e274122..52ec5cc 100644 --- a/src/decoder_test.cc +++ b/src/decoder_test.cc @@ -172,6 +172,7 @@ TEST_F(DecoderTest, APIFlowForNonFrameParallelMode) { // Signal end of stream (method 1). This should ensure that all the references // are released. status = decoder_->SignalEOS(); + EXPECT_EQ(status, kStatusOk); // libgav1 should have released all the reference frames now. EXPECT_EQ(frames_in_use_, 0); @@ -302,6 +303,7 @@ TEST_F(DecoderTest, NonFrameParallelModeInvalidFrameAfterEOS) { // Signal end of stream. status = decoder_->SignalEOS(); + EXPECT_EQ(status, kStatusOk); // libgav1 should have released all the reference frames now. EXPECT_EQ(frames_in_use_, 0); @@ -372,6 +374,7 @@ TEST_F(DecoderTest, MetadataObu) { EXPECT_EQ(buffer_private_data_, buffer->buffer_private_data); status = decoder_->SignalEOS(); + EXPECT_EQ(status, kStatusOk); EXPECT_EQ(frames_in_use_, 0); } |