Searched defs:timestampNs (Results 1 - 15 of 15) sorted by path

/frameworks/av/media/libmediaplayerservice/nuplayer/
H A DNuPlayerDecoder.cpp1106 int64_t timestampNs; local
1107 CHECK(msg->findInt64("timestampNs", &timestampNs));
1108 err = mCodec->renderOutputBufferAndRelease(bufferIx, timestampNs);
/frameworks/av/media/libstagefright/
H A DACodec.cpp6144 int64_t timestampNs = 0; local
6145 if (!msg->findInt64("timestampNs", &timestampNs)) {
6147 if (buffer->meta()->findInt64("timeUs", &timestampNs)) {
6148 ALOGV("using buffer PTS of %lld", (long long)timestampNs);
6149 timestampNs *= 1000;
6154 err = native_window_set_buffers_timestamp(mCodec->mNativeWindow.get(), timestampNs);
H A DMediaCodec.cpp1109 status_t MediaCodec::renderOutputBufferAndRelease(size_t index, int64_t timestampNs) { argument
1113 msg->setInt64("timestampNs", timestampNs);
2878 if (!msg->findInt64("timestampNs", &renderTimeNs)) {
/frameworks/av/media/ndk/
H A DNdkImage.cpp692 media_status_t AImage_getTimestamp(const AImage* image, /*out*/int64_t* timestampNs) { argument
694 if (image == nullptr || timestampNs == nullptr) {
695 ALOGE("%s: bad argument. image %p timestampNs %p",
696 __FUNCTION__, image, timestampNs);
699 return image->getTimestamp(timestampNs);
H A DNdkMediaCodec.cpp380 AMediaCodec *mData, size_t idx, int64_t timestampNs) {
381 ALOGV("render @ %" PRId64, timestampNs);
382 return translate_error(mData->mCodec->renderOutputBufferAndRelease(idx, timestampNs));
379 AMediaCodec_releaseOutputBufferAtTime( AMediaCodec *mData, size_t idx, int64_t timestampNs) argument
/frameworks/base/core/java/android/hardware/location/
H A DActivityRecognitionEvent.java32 public ActivityRecognitionEvent(String activity, int eventType, long timestampNs) { argument
35 mTimestampNs = timestampNs;
56 long timestampNs = source.readLong();
58 return new ActivityRecognitionEvent(activity, eventType, timestampNs);
/frameworks/base/core/java/com/android/internal/os/
H A DBatteryStatsImpl.java4196 public boolean noteMobileRadioPowerStateLocked(int powerState, long timestampNs, int uid) { argument
4209 mMobileRadioActiveStartTime = realElapsedRealtimeMs = timestampNs / (1000 * 1000);
4212 realElapsedRealtimeMs = timestampNs / (1000*1000);
4903 public void noteWifiRadioPowerState(int powerState, long timestampNs, int uid) { argument
/frameworks/base/location/lib/java/com/android/location/provider/
H A DActivityRecognitionEvent.java27 public ActivityRecognitionEvent(String activity, int eventType, long timestampNs) { argument
30 mTimestampNs = timestampNs;
/frameworks/base/media/java/android/media/
H A DImageReader.java880 public void setTimestamp(long timestampNs) { argument
882 mTimestamp = timestampNs;
H A DImageWriter.java859 long timestampNs, int left, int top, int right, int bottom);
862 long imageNativeBuffer, int imageFormat, long timestampNs, int left,
858 nativeQueueInputImage(long nativeCtx, Image image, long timestampNs, int left, int top, int right, int bottom) argument
861 nativeAttachAndQueueImage(long nativeCtx, long imageNativeBuffer, int imageFormat, long timestampNs, int left, int top, int right, int bottom) argument
/frameworks/base/media/jni/
H A Dandroid_media_ImageWriter.cpp425 jlong timestampNs, jint left, jint top, jint right, jint bottom) {
450 ALOGV("timestamp to be queued: %" PRId64, timestampNs);
451 res = native_window_set_buffers_timestamp(anw.get(), timestampNs);
490 jlong nativeBuffer, jint imageFormat, jlong timestampNs, jint left, jint top,
536 ALOGV("timestamp to be queued: %" PRId64, timestampNs);
537 res = native_window_set_buffers_timestamp(anw.get(), timestampNs);
424 ImageWriter_queueImage(JNIEnv* env, jobject thiz, jlong nativeCtx, jobject image, jlong timestampNs, jint left, jint top, jint right, jint bottom) argument
489 ImageWriter_attachAndQueueImage(JNIEnv* env, jobject thiz, jlong nativeCtx, jlong nativeBuffer, jint imageFormat, jlong timestampNs, jint left, jint top, jint right, jint bottom) argument
H A Dandroid_media_MediaCodec.cpp381 size_t index, bool render, bool updatePTS, int64_t timestampNs) {
383 return mCodec->renderOutputBufferAndRelease(index, timestampNs);
1491 jint index, jboolean render, jboolean updatePTS, jlong timestampNs) {
1501 status_t err = codec->releaseOutputBuffer(index, render, updatePTS, timestampNs);
380 releaseOutputBuffer( size_t index, bool render, bool updatePTS, int64_t timestampNs) argument
1489 android_media_MediaCodec_releaseOutputBuffer( JNIEnv *env, jobject thiz, jint index, jboolean render, jboolean updatePTS, jlong timestampNs) argument
/frameworks/base/media/mca/filterpacks/java/android/filterpacks/videosink/
H A DMediaEncoderFilter.java338 public boolean skipFrameAndModifyTimestamp(long timestampNs) { argument
341 mLastTimeLapseFrameRealTimestampNs = timestampNs;
342 mTimestampNs = timestampNs;
352 if (mNumFramesEncoded >= 2 && timestampNs <
362 // - Artificially modify timestampNs to be one frame time (1/framerate) ahead
364 if (mLogVerbose) Log.v(TAG, "timelapse: encoding frame, Timestamp t = " + timestampNs +
367 mLastTimeLapseFrameRealTimestampNs = timestampNs;
/frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/helpers/
H A DCameraErrorCollector.java1059 long timestampNs) {
1063 expectEquals(msg + "Image timestamp is wrong.", image.getTimestamp(), timestampNs);
1058 expectImageProperties(String msg, Image image, int format, Size size, long timestampNs) argument
/frameworks/base/services/core/java/com/android/server/am/
H A DBatteryStatsService.java613 public void noteMobileRadioPowerState(int powerState, long timestampNs, int uid) { argument
617 update = mStats.noteMobileRadioPowerStateLocked(powerState, timestampNs, uid);

Completed in 329 milliseconds