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

1 2 3 4

  /external/libvpx/libvpx/
video_common.h 18 int frame_width; member in struct:__anon24655
video_reader.c 47 reader->info.frame_width = mem_get_le16(header + 12);
video_writer.c 26 cfg.g_w = info->frame_width;
  /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...]
videocommon.h 156 void ComputeScaleMaxPixels(int frame_width, int frame_height, int max_pixels,
164 void ComputeScale(int frame_width, int frame_height, int fps,
170 int frame_width, int frame_height,
  /external/libvpx/libvpx/vp9/common/
vp9_reconintra.c 125 int frame_width, frame_height; local
141 frame_width = xd->cur_buf->y_width;
144 frame_width = xd->cur_buf->uv_width;
181 if (x0 + bs <= frame_width) {
183 } else if (x0 <= frame_width) {
184 const int r = frame_width - x0;
186 vpx_memset16(above_row + r, above_row[r - 1], x0 + bs - frame_width);
209 if (x0 + 2 * bs <= frame_width) {
216 } else if (x0 + bs <= frame_width) {
217 const int r = frame_width - x0
275 int frame_width, frame_height; local
    [all...]
  /external/libvpx/libvpx/examples/
simple_encoder.c 184 info.frame_width = (int)strtol(width_arg, NULL, 0);
189 if (info.frame_width <= 0 || info.frame_height <= 0 ||
190 (info.frame_width % 2) != 0 || (info.frame_height % 2) != 0) {
191 die("Invalid frame size: %dx%d", info.frame_width, info.frame_height);
194 if (!vpx_img_alloc(&raw, VPX_IMG_FMT_I420, info.frame_width,
207 cfg.g_w = info.frame_width;
vp8cx_set_ref.c 125 info.frame_width = (int)strtol(argv[1], NULL, 0);
130 if (info.frame_width <= 0 || info.frame_height <= 0 ||
131 (info.frame_width % 2) != 0 || (info.frame_height % 2) != 0) {
132 die("Invalid frame size: %dx%d", info.frame_width, info.frame_height);
135 if (!vpx_img_alloc(&raw, VPX_IMG_FMT_I420, info.frame_width,
145 cfg.g_w = info.frame_width;
vp9_lossless_encoder.c 81 info.frame_width = (int)strtol(argv[1], NULL, 0);
86 if (info.frame_width <= 0 || info.frame_height <= 0 ||
87 (info.frame_width % 2) != 0 || (info.frame_height % 2) != 0) {
88 die("Invalid frame size: %dx%d", info.frame_width, info.frame_height);
91 if (!vpx_img_alloc(&raw, VPX_IMG_FMT_I420, info.frame_width,
101 cfg.g_w = info.frame_width;
set_maps.c 177 info.frame_width = (int)strtol(argv[2], NULL, 0);
182 if (info.frame_width <= 0 || info.frame_height <= 0 ||
183 (info.frame_width % 2) != 0 || (info.frame_height % 2) != 0) {
184 die("Invalid frame size: %dx%d", info.frame_width, info.frame_height);
187 if (!vpx_img_alloc(&raw, VPX_IMG_FMT_I420, info.frame_width,
197 cfg.g_w = info.frame_width;
simple_decoder.c 142 info->frame_width, info->frame_height, argv[2]);
vp9cx_set_ref.c 342 info.frame_width = (int)strtol(width_arg, NULL, 0);
347 if (info.frame_width <= 0 || info.frame_height <= 0 ||
348 (info.frame_width % 2) != 0 || (info.frame_height % 2) != 0) {
349 die("Invalid frame size: %dx%d", info.frame_width, info.frame_height);
352 if (!vpx_img_alloc(&raw, VPX_IMG_FMT_I420, info.frame_width,
362 cfg.g_w = info.frame_width;
decode_with_drops.c 142 info->frame_width, info->frame_height, argv[2]);
postproc.c 127 info->frame_width, info->frame_height, argv[2]);
  /hardware/intel/common/libmix/videodecoder/
VideoDecoderMPEG2.cpp 54 if (data->codec_data->frame_width > MAX_PICTURE_WIDTH_MPEG2 ||
96 if (data->codec_data->frame_width > MAX_PICTURE_WIDTH_MPEG2 ||
114 if ((mVideoFormatInfo.width != (uint32_t)data->codec_data->frame_width ||
116 (data->codec_data->frame_width > 0) && (data->codec_data->frame_height)) {
118 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);
122 mVideoFormatInfo.width = data->codec_data->frame_width;
376 data->codec_data->frame_width,
381 mVideoFormatInfo.cropRight = (data->codec_data->frame_width > mVideoFormatInfo.width) ?
382 (data->codec_data->frame_width - mVideoFormatInfo.width) : 0;
384 if ((mVideoFormatInfo.width != (uint32_t)data->codec_data->frame_width ||
    [all...]
  /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;
webrtcvideoframe_unittest.cc 61 const int frame_width = 1920; local
71 captured_frame.width = frame_width;
73 captured_frame.data_size = (frame_width * frame_height) +
74 ((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/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
  /external/v4l2_codec2/vda/
vp9_uncompressed_header_parser.cc 693 fhdr->frame_width = reader_.ReadLiteral(16) + 1;
703 fhdr->render_width = fhdr->frame_width;
716 fhdr->frame_width = ref.frame_width;
720 DCHECK_LE(fhdr->frame_width, kMaxDimension);
733 if (2 * fhdr->frame_width >= ref.frame_width &&
735 fhdr->frame_width <= 16 * ref.frame_width &&
875 int sb64_cols = (fhdr->frame_width + 63) / 64
    [all...]
  /external/webrtc/webrtc/modules/video_coding/
receiver.h 46 uint16_t frame_width,
  /hardware/intel/common/libva/test/encode/
h264encode.c 111 static int frame_width = 176; variable
757 frame_width = atoi(optarg);
859 frame_bitrate = frame_width * frame_height * 12 * frame_rate / 50;
871 srcyuv_frames = tmp.st_size / (frame_width * frame_height * 1.5);
904 frame_width_mbaligned = (frame_width + 15) & (~15);
906 if (frame_width != frame_width_mbaligned ||
909 frame_width, frame_height,
    [all...]
  /packages/apps/LegacyCamera/jni/feature_mos/src/mosaic/
Blend.h 74 int initialize(int blendingType, int stripType, int frame_width, int frame_height);

Completed in 791 milliseconds

1 2 3 4