Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit a1c8294f authored by Harish Mahendrakar's avatar Harish Mahendrakar
Browse files

C2 VTS: Fix typo in picking up EOS param

signalEOS flag was wrongly read as third parameter instead of
second parameter in the video encoder tests

Bug: 300530283
Test: atest VtsHalMediaC2V1_0TargetVideoEncTest

Change-Id: I47f74259119c80d137b844e4f698eb040b4f780a
parent 9af6ae0d
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -500,7 +500,7 @@ TEST_P(Codec2VideoEncEncodeTest, EncodeTest) {
    description("Encodes input file");
    if (mDisableTest) GTEST_SKIP() << "Test is disabled";

    bool signalEOS = std::get<3>(GetParam());
    bool signalEOS = std::get<2>(GetParam());
    // Send an empty frame to receive CSD data from encoder.
    bool sendEmptyFirstFrame = std::get<3>(GetParam());
    mConfigBPictures = std::get<4>(GetParam());