diff options
author | Boyuan Yang <byang@debian.org> | 2023-11-27 22:46:29 -0500 |
---|---|---|
committer | Boyuan Yang <byang@debian.org> | 2023-11-27 22:46:29 -0500 |
commit | 19564cb4f77660cdb2f980ca619d4b979b9fe342 (patch) | |
tree | ff97ccd1471553f1e861c8ea747faa45a023e119 /src/c_decoder_test.c | |
parent | d4dbf19f6b0181ee78034bfe4caf189d1c016998 (diff) | |
download | libgav1-19564cb4f77660cdb2f980ca619d4b979b9fe342.tar.gz libgav1-19564cb4f77660cdb2f980ca619d4b979b9fe342.tar.bz2 libgav1-19564cb4f77660cdb2f980ca619d4b979b9fe342.zip |
New upstream version 0.19.0
Diffstat (limited to 'src/c_decoder_test.c')
-rw-r--r-- | src/c_decoder_test.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/c_decoder_test.c b/src/c_decoder_test.c index 9587262..7c6f8c8 100644 --- a/src/c_decoder_test.c +++ b/src/c_decoder_test.c @@ -234,6 +234,7 @@ static void DecoderTestAPIFlowForNonFrameParallelMode(void) { // Signal end of stream (method 1). This should ensure that all the references // are released. status = Libgav1DecoderSignalEOS(test.decoder); + ASSERT_EQ(status, kLibgav1StatusOk); // libgav1 should have released all the reference frames now. ASSERT_EQ(test.frames_in_use, 0); @@ -382,6 +383,7 @@ static void DecoderTestNonFrameParallelModeInvalidFrameAfterEOS(void) { // Signal end of stream. status = Libgav1DecoderSignalEOS(test.decoder); + ASSERT_EQ(status, kLibgav1StatusOk); // libgav1 should have released all the reference frames now. ASSERT_EQ(test.frames_in_use, 0); @@ -459,6 +461,7 @@ static void DecoderTestMetadataObu(void) { ASSERT_EQ(test.buffer_private_data, buffer->buffer_private_data); status = Libgav1DecoderSignalEOS(test.decoder); + ASSERT_EQ(status, kLibgav1StatusOk); ASSERT_EQ(test.frames_in_use, 0); Libgav1DecoderDestroy(test.decoder); |