OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:YUVImage
(Results
1 - 4
of
4
) sorted by null
/frameworks/av/include/media/stagefright/
YUVImage.h
46
class
YUVImage
{
56
YUVImage
(YUVFormat yuvFormat, int32_t width, int32_t height);
60
YUVImage
(YUVFormat yuvFormat, int32_t width, int32_t height, uint8_t *buffer);
63
~
YUVImage
();
93
const
YUVImage
&srcImage,
YUVImage
&destImage);
99
const
YUVImage
&srcImage,
YUVImage
&destImage);
106
const
YUVImage
&srcImage,
YUVImage
&destImage)
[
all
...]
/cts/tests/tests/media/src/android/media/cts/
YUVImage.java
27
public class
YUVImage
extends CodecImage {
32
public
YUVImage
(
/external/libjpeg-turbo/java/org/libjpegturbo/turbojpeg/
YUVImage.java
35
* YUV, decompress to YUV, and YUV decode. A <code>
YUVImage
</code> instance
65
public class
YUVImage
{
71
* Create a new <code>
YUVImage
</code> instance backed by separate image
79
* {@link
YUVImage
above}.) If <code>strides</code> is null, then the
89
public
YUVImage
(int width, int[] strides, int height, int subsamp)
95
* Create a new <code>
YUVImage
</code> instance backed by a unified image
108
public
YUVImage
(int width, int pad, int height, int subsamp)
115
* Create a new <code>
YUVImage
</code> instance from a set of existing image
125
* @param offsets If this <code>
YUVImage
</code> instance represents a
136
* {@link
YUVImage
above}.) If <code>strides</code> is null, then th
[
all
...]
/frameworks/av/media/libstagefright/yuv/
YUVImage.cpp
18
#define LOG_TAG "
YUVImage
"
21
#include <media/stagefright/
YUVImage
.h>
26
YUVImage
::
YUVImage
(YUVFormat yuvFormat, int32_t width, int32_t height) {
39
YUVImage
::
YUVImage
(YUVFormat yuvFormat, int32_t width, int32_t height, uint8_t *buffer) {
50
size_t
YUVImage
::bufferSize(YUVFormat yuvFormat, int32_t width, int32_t height) {
62
bool
YUVImage
::initializeYUVPointers() {
83
YUVImage
::~
YUVImage
() {
[
all
...]
Completed in 392 milliseconds