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

Commit 443f16c4 authored by Linus Nilsson's avatar Linus Nilsson
Browse files

Remove non-inclusive language from the transcoder.

Fixes: 162529149
Test: Unit test.
Change-Id: I401e018851473d4189bab6ae3a76d8d0502dca21
parent 41ac4ced
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -245,7 +245,7 @@ public:
    static std::shared_ptr<MediaSample> newSampleWithPts(int64_t ptsUs) {
        static uint32_t sampleCount = 0;

        // Use sampleCount to get a unique dummy sample.
        // Use sampleCount to get a unique mock sample.
        uint32_t sampleId = ++sampleCount;
        return newSample(ptsUs, 0, sampleId, sampleId, reinterpret_cast<const uint8_t*>(sampleId));
    }
+2 −2
Original line number Diff line number Diff line
@@ -92,8 +92,8 @@ public:
    std::shared_ptr<AMediaFormat> mDestinationFormat;
};

TEST_F(VideoTrackTranscoderTests, SampleSanity) {
    LOG(DEBUG) << "Testing SampleSanity";
TEST_F(VideoTrackTranscoderTests, SampleSoundness) {
    LOG(DEBUG) << "Testing SampleSoundness";
    std::shared_ptr<TestCallback> callback = std::make_shared<TestCallback>();
    auto transcoder = VideoTrackTranscoder::create(callback);