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

Commit fd05de2d authored by Treehugger Robot's avatar Treehugger Robot Committed by Gerrit Code Review
Browse files

Merge "C2 VTS: use mime instead of component name in DecodeTest" into android12-tests-dev

parents 47985364 b5835766
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -465,7 +465,8 @@ TEST_P(Codec2AudioDecDecodeTest, DecodeTest) {
    if (mMime.find("raw") != std::string::npos) {
        bitStreamInfo[0] = 8000;
        bitStreamInfo[1] = 1;
    } else if (mCompName == g711alaw || mCompName == g711mlaw) {
    } else if ((mMime.find("g711-alaw") != std::string::npos) ||
               (mMime.find("g711-mlaw") != std::string::npos)) {
        // g711 test data is all 1-channel and has no embedded config info.
        bitStreamInfo[0] = 8000;
        bitStreamInfo[1] = 1;