Searched refs:frame_width (Results 1 - 25 of 49) sorted by relevance

12

/external/chromium_org/third_party/libvpx/source/libvpx/
H A Dvideo_common.h18 int frame_width; member in struct:__anon13034
H A Dvideo_reader.c51 reader->info.frame_width = mem_get_le16(header + 12);
H A Dvideo_writer.c26 cfg.g_w = info->frame_width;
/external/libvpx/libvpx/
H A Dvideo_common.h18 int frame_width; member in struct:__anon24830
H A Dvideo_reader.c51 reader->info.frame_width = mem_get_le16(header + 12);
H A Dvideo_writer.c26 cfg.g_w = info->frame_width;
/external/chromium_org/third_party/libjingle/source/talk/media/base/
H A Dvideocommon.cc102 void ComputeScaleMaxPixels(int frame_width, int frame_height, int max_pixels, argument
112 int new_frame_width = frame_width;
134 float scale = FindLowerScale(frame_width, frame_height,
136 *scaled_width = static_cast<int>(frame_width * scale + .5f);
142 void ComputeScale(int frame_width, int frame_height, int fps, argument
151 frame_width, frame_height, max_pixels, scaled_width, scaled_height);
157 int frame_width, int frame_height,
167 ASSERT(frame_width > 0);
184 float frame_aspect = static_cast<float>(frame_width * pixel_width) /
199 frame_width
156 ComputeCrop(int cropped_format_width, int cropped_format_height, int frame_width, int frame_height, int pixel_width, int pixel_height, int rotation, int* cropped_width, int* cropped_height) argument
[all...]
/external/chromium_org/ui/base/cursor/
H A Dcursor_util.cc88 int frame_width = bitmap.height(); local
89 int frame_height = frame_width;
91 DCHECK_EQ(total_width % frame_width, 0);
92 int frame_count = total_width / frame_width;
98 int x_offset = frame_width * frame;
99 DCHECK_LE(x_offset + frame_width, total_width);
102 bitmap, x_offset, 0, frame_width, frame_height);
103 DCHECK_EQ(frame_width, cropped.width());
/external/qemu/android/camera/
H A Dcamera-capture.h55 int frame_width,
H A Dcamera-capture-mac.m287 const int frame_width = CVPixelBufferGetWidth(current_frame);
298 frame_width, frame_height,
424 int frame_width,
440 return [mcd->device start_capturing:frame_width:frame_height];
/external/chromium_org/third_party/libvpx/source/libvpx/examples/
H A Dsimple_encoder.c190 info.frame_width = strtol(width_arg, NULL, 0);
195 if (info.frame_width <= 0 ||
197 (info.frame_width % 2) != 0 ||
199 die("Invalid frame size: %dx%d", info.frame_width, info.frame_height);
202 if (!vpx_img_alloc(&raw, VPX_IMG_FMT_I420, info.frame_width,
217 cfg.g_w = info.frame_width;
H A Dvp8cx_set_ref.c128 info.frame_width = strtol(argv[1], NULL, 0);
133 if (info.frame_width <= 0 ||
135 (info.frame_width % 2) != 0 ||
137 die("Invalid frame size: %dx%d", info.frame_width, info.frame_height);
140 if (!vpx_img_alloc(&raw, VPX_IMG_FMT_I420, info.frame_width,
151 cfg.g_w = info.frame_width;
H A Dvp9_lossless_encoder.c84 info.frame_width = strtol(argv[1], NULL, 0);
89 if (info.frame_width <= 0 ||
91 (info.frame_width % 2) != 0 ||
93 die("Invalid frame size: %dx%d", info.frame_width, info.frame_height);
96 if (!vpx_img_alloc(&raw, VPX_IMG_FMT_I420, info.frame_width,
107 cfg.g_w = info.frame_width;
H A Dset_maps.c185 info.frame_width = strtol(argv[2], NULL, 0);
190 if (info.frame_width <= 0 ||
192 (info.frame_width % 2) != 0 ||
194 die("Invalid frame size: %dx%d", info.frame_width, info.frame_height);
197 if (!vpx_img_alloc(&raw, VPX_IMG_FMT_I420, info.frame_width,
208 cfg.g_w = info.frame_width;
H A Dsimple_decoder.c147 info->frame_width, info->frame_height, argv[2]);
/external/libvpx/libvpx/examples/
H A Dsimple_encoder.c189 info.frame_width = strtol(width_arg, NULL, 0);
194 if (info.frame_width <= 0 ||
196 (info.frame_width % 2) != 0 ||
198 die("Invalid frame size: %dx%d", info.frame_width, info.frame_height);
201 if (!vpx_img_alloc(&raw, VPX_IMG_FMT_I420, info.frame_width,
216 cfg.g_w = info.frame_width;
H A Dvp8cx_set_ref.c124 info.frame_width = strtol(argv[1], NULL, 0);
129 if (info.frame_width <= 0 ||
131 (info.frame_width % 2) != 0 ||
133 die("Invalid frame size: %dx%d", info.frame_width, info.frame_height);
136 if (!vpx_img_alloc(&raw, VPX_IMG_FMT_I420, info.frame_width,
147 cfg.g_w = info.frame_width;
H A Dtwopass_encoder.c152 info.frame_width = strtol(width_arg, NULL, 0);
155 if (info.frame_width <= 0 ||
157 (info.frame_width % 2) != 0 ||
159 die("Invalid frame size: %dx%d", info.frame_width, info.frame_height);
162 if (!vpx_img_alloc(&raw, VPX_IMG_FMT_I420, info.frame_width,
164 die("Failed to allocate image", info.frame_width, info.frame_height);
177 cfg.g_w = info.frame_width;
H A Dset_maps.c177 info.frame_width = strtol(argv[2], NULL, 0);
182 if (info.frame_width <= 0 ||
184 (info.frame_width % 2) != 0 ||
186 die("Invalid frame size: %dx%d", info.frame_width, info.frame_height);
189 if (!vpx_img_alloc(&raw, VPX_IMG_FMT_I420, info.frame_width,
200 cfg.g_w = info.frame_width;
H A Dsimple_decoder.c151 info->frame_width, info->frame_height, argv[2]);
/external/chromium_org/third_party/libva/va/
H A Dva_dec_vp8.h75 unsigned int frame_width; member in struct:_VAPictureParameterBufferVP8
/external/libvpx/libvpx/vp9/common/
H A Dvp9_reconintra.c324 int frame_width, frame_height; local
339 frame_width = xd->cur_buf->y_width;
342 frame_width = xd->cur_buf->uv_width;
379 if (x0 + 2 * bs <= frame_width) {
386 } else if (x0 + bs <= frame_width) {
387 const int r = frame_width - x0;
391 x0 + 2 * bs - frame_width);
396 } else if (x0 <= frame_width) {
397 const int r = frame_width - x0;
401 x0 + 2 * bs - frame_width);
[all...]
/external/chromium_org/third_party/libvpx/source/libvpx/vp9/common/
H A Dvp9_reconintra.c645 int frame_width, frame_height; local
658 frame_width = xd->cur_buf->y_width;
661 frame_width = xd->cur_buf->uv_width;
699 if (x0 + 2 * bs <= frame_width) {
706 } else if (x0 + bs <= frame_width) {
707 const int r = frame_width - x0;
711 x0 + 2 * bs - frame_width);
716 } else if (x0 <= frame_width) {
717 const int r = frame_width - x0;
721 x0 + 2 * bs - frame_width);
774 int frame_width, frame_height; local
[all...]
/external/chromium_org/third_party/libjingle/source/talk/media/webrtc/
H A Dwebrtcvideoframe_unittest.cc37 const int frame_width = 1920; local
48 captured_frame.width = frame_width;
50 captured_frame.data_size = (frame_width * frame_height) +
51 ((frame_width + 1) / 2) * ((frame_height + 1) / 2) * 2;
/external/chromium_org/third_party/webrtc/modules/video_coding/main/source/
H A Dreceiver.h49 uint16_t frame_width,

Completed in 1099 milliseconds

12