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

Commit f748dd8c authored by Jaesung Chung's avatar Jaesung Chung
Browse files

mpeg2ts: fixing build breakage due to an unmatched argument type

Change-Id: I30e5093d55c29fa62fe8c19095c006861c0ee5a0
parent 5bb07a3b
Loading
Loading
Loading
Loading
+3 −1
Original line number Diff line number Diff line
@@ -16,6 +16,8 @@

//#define LOG_NDEBUG 0
#define LOG_TAG "MPEG2TSExtractor"

#include <inttypes.h>
#include <utils/Log.h>

#include "include/MPEG2TSExtractor.h"
@@ -233,7 +235,7 @@ void MPEG2TSExtractor::init() {
        }
    }

    ALOGI("haveAudio=%d, haveVideo=%d, elaspedTime=%lld",
    ALOGI("haveAudio=%d, haveVideo=%d, elaspedTime=%" PRId64,
            haveAudio, haveVideo, ALooper::GetNowUs() - startTime);
}