Searched defs:marker (Results 1 - 11 of 11) 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/base/packages/WallpaperCropper/src/com/android/gallery3d/exif/
H A DJpegHeader.java26 * SOF (start of frame). All value between SOF0 and SOF15 is SOF marker except for DHT, JPG,
27 * and DAC marker.
35 public static final boolean isSofMarker(short marker) { argument
36 return marker >= SOF0 && marker <= SOF15 && marker != DHT && marker != JPG
37 && marker != DAC;
/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/av/services/camera/libcameraservice/api1/client2/
H A DJpegProcessor.cpp263 * (inclusive). Because every marker begins with the same byte, they are
266 * JFIF files all begin with the Start of Image (SOI) marker, which is 0xD8.
272 * allowed to contain the End of Image marker (0xFF 0xD9), preventing us from
279 * the end of the image stream there is an End of Image (EOI) marker, which is
283 const uint8_t MARK = 0xFF; // First byte of marker
286 const size_t MARKER_LENGTH = 2; // length of a marker
291 uint8_t marker[MARKER_LENGTH]; member in struct:android::camera2::segment
298 // check for Start of Image marker
302 // check for End of Image marker
306 // check for arbitrary marker, return
[all...]
/frameworks/av/media/libmedia/
H A DAudioRecord.cpp335 // the record head position will reset to 0, so if a marker is set, we need
353 status_t AudioRecord::setMarkerPosition(uint32_t marker) argument
360 mMarkerPosition = marker;
366 status_t AudioRecord::getMarkerPosition(uint32_t *marker) const
368 if (marker == NULL) {
373 *marker = mMarkerPosition;
744 // Manage marker callback
H A DAudioTrack.cpp461 // the playback head position will reset to 0, so if a marker is set, we need
506 // clear playback marker and periodic update counter
642 status_t AudioTrack::setMarkerPosition(uint32_t marker) argument
644 // The only purpose of setting marker position is to get a callback
650 mMarkerPosition = marker;
656 status_t AudioTrack::getMarkerPosition(uint32_t *marker) const
661 if (marker == NULL) {
666 *marker = mMarkerPosition;
1403 // Manage marker callback
/frameworks/base/libs/hwui/
H A DCaches.h367 static void eventMarkNull(GLsizei length, const GLchar* marker) { } argument
368 static void startMarkNull(GLsizei length, const GLchar* marker) { } argument
/frameworks/base/media/java/android/media/
H A DAudioRecord.java92 * Event id denotes when record head has reached a previously set marker.
157 * The listener the AudioRecord notifies when the record position reaches a marker
168 * Handler for marker events coming from the native code
416 * Returns the notification marker position expressed in frames.
640 * Sets the listener the AudioRecord notifies when a previously set marker is reached or
649 * Sets the listener the AudioRecord notifies when a previously set marker is reached or
678 * Sets the marker position at which the listener is called, if set with
681 * @param markerInFrames marker position expressed in frames
714 * reached a notification marker set by {@link AudioRecord#setNotificationMarkerPosition(int)}
720 * Called on the listener to notify it that the previously set marker ha
822 native_set_marker_pos(int marker) argument
[all...]
H A DAudioTrack.java137 * Event id denotes when playback head has reached a previously set marker.
617 * Returns marker position expressed in frames.
618 * @return marker position in wrapping frame units similar to {@link #getPlaybackHeadPosition},
619 * or zero if marker is disabled.
778 * Sets the listener the AudioTrack notifies when a previously set marker is reached or
789 * Sets the listener the AudioTrack notifies when a previously set marker is reached or
876 * Sets the position of the notification marker. At most one marker can be active.
877 * @param markerInFrames marker position in wrapping frame units similar to
878 * {@link #getPlaybackHeadPosition}, or zero to disable the marker
1352 native_set_marker_pos(int marker) argument
[all...]
/frameworks/native/opengl/libs/GLES_trace/src/
H A Dgltrace_api.cpp12035 void GLTrace_glInsertEventMarkerEXT(GLsizei length, const GLchar *marker) { argument
12047 // copy argument marker
12051 arg_marker->add_intvalue((int)marker);
12056 glContext->hooks->gl.glInsertEventMarkerEXT(length, marker);
12061 (void *) marker,
12070 void GLTrace_glPushGroupMarkerEXT(GLsizei length, const GLchar *marker) { argument
12082 // copy argument marker
12086 arg_marker->add_intvalue((int)marker);
12091 glContext->hooks->gl.glPushGroupMarkerEXT(length, marker);
12096 (void *) marker,
[all...]

Completed in 337 milliseconds