Searched defs:marker (Results 1 - 10 of 10) sorted by relevance

/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/libmediaplayerservice/nuplayer/
H A DNuPlayerCCDecoder.cpp247 uint8_t marker = br.getBits(5); local
248 CHECK_EQ(marker, 0x1f);
/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.cpp284 * (inclusive). Because every marker begins with the same byte, they are
287 * JFIF files all begin with the Start of Image (SOI) marker, which is 0xD8.
293 * allowed to contain the End of Image marker (0xFF 0xD9), preventing us from
300 * the end of the image stream there is an End of Image (EOI) marker, which is
304 const uint8_t MARK = 0xFF; // First byte of marker
307 const size_t MARKER_LENGTH = 2; // length of a marker
312 uint8_t marker[MARKER_LENGTH]; member in struct:android::camera2::segment
319 // check for Start of Image marker
323 // check for End of Image marker
327 // check for arbitrary marker, return
[all...]
/frameworks/av/media/libmedia/
H A DAudioRecord.cpp326 // the record head position will reset to 0, so if a marker is set, we need
344 status_t AudioRecord::setMarkerPosition(uint32_t marker) argument
346 // The only purpose of setting marker position is to get a callback
352 mMarkerPosition = marker;
358 status_t AudioRecord::getMarkerPosition(uint32_t *marker) const
360 if (marker == NULL) {
365 *marker = mMarkerPosition;
805 // Manage marker callback
H A DAudioTrack.cpp531 // the playback head position will reset to 0, so if a marker is set, we need
576 // clear playback marker and periodic update counter
749 status_t AudioTrack::setMarkerPosition(uint32_t marker) argument
751 // The only purpose of setting marker position is to get a callback
757 mMarkerPosition = marker;
763 status_t AudioTrack::getMarkerPosition(uint32_t *marker) const
768 if (marker == NULL) {
773 *marker = mMarkerPosition;
1594 // Manage marker callback
/frameworks/base/libs/hwui/
H A DCaches.h385 static void eventMarkNull(GLsizei length, const GLchar* marker) { } argument
386 static void startMarkNull(GLsizei length, const GLchar* marker) { } argument
/frameworks/base/media/java/android/media/
H A DAudioRecord.java97 * Event id denotes when record head has reached a previously set marker.
164 * The listener the AudioRecord notifies when the record position reaches a marker
175 * Handler for marker events coming from the native code
519 * Returns the notification marker position expressed in frames.
759 * Sets the listener the AudioRecord notifies when a previously set marker is reached or
768 * Sets the listener the AudioRecord notifies when a previously set marker is reached or
797 * Sets the marker position at which the listener is called, if set with
800 * @param markerInFrames marker position expressed in frames
833 * reached a notification marker set by {@link AudioRecord#setNotificationMarkerPosition(int)}
839 * Called on the listener to notify it that the previously set marker ha
943 native_set_marker_pos(int marker) argument
[all...]
H A DAudioTrack.java161 * Event id denotes when playback head has reached a previously set marker.
744 * Returns marker position expressed in frames.
745 * @return marker position in wrapping frame units similar to {@link #getPlaybackHeadPosition},
746 * or zero if marker is disabled.
915 * Sets the listener the AudioTrack notifies when a previously set marker is reached or
926 * Sets the listener the AudioTrack notifies when a previously set marker is reached or
1033 * Sets the position of the notification marker. At most one marker can be active.
1034 * @param markerInFrames marker position in wrapping frame units similar to
1035 * {@link #getPlaybackHeadPosition}, or zero to disable the marker
1674 native_set_marker_pos(int marker) argument
[all...]
/frameworks/native/opengl/libs/GLES_trace/src/
H A Dgltrace_api.cpp16416 void GLTrace_glInsertEventMarkerEXT(GLsizei length, const GLchar * marker) { argument
16428 // copy argument marker
16432 arg_marker->add_int64value((uintptr_t)marker);
16437 glContext->hooks->gl.glInsertEventMarkerEXT(length, marker);
16442 (void *) marker,
16451 void GLTrace_glPushGroupMarkerEXT(GLsizei length, const GLchar * marker) { argument
16463 // copy argument marker
16467 arg_marker->add_int64value((uintptr_t)marker);
16472 glContext->hooks->gl.glPushGroupMarkerEXT(length, marker);
16477 (void *) marker,
[all...]

Completed in 1157 milliseconds