Searched defs:format (Results 26 - 50 of 364) sorted by relevance

1234567891011>>

/frameworks/base/graphics/java/android/graphics/
H A DImageFormat.java28 * RGB format used for pictures encoded as RGB_565. See
34 * <p>Android YUV format.</p>
36 * <p>This format is exposed to software decoders and applications.</p>
38 * <p>YV12 is a 4:2:0 YCrCb planar format comprised of a WxH Y plane followed
41 * <p>This format assumes
57 * <p>For the {@link android.hardware.camera2} API, the {@link #YUV_420_888} format is
60 * <p>For the older camera API, this format is guaranteed to be supported for
79 * <p>Android Y8 format.</p>
81 * <p>Y8 is a YUV planar format comprised of a WxH Y plane only, with each pixel
83 * format
366 getBitsPerPixel(int format) argument
404 isPublicFormat(int format) argument
[all...]
/frameworks/base/media/java/android/media/
H A DAudioDevicePort.java57 * Get the device address. Address format varies with the device type.
75 public AudioDevicePortConfig buildConfig(int samplingRate, int channelMask, int format, argument
77 return new AudioDevicePortConfig(this, samplingRate, channelMask, format, gain);
H A DAudioPortConfig.java48 AudioPortConfig(AudioPort port, int samplingRate, int channelMask, int format, argument
53 mFormat = format;
80 * Audio format configuration (e.g AudioFormat.ENCODING_PCM_16BIT).
82 public int format() { method in class:AudioPortConfig
/frameworks/base/media/mca/filterpacks/java/android/filterpacks/imageproc/
H A DCropFilter.java29 import android.filterfw.format.ImageFormat;
30 import android.filterfw.format.ObjectFormat;
87 protected void createProgram(FilterContext context, FrameFormat format) { argument
89 if (mLastFormat != null && mLastFormat.getTarget() == format.getTarget()) return;
90 mLastFormat = format;
92 switch (format.getTarget()) {
117 // Create output format
H A DToRGBAFilter.java27 import android.filterfw.format.ImageFormat;
56 public FrameFormat getConvertedFormat(FrameFormat format) { argument
57 MutableFrameFormat result = format.mutableCopy();
63 public void createProgram(FilterContext context, FrameFormat format) { argument
64 mInputBPP = format.getBytesPerSample();
66 mLastFormat = format;
H A DToRGBFilter.java27 import android.filterfw.format.ImageFormat;
56 public FrameFormat getConvertedFormat(FrameFormat format) { argument
57 MutableFrameFormat result = format.mutableCopy();
63 public void createProgram(FilterContext context, FrameFormat format) { argument
64 mInputBPP = format.getBytesPerSample();
66 mLastFormat = format;
/frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/src/androidx/media/filterfw/decoder/
H A DVideoTrackDecoder.java35 protected VideoTrackDecoder(int trackIndex, MediaFormat format, Listener listener) { argument
36 super(trackIndex, format, listener);
37 if (!DecoderUtil.isVideoFormat(format)) {
/frameworks/base/tests/RenderScriptTests/Fountain/src/com/example/android/rs/fountain/
H A DFountainView.java52 public void surfaceChanged(SurfaceHolder holder, int format, int w, int h) { argument
53 super.surfaceChanged(holder, format, w, h);
/frameworks/base/tests/RenderScriptTests/FountainFbo/src/com/example/android/rs/fountainfbo/
H A DFountainFboView.java35 public void surfaceChanged(SurfaceHolder holder, int format, int w, int h) { argument
36 super.surfaceChanged(holder, format, w, h);
/frameworks/base/tests/RenderScriptTests/MiscSamples/src/com/example/android/rs/miscsamples/
H A DRsRenderStatesView.java53 public void surfaceChanged(SurfaceHolder holder, int format, int w, int h) { argument
54 super.surfaceChanged(holder, format, w, h);
/frameworks/base/tests/RenderScriptTests/ModelViewer/src/com/android/modelviewer/
H A DSceneGraphView.java53 public void surfaceChanged(SurfaceHolder holder, int format, int w, int h) { argument
54 super.surfaceChanged(holder, format, w, h);
/frameworks/base/tools/layoutlib/create/src/com/android/tools/layoutlib/create/
H A DLog.java30 public void debug(String format, Object... args) { argument
32 info(format, args);
37 public void debugNoln(String format, Object... args) { argument
39 String s = String.format(format, args);
44 public void info(String format, Object... args) { argument
45 String s = String.format(format, args);
49 public void error(String format, Object... args) { argument
50 String s = String.format(forma
54 exception(Throwable t, String format, Object... args) argument
[all...]
/frameworks/compile/mclinker/lib/LD/
H A DDiagnostic.cpp28 // format - format this diagnostic into string, subsituting the formal
30 void Diagnostic::format(std::string& pOutStr) const function in class:Diagnostic
35 format(desc.begin(), desc.end(), pOutStr);
68 // format - format the given formal string, subsituting the formal
70 void Diagnostic::format(const char* pBegin, const char* pEnd, function in class:Diagnostic
106 // DIAG's format error
/frameworks/native/include/android/
H A Dbitmap.h47 int32_t format; member in struct:__anon1178
/frameworks/native/libs/gui/
H A DIGraphicBufferAlloc.cpp46 PixelFormat format, uint32_t usage, status_t* error) {
51 data.writeInt32(format);
93 PixelFormat format = data.readInt32(); local
97 createGraphicBuffer(w, h, format, usage, &error);
45 createGraphicBuffer(uint32_t w, uint32_t h, PixelFormat format, uint32_t usage, status_t* error) argument
/frameworks/native/opengl/tests/include/
H A DEGLUtils.h42 int32_t format,
79 int32_t format,
105 if (nativeVisualId>0 && format == nativeVisualId) {
128 int format; local
133 if ((err = window->query(window, NATIVE_WINDOW_FORMAT, &format)) < 0) {
137 return selectConfigForPixelFormat(dpy, attrs, format, outConfig);
76 selectConfigForPixelFormat( EGLDisplay dpy, EGLint const* attrs, int32_t format, EGLConfig* outConfig) argument
/frameworks/opt/bluetooth/src/android/bluetooth/client/pbap/
H A DBluetoothPbapRequestPullVcardEntry.java40 public BluetoothPbapRequestPullVcardEntry(String handle, long filter, byte format) { argument
45 /* make sure format is one of allowed values */
46 if (format != BluetoothPbapClient.VCARD_TYPE_21
47 && format != BluetoothPbapClient.VCARD_TYPE_30) {
48 format = BluetoothPbapClient.VCARD_TYPE_21;
57 oap.add(OAP_TAGID_FORMAT, format);
60 mFormat = format;
H A DBluetoothPbapVcardList.java51 public BluetoothPbapVcardList(InputStream in, byte format) throws IOException { argument
52 parse(in, format);
55 private void parse(InputStream in, byte format) throws IOException { argument
58 if (format == BluetoothPbapClient.VCARD_TYPE_30) {
/frameworks/rs/java/tests/RsTest_11/src/com/android/rs/test/
H A DRSTestView.java55 public void surfaceChanged(SurfaceHolder holder, int format, int w, int h) { argument
56 super.surfaceChanged(holder, format, w, h);
/frameworks/rs/java/tests/RsTest_14/src/com/android/rs/test/
H A DRSTestView.java55 public void surfaceChanged(SurfaceHolder holder, int format, int w, int h) { argument
56 super.surfaceChanged(holder, format, w, h);
/frameworks/rs/java/tests/RsTest_16/src/com/android/rs/test/
H A DRSTestView.java55 public void surfaceChanged(SurfaceHolder holder, int format, int w, int h) { argument
56 super.surfaceChanged(holder, format, w, h);
/frameworks/av/media/libeffects/lvm/lib/Reverb/src/
H A DLVREV_Process.c58 LVM_INT32 format = 1; local
125 format = 2;
147 pInput = (LVM_INT32 *)(pInput +(SamplesToProcess*format));
/frameworks/av/media/libmediaplayerservice/nuplayer/
H A DNuPlayerDecoderBase.cpp63 void NuPlayer::DecoderBase::configure(const sp<AMessage> &format) { argument
65 msg->setMessage("format", format);
123 sp<AMessage> format; local
124 CHECK(msg->findMessage("format", &format));
125 onConfigure(format);
/frameworks/av/media/libnbaio/
H A DAudioBufferProviderSource.cpp27 const NBAIO_Format& format) :
28 NBAIO_Source(format), mProvider(provider), mConsumed(0)
31 ALOG_ASSERT(Format_isValid(format));
26 AudioBufferProviderSource(AudioBufferProvider *provider, const NBAIO_Format& format) argument
/frameworks/av/media/libstagefright/
H A DMediaMuxer.cpp41 MediaMuxer::MediaMuxer(const char *path, OutputFormat format) argument
42 : mFormat(format),
44 if (format == OUTPUT_FORMAT_MPEG_4) {
46 } else if (format == OUTPUT_FORMAT_WEBM) {
56 MediaMuxer::MediaMuxer(int fd, OutputFormat format) argument
57 : mFormat(format),
59 if (format == OUTPUT_FORMAT_MPEG_4) {
61 } else if (format == OUTPUT_FORMAT_WEBM) {
80 ssize_t MediaMuxer::addTrack(const sp<AMessage> &format) { argument
83 if (format
[all...]

Completed in 1406 milliseconds

1234567891011>>