HomeSort by relevance Sort by last modified time
    Searched refs:frame_width (Results 1 - 25 of 95) sorted by null

1 2 3 4

  /external/libvpx/libvpx/
video_common.h 18 int frame_width; member in struct:__anon17107
video_reader.c 51 reader->info.frame_width = mem_get_le16(header + 12);
video_writer.c 26 cfg.g_w = info->frame_width;
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/
video_common.h 18 int frame_width; member in struct:__anon30585
video_reader.c 51 reader->info.frame_width = mem_get_le16(header + 12);
  /external/webrtc/talk/media/base/
videocommon.cc 105 void ComputeScaleMaxPixels(int frame_width, int frame_height, int max_pixels,
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,
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 = static_cast<int>((crop_aspect * frame_height
    [all...]
  /external/libvpx/libvpx/vp9/common/
vp9_reconintra.c 133 int frame_width, frame_height; local
145 frame_width = xd->cur_buf->y_width;
148 frame_width = xd->cur_buf->uv_width;
186 if (x0 + 2 * bs <= frame_width) {
193 } else if (x0 + bs <= frame_width) {
194 const int r = frame_width - x0;
198 x0 + 2 * bs - frame_width);
203 } else if (x0 <= frame_width) {
204 const int r = frame_width - x0;
207 x0 + 2 * bs - frame_width);
255 int frame_width, frame_height; local
    [all...]
  /external/libvpx/libvpx/examples/
simple_encoder.c 190 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;
vp8cx_set_ref.c 128 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;
vp9_lossless_encoder.c 84 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;
set_maps.c 185 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;
simple_decoder.c 147 info->frame_width, info->frame_height, argv[2]);
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/examples/
simple_encoder.c 189 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;
vp8cx_set_ref.c 124 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;
twopass_encoder.c 152 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;
set_maps.c 177 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;
simple_decoder.c 151 info->frame_width, info->frame_height, argv[2]);
  /external/webrtc/talk/media/webrtc/
webrtcvideoframefactory_unittest.cc 40 const int frame_width = 1920; local
49 captured_frame_.width = frame_width;
52 (frame_width * frame_height) +
53 ((frame_width + 1) / 2) * ((frame_height + 1) / 2) * 2;
  /hardware/intel/common/libva/test/basic/
test_vaSurfaceAttrib.c 46 int frame_width=640, frame_height=480; local
51 usrbuf = (unsigned char*)malloc(frame_width * frame_height * 2);
121 vaSurfaceExternBuf.width = frame_width;
123 vaSurfaceExternBuf.pitches[0] = vaSurfaceExternBuf.pitches[1] = vaSurfaceExternBuf.pitches[2] = frame_width;
136 va_status = vaCreateSurfaces(va_dpy, VA_RT_FORMAT_YUV420, frame_width, frame_height, &surface_id, 1, attrib_list, 2);
  /hardware/intel/common/libmix/videodecoder/
VideoDecoderMPEG2.cpp 101 if ((mVideoFormatInfo.width != (uint32_t)data->codec_data->frame_width ||
103 (data->codec_data->frame_width > 0) && (data->codec_data->frame_height)) {
105 ITRACE("Video size is changed. from %dx%d to %dx%d\n",mVideoFormatInfo.width,mVideoFormatInfo.height, data->codec_data->frame_width,data->codec_data->frame_height);
109 mVideoFormatInfo.width = data->codec_data->frame_width;
363 data->codec_data->frame_width,
368 mVideoFormatInfo.cropRight = (data->codec_data->frame_width > mVideoFormatInfo.width) ?
369 (data->codec_data->frame_width - mVideoFormatInfo.width) : 0;
371 if ((mVideoFormatInfo.width != (uint32_t)data->codec_data->frame_width ||
373 (data->codec_data->frame_width > 0) && (data->codec_data->frame_height)) {
375 mVideoFormatInfo.width = data->codec_data->frame_width;
    [all...]
  /hardware/intel/common/libva/va/
va_dec_vp8.h 75 unsigned int frame_width; member in struct:_VAPictureParameterBufferVP8
va_enc_vp8.h 54 unsigned int frame_width; member in struct:_VAEncSequenceParameterBufferVP8
va_dec_vp9.h 67 uint16_t frame_width; member in struct:_VADecPictureParameterBufferVP9
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp9/common/
vp9_reconintra.c 326 int frame_width, frame_height; local
341 frame_width = xd->cur_buf->y_width;
344 frame_width = xd->cur_buf->uv_width;
381 if (x0 + 2 * bs <= frame_width) {
388 } else if (x0 + bs <= frame_width) {
389 const int r = frame_width - x0;
393 x0 + 2 * bs - frame_width);
398 } else if (x0 <= frame_width) {
399 const int r = frame_width - x0;
403 x0 + 2 * bs - frame_width);
    [all...]
  /external/webrtc/webrtc/modules/video_coding/
receiver.h 46 uint16_t frame_width,

Completed in 217 milliseconds

1 2 3 4