Searched refs:marker (Results 1 - 20 of 20) sorted by relevance

/frameworks/av/libvideoeditor/osal/src/
H A DM4PSW_Trace.c57 va_list marker; /* pointer to list of arguments */ local
60 va_start(marker,format); /* set ptr to first argument in the list of arguments passed to the function */
61 vsprintf((char *)message, (const char *)format,marker ); /* formats and writes the data into message */
62 va_end(marker); /* reset pointer to NULL */
82 va_list marker; /* pointer to list of arguments */ local
85 va_start(marker,stringMsg); /* set ptr to first argument in the list of arguments passed to the function */
86 vsprintf((char *)message, (const char *)stringMsg,marker ); /* formats and writes the data into message */
87 va_end(marker); /* reset pointer to NULL */
H A DM4OSA_CharStar.c309 va_list marker; local
332 va_start(marker,format);
387 err= vsnprintf((char *)pStrOut, (size_t)strOutMaxLen + 1, (const char *)format, marker);
388 va_end(marker);
493 err = vsnprintf((char *)pStrOut, (size_t)strOutMaxLen + 1, (const char *)newFormat, marker);
494 va_end(marker);
/frameworks/ex/photoviewer/src/com/android/ex/photo/util/
H A DExif.java35 int marker = jpeg[offset] & 0xFF;
37 // Check if the marker is a padding.
38 if (marker == 0xFF) {
43 // Check if the marker is SOI or TEM.
44 if (marker == 0xD8 || marker == 0x01) {
47 // Check if the marker is EOI or SOS.
48 if (marker == 0xD9 || marker == 0xDA) {
59 // Break if the marker i
[all...]
/frameworks/opt/photoviewer/src/com/android/ex/photo/util/
H A DExif.java35 int marker = jpeg[offset] & 0xFF;
37 // Check if the marker is a padding.
38 if (marker == 0xFF) {
43 // Check if the marker is SOI or TEM.
44 if (marker == 0xD8 || marker == 0x01) {
47 // Check if the marker is EOI or SOS.
48 if (marker == 0xD9 || marker == 0xDA) {
59 // Break if the marker i
[all...]
/frameworks/av/media/libstagefright/
H A DJPEGSource.cpp45 #define JPEG_JFIF 0xE0 /* Jfif marker*/
46 #define JPEG_EXIF 0xE1 /* Exif marker*/
159 uint8_t marker; local
160 if (mSource->readAt(i++, &marker, 1) != 1) {
164 CHECK_EQ(marker, 0xff);
166 if (mSource->readAt(i++, &marker, 1) != 1) {
170 CHECK(marker != 0xff);
183 switch (marker) {
/frameworks/support/volley/src/com/android/volley/
H A DVolleyLog.java86 /** Minimum duration from first marker to last in an marker log to warrant logging. */
104 /** Adds a marker to this log with the specified name. */
116 * @param header Header string to print above the marker log.
128 for (Marker marker : mMarkers) {
129 long thisTime = marker.time;
130 d("(+%-4d) [%2d] %s", (thisTime - prevTime), marker.thread, marker.name);
/frameworks/av/include/media/
H A DAudioRecord.h47 EVENT_MARKER = 2, // Record head is at the specified marker position
87 * - EVENT_MARKER: pointer to const uint32_t containing the marker position in frames.
211 /* Sets marker position. When record reaches the number of frames specified,
213 * with marker == 0 cancels marker notification callback.
219 * marker: marker position expressed in frames.
225 status_t setMarkerPosition(uint32_t marker);
226 status_t getMarkerPosition(uint32_t *marker) const;
H A DAudioTrack.h57 EVENT_MARKER = 3, // Playback head is at the specified marker position (See setMarkerPosition()).
103 * - EVENT_MARKER: pointer to an uint32_t containing the marker position in frames.
312 /* Sets marker position. When playback reaches the number of frames specified, a callback with
313 * event type EVENT_MARKER is called. Calling setMarkerPosition with marker == 0 cancels marker
319 * marker: marker position expressed in frames.
325 status_t setMarkerPosition(uint32_t marker);
326 status_t getMarkerPosition(uint32_t *marker) const;
/frameworks/base/libs/hwui/
H A DCaches.h286 static void eventMarkNull(GLsizei length, const GLchar* marker) { } argument
287 static void startMarkNull(GLsizei length, const GLchar* marker) { } argument
/frameworks/base/tests/DumpRenderTree/assets/
H A Drun_layout_tests.py65 def DiffResults(marker, new_results, old_results, diff_results, strip_reason,
79 # Write marker to diff file
80 diff_file.writelines(marker + "\n")
107 logging.info(marker + " >>> " + str(params["new"][0]) + " new, " +
/frameworks/av/media/libmedia/
H A DAudioRecord.cpp338 // the record head position will reset to 0, so if a marker is set, we need
361 status_t AudioRecord::setMarkerPosition(uint32_t marker) argument
366 mMarkerPosition = marker;
372 status_t AudioRecord::getMarkerPosition(uint32_t *marker) const
374 if (marker == NULL) return BAD_VALUE;
377 *marker = mMarkerPosition;
672 // determine whether a marker callback will be needed, while locked
684 // perform marker callback, while unlocked
H A DAudioTrack.cpp445 // the playback head position will reset to 0, so if a marker is set, we need
480 // clear playback marker and periodic update counter
638 status_t AudioTrack::setMarkerPosition(uint32_t marker) argument
642 mMarkerPosition = marker;
648 status_t AudioTrack::getMarkerPosition(uint32_t *marker) const
650 if (marker == NULL) return BAD_VALUE;
652 *marker = mMarkerPosition;
1230 // Manage marker callback
/frameworks/av/services/camera/libcameraservice/camera2/
H A DJpegProcessor.cpp256 * (inclusive). Because every marker begins with the same byte, they are
259 * JFIF files all begin with the Start of Image (SOI) marker, which is 0xD8.
265 * allowed to contain the End of Image marker (0xFF 0xD9), preventing us from
272 * the end of the image stream there is an End of Image (EOI) marker, which is
276 const uint8_t MARK = 0xFF; // First byte of marker
279 const size_t MARKER_LENGTH = 2; // length of a marker
284 uint8_t marker[MARKER_LENGTH]; member in struct:android::camera2::segment
291 // check for Start of Image marker
295 // check for End of Image marker
299 // check for arbitrary marker, return
[all...]
/frameworks/base/media/java/android/media/
H A DAudioRecord.java97 * Event id denotes when record head has reached a previously set marker.
166 * The listener the AudioRecord notifies when the record position reaches a marker
177 * Handler for marker events coming from the native code
427 * Returns the notification marker position expressed in frames.
645 * Sets the listener the AudioRecord notifies when a previously set marker is reached or
654 * Sets the listener the AudioRecord notifies when a previously set marker is reached or
683 * Sets the marker position at which the listener is called, if set with
686 * @param markerInFrames marker position expressed in frames
712 * reached a notification marker set by {@link AudioRecord#setNotificationMarkerPosition(int)}
718 * Called on the listener to notify it that the previously set marker ha
821 native_set_marker_pos(int marker) argument
[all...]
H A DAudioTrack.java133 * Event id denotes when playback head has reached a previously set marker.
160 * The listener the AudioTrack notifies when the playback position reaches a marker
174 * Handler for marker events coming from the native code.
616 * Returns marker position expressed in frames.
716 * Sets the listener the AudioTrack notifies when a previously set marker is reached or
727 * Sets the listener the AudioTrack notifies when a previously set marker is reached or
804 * Sets the position of the notification marker.
805 * @param markerInFrames marker in frames
848 * @param startInFrames loop start marker expressed in frames
849 * @param endInFrames loop end marker expresse
1237 native_set_marker_pos(int marker) argument
[all...]
/frameworks/native/opengl/include/GLES2/
H A Dgl2ext.h973 GL_APICALL void GL_APIENTRY glInsertEventMarkerEXT (GLsizei length, const GLchar *marker);
974 GL_APICALL void GL_APIENTRY glPushGroupMarkerEXT (GLsizei length, const GLchar *marker);
977 typedef void (GL_APIENTRYP PFNGLINSERTEVENTMARKEREXTPROC) (GLsizei length, const GLchar *marker);
978 typedef void (GL_APIENTRYP PFNGLPUSHGROUPMARKEREXTPROC) (GLsizei length, const GLchar *marker);
/frameworks/base/media/jni/mediaeditor/
H A DVideoEditorPropertiesMain.cpp27 #include <marker.h>
108 // Add a text marker (the condition must always be true).
193 // Add a code marker (the condition must always be true).
317 // Add a text marker (the condition must always be true).
H A DVideoEditorMain.cpp27 #include <marker.h>
1594 // Add a code marker (the condition must always be true).
2244 // Add a text marker (the condition must always be true).
2584 // Add a text marker (the condition must always be true).
2995 // Add a code marker (the condition must always be true).
3170 // Add a text marker (the condition must always be true).
3680 // Add a text marker (the condition must always be true).
3686 // Add a code marker (the condition must always be true).
/frameworks/native/opengl/libs/GLES_trace/src/
H A Dgltrace_api.h203 void GLTrace_glInsertEventMarkerEXT(GLsizei length, const GLchar *marker);
204 void GLTrace_glPushGroupMarkerEXT(GLsizei length, const GLchar *marker);
H A Dgltrace_api.cpp7415 void GLTrace_glInsertEventMarkerEXT(GLsizei length, const GLchar *marker) { argument
7427 // copy argument marker
7431 arg_marker->add_intvalue((int)marker);
7436 glContext->hooks->gl.glInsertEventMarkerEXT(length, marker);
7441 (void *) marker,
7450 void GLTrace_glPushGroupMarkerEXT(GLsizei length, const GLchar *marker) { argument
7462 // copy argument marker
7466 arg_marker->add_intvalue((int)marker);
7471 glContext->hooks->gl.glPushGroupMarkerEXT(length, marker);
7476 (void *) marker,
[all...]

Completed in 316 milliseconds