Searched defs:marker (Results 1 - 13 of 13) 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/native/libs/binder/
H A DValue.cpp65 static const T *marker; local
66 return (void*)&marker;
/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.cpp316 * (inclusive). Because every marker begins with the same byte, they are
319 * JFIF files all begin with the Start of Image (SOI) marker, which is 0xD8.
325 * allowed to contain the End of Image marker (0xFF 0xD9), preventing us from
332 * the end of the image stream there is an End of Image (EOI) marker, which is
336 const uint8_t MARK = 0xFF; // First byte of marker
339 const size_t MARKER_LENGTH = 2; // length of a marker
344 uint8_t marker[MARKER_LENGTH]; member in struct:android::camera2::segment
351 // check for Start of Image marker
355 // check for End of Image marker
359 // check for arbitrary marker, return
[all...]
/frameworks/base/libs/hwui/
H A DCaches.h187 static void eventMarkNull(GLsizei length, const GLchar* marker) { } argument
188 static void startMarkNull(GLsizei length, const GLchar* marker) { } argument
/frameworks/rs/tests/java_api/Refocus/src/com/android/rs/test/
H A DXmpDepthDecode.java40 private static final int M_SOI = 0xd8; // File start marker.
42 private static final int M_SOS = 0xda; // Image data marker.
128 public int marker; field in class:XmpDepthDecode.Section
188 * and XMP sections (with marker M_APP1) and ignore others; otherwise, keep
218 int marker = c;
219 if (marker == M_SOS) {
224 section.marker = marker;
238 if (!readMetaOnly || marker == M_APP1) {
239 sections.add(readSection(is, length, marker, skipExtendedConten
284 readSection(InputStream is, int length, int marker, boolean skipExtendedContent) argument
[all...]
/frameworks/av/media/libaudioclient/
H A DAudioRecord.cpp319 // where the last marker event is issued twice.
362 // Note: legacy handling - stop does not clear record marker and
380 status_t AudioRecord::setMarkerPosition(uint32_t marker) argument
382 // The only purpose of setting marker position is to get a callback
388 mMarkerPosition = marker;
398 status_t AudioRecord::getMarkerPosition(uint32_t *marker) const
400 if (marker == NULL) {
405 mMarkerPosition.getValue(marker);
982 // Manage marker callback
H A DAudioTrack.cpp693 // Note: legacy handling - stop does not clear playback marker
735 // clear playback marker and periodic update counter
1025 status_t AudioTrack::setMarkerPosition(uint32_t marker) argument
1027 // The only purpose of setting marker position is to get a callback
1033 mMarkerPosition = marker;
1043 status_t AudioTrack::getMarkerPosition(uint32_t *marker) const
1048 if (marker == NULL) {
1053 mMarkerPosition.getValue(marker);
1879 // Manage marker callback
1945 // This helps with position, marker notification
[all...]
/frameworks/base/media/java/android/media/
H A DAudioRecord.java114 * Event id denotes when record head has reached a previously set marker.
213 * The listener the AudioRecord notifies when the record position reaches a marker
224 * Handler for marker events coming from the native code
863 * Returns the notification marker position expressed in frames.
1321 * Sets the listener the AudioRecord notifies when a previously set marker is reached or
1330 * Sets the listener the AudioRecord notifies when a previously set marker is reached or
1359 * Sets the marker position at which the listener is called, if set with
1362 * @param markerInFrames marker position expressed in frames
1644 * reached a notification marker set by {@link AudioRecord#setNotificationMarkerPosition(int)}
1650 * Called on the listener to notify it that the previously set marker ha
1767 native_set_marker_pos(int marker) argument
[all...]
H A DAudioTrack.java181 * Event id denotes when playback head has reached a previously set marker.
1390 * Returns marker position expressed in frames.
1391 * @return marker position in wrapping frame units similar to {@link #getPlaybackHeadPosition},
1392 * or zero if marker is disabled.
1652 * Sets the listener the AudioTrack notifies when a previously set marker is reached or
1663 * Sets the listener the AudioTrack notifies when a previously set marker is reached or
1815 * Sets the position of the notification marker. At most one marker can be active.
1816 * @param markerInFrames marker position in wrapping frame units similar to
1817 * {@link #getPlaybackHeadPosition}, or zero to disable the marker
3079 native_set_marker_pos(int marker) argument
[all...]
/frameworks/data-binding/prebuilds/1.0-rc0/
H A Ddatabinding-studio-bundle.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/databinding/ android/databinding/Bindable.class Bindable. ...
/frameworks/opt/setupwizard/tools/docs/
H A Ddoclava.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/ccil/ org/ccil/cowan/ org/ccil/cowan/tagsoup/ ...
H A Djsilver.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/clearsilver/ org/clearsilver/DelegatedHdf.class DelegatedHdf. ...

Completed in 2058 milliseconds