commit | 8c886ae968a80321f0269825f186c75853645d61 | [log] [tgz] |
---|---|---|
author | Wonsik Kim <wonsik@google.com> | Mon Jul 15 12:36:22 2019 -0700 |
committer | Wonsik Kim <wonsik@google.com> | Wed Jul 24 14:34:17 2019 -0700 |
tree | 83703e7a98dc8a82fa45da6f06b4df6b67c40151 | |
parent | 1c74123afb488b39c850e3b897fc921a9396bfb1 [diff] [blame] |
aacenc: fix timestamp off by one frame Bug: 137245963 Test: manual Change-Id: I567890f3d04544c12adfe29a6a23c06f1db699e7
diff --git a/media/codec2/components/aac/C2SoftAacEnc.h b/media/codec2/components/aac/C2SoftAacEnc.h index a38be19..2655039 100644 --- a/media/codec2/components/aac/C2SoftAacEnc.h +++ b/media/codec2/components/aac/C2SoftAacEnc.h
@@ -56,7 +56,7 @@ bool mSentCodecSpecificData; bool mInputTimeSet; size_t mInputSize; - c2_cntr64_t mInputTimeUs; + c2_cntr64_t mNextFrameTimestampUs; bool mSignalledError; std::atomic_uint64_t mOutIndex;