| commit | 06223f81c89a55ccc993b990edb14ba46e355862 | [log] [tgz] |
|---|---|---|
| author | Dongwon Kang <dwkang@google.com> | Tue Feb 27 13:36:55 2018 -0800 |
| committer | Dongwon Kang <dwkang@google.com> | Tue Feb 27 13:48:36 2018 -0800 |
| tree | 60a8adfd57ea84b490ecaa4a32ec71431d14f59c | |
| parent | c9e3a6945d67b8ecb7835686a04c2ac6d75f3d5a [diff] |
Add missing assignment in AACExtractor. An assignment statement was dropped in MetaData refactoring change. Test: passes MediaPlayerTest#testResumeAtEnd & testPositionAtEnd Bug: 73948878 Change-Id: I9fd835afa24e1cc3c718f186a8b3d18bc1d427f8
diff --git a/media/extractors/aac/AACExtractor.cpp b/media/extractors/aac/AACExtractor.cpp index bbc1ff8..9fc5a76 100644 --- a/media/extractors/aac/AACExtractor.cpp +++ b/media/extractors/aac/AACExtractor.cpp
@@ -373,6 +373,7 @@ *confidence = 0.2; off64_t *offPtr = (off64_t*) malloc(sizeof(off64_t)); + *offPtr = pos; *meta = offPtr; *freeMeta = ::free;