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

Commit 2cb14b89 authored by TreeHugger Robot's avatar TreeHugger Robot Committed by Android (Google) Code Review
Browse files

Merge "MPEG4Extractor:avoid comparing different int types"

parents dc7785c5 ea252214
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -480,8 +480,8 @@ media_status_t MPEG4Extractor::getTrackMetaData(
                  segment_duration, media_time,
                  halfscale, mHeaderTimescale, track->timescale);

            if (samplerate != track->timescale){
                ALOGV("samplerate:%d, track->timescale and samplerate are different!", samplerate);
            if ((uint32_t)samplerate != track->timescale){
                ALOGV("samplerate:%" PRId32 ", track->timescale and samplerate are different!", samplerate);
            }

            int64_t delay;