diff options
| author | Andreas Huber <andih@google.com> | 2009-07-28 13:05:27 -0700 |
|---|---|---|
| committer | Andreas Huber <andih@google.com> | 2009-07-28 13:05:27 -0700 |
| commit | 970764d14b663324df2a4324a890988a606c14a1 (patch) | |
| tree | 29443752f4a785e8f4ba4c0a3441146266c612d1 /include | |
| parent | 8a432776d003247c12222d8dd6a30ea4621aa2d0 (diff) | |
| download | frameworks_base-970764d14b663324df2a4324a890988a606c14a1.zip frameworks_base-970764d14b663324df2a4324a890988a606c14a1.tar.gz frameworks_base-970764d14b663324df2a4324a890988a606c14a1.tar.bz2 | |
While other OMX nodes appear to now have switched to using microseconds to timestamp buffers, at least the TI AAC and MP3 decoders still use milliseconds.
Diffstat (limited to 'include')
| -rw-r--r-- | include/media/stagefright/OMXDecoder.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/include/media/stagefright/OMXDecoder.h b/include/media/stagefright/OMXDecoder.h index 54a8047..e76fd4c 100644 --- a/include/media/stagefright/OMXDecoder.h +++ b/include/media/stagefright/OMXDecoder.h @@ -83,7 +83,8 @@ private: kDoesntProperlyFlushAllPortsAtOnce = 8, kRequiresAllocateBufferOnInputPorts = 16, kRequiresAllocateBufferOnOutputPorts = 32, - kRequiresLoadedToIdleAfterAllocation = 64 + kRequiresLoadedToIdleAfterAllocation = 64, + kMeasuresTimeInMilliseconds = 128, }; OMXClient *mClient; |
