| /external/skia/src/gpu/gl/ |
| GrGLIRect.h | 46 int height, 51 fBottom = glRect.fBottom + (glRect.fHeight - topOffset - height); 55 fHeight = height;
|
| /external/skia/src/gpu/vk/ |
| GrVkFramebuffer.cpp | 15 int width, int height, 43 createInfo.height = height;
|
| /external/skia/tools/ |
| picture_utils.cpp | 26 for (int y = 0; y < bitmap.height(); y++) { 49 void setup_bitmap(SkBitmap* bitmap, int width, int height) { 50 bitmap->allocN32Pixels(width, height);
|
| /external/universal-tween-engine/java/applets/src/aurelienribon/utils/swing/ |
| GroupBorder.java | 23 public void paintBorder(Component c, Graphics g, int x, int y, int width, int height) { 35 gg.fillRect(0, titleHeight, width, height); 39 gg.fillRect(0, 0, width, height);
|
| /external/webp/include/webp/ |
| encode.h | 50 int width, int height, int stride, 53 int width, int height, int stride, 56 int width, int height, int stride, 59 int width, int height, int stride, 66 int width, int height, int stride, 69 int width, int height, int stride, 72 int width, int height, int stride, 75 int width, int height, int stride, 279 VP8_ENC_ERROR_BAD_DIMENSION, // picture has invalid width/height 288 // maximum width/height allowed (inclusive), in pixel 303 int width, height; \/\/ dimensions (less or equal to WEBP_MAX_DIMENSION) member in struct:WebPPicture [all...] |
| /external/webp/src/dec/ |
| decode_vp8.h | 49 int width, height; // picture dimensions, in pixels (invariable). member in struct:VP8Io 163 // width and height. Returns 0 in case of formatting error. *width/*height 169 int* const width, int* const height); 175 // width, height and alpha. Returns 0 in case of formatting error. 176 // width/height/has_alpha can be passed NULL. 179 int* const width, int* const height, int* const has_alpha);
|
| /external/webp/src/webp/ |
| encode.h | 50 int width, int height, int stride, 53 int width, int height, int stride, 56 int width, int height, int stride, 59 int width, int height, int stride, 66 int width, int height, int stride, 69 int width, int height, int stride, 72 int width, int height, int stride, 75 int width, int height, int stride, 279 VP8_ENC_ERROR_BAD_DIMENSION, // picture has invalid width/height 288 // maximum width/height allowed (inclusive), in pixel 303 int width, height; \/\/ dimensions (less or equal to WEBP_MAX_DIMENSION) member in struct:WebPPicture [all...] |
| /external/webrtc/talk/app/webrtc/java/android/org/webrtc/ |
| CameraEnumerationAndroid.java | 67 public final int height; field in class:CameraEnumerationAndroid.CaptureFormat 76 public CaptureFormat(int width, int height, int minFramerate, 79 this.height = height; 86 return frameSize(width, height, imageFormat); 91 // The size is width * height * number of bytes per pixel. 93 public static int frameSize(int width, int height, int imageFormat) { 98 return (width * height * ImageFormat.getBitsPerPixel(imageFormat)) / 8; 103 return width + "x" + height + "@[" + minFramerate + ":" + maxFramerate + "]"; 110 return width == that.width && height == that.height && maxFramerate == that.maxFramerat [all...] |
| /external/webrtc/talk/app/webrtc/java/jni/ |
| androidvideocapturer_jni.cc | 77 void AndroidVideoCapturerJni::Start(int width, int height, int framerate, 99 m, width, height, 155 int height, 159 const uint8_t* vu_plane = y_plane + width * height; 162 buffer_pool_.CreateBuffer(width, height); 169 width, height); 176 int height, 181 surface_texture_helper_->CreateTextureFrame(width, height, handle)); 189 int height, 193 width, height, fps) [all...] |
| /external/webrtc/talk/media/base/ |
| videocommon.h | 187 int height; // Number of pixels. member in struct:cricket::VideoFormatPod 205 Construct(format.width, format.height, format.interval, format.fourcc); 210 height = h; 235 return width == format.width && height == format.height && 247 height < format.height) || 249 height == format.height && interval > format.interval); 254 // Check if both width and height are 0 [all...] |
| /external/webrtc/webrtc/base/ |
| windowpicker_unittest.cc | 50 int height = 0; local 52 &height)); 54 EXPECT_GT(height, 0);
|
| /external/webrtc/webrtc/common_video/libyuv/include/ |
| webrtc_libyuv.h | 74 // - height :frame height in pixels. 77 size_t CalcBufferSize(VideoType type, int width, int height); 102 // - src_height : src height in pixels. 126 // It is assumed that source and destination have equal height. 144 int width, int height, 148 int width, int height);
|
| /external/webrtc/webrtc/modules/video_coding/test/ |
| tester_main.cc | 21 DEFINE_int32(height, 288, "Height in pixels of the frames in the input file."); 43 args->height = FLAGS_height; 44 if (args->width < 1 || args->height < 1) {
|
| /external/webrtc/webrtc/test/ |
| encoder_settings.cc | 30 stream_settings[0].height = 180; 38 stream_settings[1].height = 360; 46 stream_settings[2].height = 720;
|
| /external/webrtc/webrtc/tools/converter/ |
| rgba_to_i420_converter.cc | 27 * --height=<height_of_input_frames> 33 " --frames_dir=. --output_file=output.yuv --width=320 --height=240\n" 39 " - height(int): Height in pixels of the frames in the input file." 55 parser.SetFlag("height", "-1"); 69 int height = strtol((parser.GetFlag("height")).c_str(), NULL, 10); local 71 if (width <= 0 || height <= 0) { 72 fprintf(stderr, "Error: width or height cannot be <= 0!\n"); 78 webrtc::test::Converter converter(width, height); [all...] |
| /external/webrtc/webrtc/tools/frame_analyzer/ |
| frame_analyzer.cc | 40 * --height=<frame_height> 46 "--reference_file=ref.yuv --test_file=test.yuv --width=320 --height=240\n" 49 " - height(int): The height of the reference and test files. " 67 parser.SetFlag("height", "-1"); 82 int height = strtol((parser.GetFlag("height")).c_str(), NULL, 10); local 84 if (width <= 0 || height <= 0) { 85 fprintf(stderr, "Error: width or height cannot be <= 0!\n"); 93 parser.GetFlag("stats_file").c_str(), width, height, [all...] |
| /external/webrtc/webrtc/tools/frame_editing/ |
| frame_editing.cc | 25 " --in_path=input.yuv --width=320 --height=240 --f=60 --interval=1 --l=120" 31 "--height(int): Height in pixels of the frames in the input file." 70 parser.SetFlag("height", "-1"); 86 int height = strtol((parser.GetFlag("height")).c_str(), NULL, 10); local 103 if (width <= 0 || height <= 0) { 104 fprintf(stderr, "Error: width or height cannot be <= 0!\n"); 107 return webrtc::EditFrames(in_path, width, height, first_frame_to_cut,
|
| /frameworks/av/media/libstagefright/codecs/m4v_h263/dec/src/ |
| mp4dec_lib.h | 150 int height, /* i */ 164 int height, /* i */ 182 int height, /* i */ 201 int height /* i */ 253 int height, 283 void H263_Deblock(uint8 *rec, int width, int height, int16 *QP_store, uint8 *mode, int chr, int T); 291 void Deringing_Luma(uint8 *Rec_Y, int width, int height, int16 *QP_store, 293 void Deringing_Chroma(uint8 *Rec_C, int width, int height, int16 *QP_store, 295 void CombinedHorzVertFilter(uint8 *rec, int width, int height, int16 *QP_store, 297 void CombinedHorzVertFilter_NoSoftDeblocking(uint8 *rec, int width, int height, int16 *QP_store [all...] |
| /frameworks/av/media/libstagefright/rtsp/ |
| VideoSource.h | 32 VideoSource(int width, int height) 34 mHeight(height), 35 mSize((width * height * 3) / 2) {
|
| /frameworks/base/core/java/android/hardware/camera2/marshal/impl/ |
| MarshalQueryableRect.java | 45 buffer.putInt(value.height()); 53 int height = buffer.getInt(); local 56 int bottom = top + height;
|
| /frameworks/base/libs/hwui/ |
| DeferredLayerUpdater.h | 41 ANDROID_API bool setSize(int width, int height) { 42 if (mWidth != width || mHeight != height) { 44 mHeight = height;
|
| LayerRenderer.h | 59 static Layer* createRenderLayer(RenderState& renderState, uint32_t width, uint32_t height); 60 static bool resizeLayer(Layer* layer, uint32_t width, uint32_t height); 61 static void updateTextureLayer(Layer* layer, uint32_t width, uint32_t height,
|
| RenderBufferCache.h | 47 * @param height The desired height of the buffer 49 RenderBuffer* get(GLenum format, const uint32_t width, const uint32_t height); 81 RenderBufferEntry(GLenum format, const uint32_t width, const uint32_t height): 82 mBuffer(nullptr), mFormat(format), mWidth(width), mHeight(height) {
|
| /frameworks/base/libs/hwui/utils/ |
| TestWindowContext.cpp | 64 mCpuConsumer->setDefaultBufferSize(mSize.width(), mSize.height()); 67 mSize.width(), mSize.height()); 77 (0, 0, mSize.width(), mSize.height()); 89 mProxy->setup(mSize.width(), mSize.height(), 800.0f, 93 mCanvas.reset(new android::uirenderer::RecordingCanvas(mSize.width(), mSize.height())); 95 mCanvas.reset(new android::uirenderer::DisplayListCanvas(mSize.width(), mSize.height())); 100 //mCanvas->reset(mSize.width(), mSize.height()); 101 mCanvas->clipRect(0, 0, mSize.width(), mSize.height(), 119 SkImageInfo::Make(mSize.width(), mSize.height(), 123 mSize.width() * mSize.height()); [all...] |
| /frameworks/base/media/mca/effect/java/android/media/effect/ |
| SingleFilterEffect.java | 67 public void apply(int inputTexId, int width, int height, int outputTexId) { 70 Frame inputFrame = frameFromTexture(inputTexId, width, height); 71 Frame outputFrame = frameFromTexture(outputTexId, width, height);
|