Searched defs:timestamp (Results 51 - 75 of 165) sorted by relevance

1234567

/frameworks/av/include/media/
H A DIOMX.h173 // |range_length|, |flags| and |timestamp|). Passes |fenceFd| to component if it
180 OMX_U32 flags, OMX_TICKS timestamp, int fenceFd = -1) = 0;
234 OMX_TICKS timestamp; member in struct:android::omx_message::__anon47::__anon50
239 OMX_TICKS timestamp; member in struct:android::omx_message::__anon47::__anon51
/frameworks/av/media/libnbaio/
H A DNBLog.cpp343 String8 timestamp, body; local
347 // TODO timestamp empty here, only other choice to wait for the first timestamp event in the
348 // log to push it out. Consider keeping the timestamp/body between calls to readAt().
349 dumpLine(timestamp, body);
357 timestamp.appendFormat("[%*s]", (int) width + 4, "");
402 dumpLine(timestamp, body);
405 timestamp.clear();
407 timestamp.appendFormat("[%d.%03d to .%.03d by .%.03d to .%.03d]",
415 timestamp
438 dumpLine(const String8& timestamp, String8& body) argument
[all...]
/frameworks/av/media/libstagefright/codecs/m4v_h263/dec/
H A DSoftMPEG4.cpp221 // so use fake timestamp instead
222 uint32_t timestamp = 0xFFFFFFFF; local
225 timestamp = mPvTime;
244 mHandle, &bitstream, &timestamp, &tmp,
261 outHeader->nTimeStamp = mPvToOmxTimeMap.valueFor(timestamp);
262 mPvToOmxTimeMap.removeItem(timestamp);
/frameworks/av/media/libstagefright/codecs/m4v_h263/dec/include/
H A Dmp4dec_api.h109 uint32 timestamp; member in struct:tagVopHeaderInfo
155 Bool PVDecSetReference(VideoDecControls *decCtrl, uint8 *refYUV, uint32 timestamp);
156 Bool PVDecSetEnhReference(VideoDecControls *decCtrl, uint8 *refYUV, uint32 timestamp);
157 OSCL_IMPORT_REF Bool PVDecodeVideoFrame(VideoDecControls *decCtrl, uint8 *bitstream[], uint32 *timestamp, int32 *buffer_size, uint use_ext_timestamp[], uint8* currYUV);
158 Bool PVDecodeVopHeader(VideoDecControls *decCtrl, uint8 *buffer[], uint32 timestamp[], int32 buffer_size[], VopHeaderInfo *header_info, uint use_ext_timestamp[], uint8 *currYUV);
/frameworks/av/media/ndk/
H A DNdkImage.cpp33 CpuConsumer::LockedBuffer* buffer, int64_t timestamp,
36 mBuffer(buffer), mTimestamp(timestamp),
159 AImage::getTimestamp(int64_t* timestamp) const {
160 if (timestamp == nullptr) {
163 *timestamp = -1;
168 *timestamp = mTimestamp;
32 AImage(AImageReader* reader, int32_t format, CpuConsumer::LockedBuffer* buffer, int64_t timestamp, int32_t width, int32_t height, int32_t numPlanes) argument
/frameworks/av/services/audioflinger/
H A DFastMixer.cpp66 // timestamp
358 // Also, timestamp may not go to very last frame on stop().
470 ExtendedTimestamp timestamp; // local local
471 status_t status = mOutputSink->getTimestamp(timestamp);
474 timestamp.mPosition[ExtendedTimestamp::LOCATION_KERNEL];
479 timestamp.mPosition[ExtendedTimestamp::LOCATION_KERNEL];
481 timestamp.mTimeNs[ExtendedTimestamp::LOCATION_KERNEL];
492 // fetch server time if we can't get timestamp
496 // if we never get a new valid timestamp
/frameworks/av/services/camera/libcameraservice/api1/client2/
H A DCaptureSequencer.cpp112 nsecs_t timestamp) {
114 (void) timestamp;
134 void CaptureSequencer::onCaptureAvailable(nsecs_t timestamp, argument
139 mCaptureTimestamp = timestamp;
656 ALOGE("No timestamp field in capture frame!");
111 notifyShutter(const CaptureResultExtras& resultExtras, nsecs_t timestamp) argument
H A DZslProcessor.cpp104 nsecs_t timestamp = entry.data.i64[0]; local
106 ALOGE("%s: metadata doesn't have timestamp, skip this result", __FUNCTION__);
117 ALOGVV("Got preview metadata for frame %d with timestamp %" PRId64, frameNumber, timestamp);
122 if (timestamp <= mLatestClearedBufferTimestamp) return;
524 * Find the smallest timestamp we know about so far
542 ALOGE("%s: Can't find timestamp in frame!",
603 ALOGVV("%s: Saw timestamp %" PRId64, __FUNCTION__, frameTimestamp);
623 ALOGV("%s: Candidate timestamp %" PRId64 " (idx %zu), empty frames: %zu",
648 // TODO: Verify that the buffer is in our queue by looking at timestamp
[all...]
/frameworks/av/services/camera/libcameraservice/common/
H A DCamera2ClientBase.cpp254 nsecs_t timestamp) {
256 (void)timestamp;
266 __FUNCTION__, resultExtras.requestId, timestamp);
253 notifyShutter(const CaptureResultExtras& resultExtras, nsecs_t timestamp) argument
/frameworks/av/services/camera/libcameraservice/device3/
H A DCamera3IOStreamBase.cpp83 lines.appendFormat(" Frames produced: %d, last timestamp: %" PRId64 " ns\n",
217 nsecs_t timestamp,
234 res = returnBufferCheckedLocked(buffer, timestamp, output,
267 mLastTimestamp = timestamp;
215 returnAnyBufferLocked( const camera3_stream_buffer &buffer, nsecs_t timestamp, bool output) argument
H A DCamera3OutputStream.cpp194 nsecs_t timestamp) {
197 status_t res = returnAnyBufferLocked(buffer, timestamp, /*output*/true);
203 mLastTimestamp = timestamp;
210 nsecs_t timestamp,
261 * MONOTONIC time, causing time misalignment if camera timestamp is
264 mUseMonoTimestamp ? timestamp - mTimestampOffset : timestamp);
266 ALOGE("%s: Stream %d: Error setting timestamp: %s (%d)",
192 returnBufferLocked( const camera3_stream_buffer &buffer, nsecs_t timestamp) argument
208 returnBufferCheckedLocked( const camera3_stream_buffer &buffer, nsecs_t timestamp, bool output, sp<Fence> *releaseFenceOut) argument
H A DCamera3ZslStream.cpp43 TimestampFinder(nsecs_t timestamp) : mTimestamp(timestamp) {} argument
70 // Best result: timestamp is identical
86 // Order i1,i2 so that always i1.timestamp < i2.timestamp
92 // Second best: closest (lower) timestamp
99 // Worst: closest (higher) timestamp
189 nsecs_t timestamp,
197 timestamp,
263 status_t res = returnAnyBufferLocked(buffer, /*timestamp*/
187 returnBufferCheckedLocked( const camera3_stream_buffer &buffer, nsecs_t timestamp, bool output, sp<Fence> *releaseFenceOut) argument
284 enqueueInputBufferByTimestamp( nsecs_t timestamp, nsecs_t* actualTimestamp) argument
[all...]
/frameworks/base/core/java/android/hardware/camera2/
H A DCameraCaptureSession.java759 * with the actual timestamp for the start of exposure. For a reprocess
760 * request, this timestamp will be the input image's start of exposure
761 * which matches {@link CaptureResult#SENSOR_TIMESTAMP the result timestamp field}
764 * This timestamp matches the timestamps that will be
765 * included in {@link CaptureResult#SENSOR_TIMESTAMP the result timestamp field},
781 * @param timestamp the timestamp at start of capture for a regular request, or
782 * the timestamp at the input image's start of capture for a
789 @NonNull CaptureRequest request, long timestamp, long frameNumber) {
791 onCaptureStarted(session, request, timestamp);
788 onCaptureStarted(@onNull CameraCaptureSession session, @NonNull CaptureRequest request, long timestamp, long frameNumber) argument
798 onCaptureStarted(CameraCaptureSession session, CaptureRequest request, long timestamp) argument
[all...]
/frameworks/base/core/java/android/hardware/camera2/legacy/
H A DCameraDeviceState.java77 void onCaptureStarted(RequestHolder holder, long timestamp); argument
138 * @param timestamp The timestamp of the capture start in nanoseconds.
144 public synchronized boolean setCaptureStart(final RequestHolder request, long timestamp, argument
147 doStateTransition(STATE_CAPTURING, timestamp, captureError);
233 doStateTransition(newState, /*timestamp*/0, NO_CAPTURE_ERROR);
236 private void doStateTransition(int newState, final long timestamp, final int error) { argument
332 mCurrentListener.onCaptureStarted(mCurrentRequest, timestamp);
/frameworks/base/core/java/android/hardware/location/
H A DActivityRecognitionHardware.java65 public long timestamp; field in class:ActivityRecognitionHardware.Event
173 new ActivityRecognitionEvent(activityName, event.type, event.timestamp);
H A DGeofenceHardware.java232 * <li> The timestamp when the geofence transition occured.
507 long timestamp, int monitoringType) {
510 c.onGeofenceTransition(geofenceId, transition, location, timestamp,
506 onGeofenceTransition(int geofenceId, int transition, Location location, long timestamp, int monitoringType) argument
/frameworks/base/core/jni/
H A Dandroid_app_admin_SecurityLog.cpp205 jlong timestamp,
212 readEvents(env, ANDROID_LOG_RDONLY | ANDROID_LOG_NONBLOCK, timestamp, out);
226 jlong timestamp,
232 readEvents(env, ANDROID_LOG_RDONLY | ANDROID_LOG_NONBLOCK | ANDROID_LOG_WRAP, timestamp, out);
204 android_app_admin_SecurityLog_readEventsSince(JNIEnv* env, jobject , jlong timestamp, jobject out) argument
225 android_app_admin_SecurityLog_readEventsOnWrapping(JNIEnv* env, jobject , jlong timestamp, jobject out) argument
/frameworks/base/location/java/android/location/
H A DGpsStatus.java146 void onNmeaReceived(long timestamp, String nmea); argument
/frameworks/base/media/lib/tvremote/java/com/android/media/tv/remoteprovider/
H A DTvRemoteProvider.java167 * sendTimestamp : Send a timestamp for a set of pointer events
170 * @param timestamp Timestamp to be used in
174 public void sendTimestamp(IBinder token, long timestamp) throws RuntimeException { argument
176 ", timestamp: " + timestamp);
178 mRemoteServiceInput.sendTimestamp(token, timestamp);
/frameworks/base/media/mca/filterfw/java/android/filterfw/core/
H A DGLEnvironment.java141 public void setSurfaceTimestamp(long timestamp) { argument
142 if (!nativeSetSurfaceTimestamp(timestamp)) {
143 throw new RuntimeException("Could not set timestamp for current surface!");
183 private native boolean nativeSetSurfaceTimestamp(long timestamp); argument
/frameworks/base/media/mca/filterfw/jni/
H A Djni_gl_environment.cpp373 jlong timestamp) {
375 int64_t timestamp_native = timestamp;
371 Java_android_filterfw_core_GLEnvironment_nativeSetSurfaceTimestamp(JNIEnv* env, jobject thiz, jlong timestamp) argument
/frameworks/base/media/mca/filterfw/native/core/
H A Dgl_env.cpp245 bool GLEnv::SetSurfaceTimestamp(int64_t timestamp) { argument
252 native_window_set_buffers_timestamp(window, timestamp);
/frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/integration/
H A DCameraBinderTest.java218 public void onCaptureStarted(CaptureResultExtras resultExtras, long timestamp) argument
H A DCameraDeviceBinderTest.java120 public void onCaptureStarted(CaptureResultExtras resultExtras, long timestamp) argument
459 long timestamp = 0; // All timestamps should be larger than 0.
461 Log.v(TAG, "next t: " + nextTimestamp + " current t: " + timestamp);
462 assertTrue("Captures are out of order", timestamp < nextTimestamp);
463 timestamp = nextTimestamp;
/frameworks/base/native/android/
H A Dchoreographer.cpp70 virtual void dispatchVsync(nsecs_t timestamp, int32_t id, uint32_t count);
71 virtual void dispatchHotplug(nsecs_t timestamp, int32_t id, bool connected);
143 void Choreographer::dispatchVsync(nsecs_t timestamp, int32_t id, uint32_t) { argument
159 cb.callback(timestamp, cb.data);

Completed in 424 milliseconds

1234567