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

1 2 3 4

  /external/libvpx/libvpx/
video_common.h 19 int frame_height; member in struct:__anon24655
video_reader.c 48 reader->info.frame_height = mem_get_le16(header + 14);
video_writer.c 27 cfg.g_h = info->frame_height;
  /external/webrtc/talk/media/base/
videocommon.cc 105 void ComputeScaleMaxPixels(int frame_width, int frame_height, int max_pixels,
113 int new_frame_height = frame_height;
134 float scale = FindLowerScale(frame_width, frame_height,
137 *scaled_height = static_cast<int>(frame_height * 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,
168 ASSERT(frame_height > 0);
185 static_cast<float>(frame_height * pixel_height);
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/examples/
simple_encoder.c 185 info.frame_height = (int)strtol(height_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);
195 info.frame_height, 1)) {
208 cfg.g_h = info.frame_height;
vp8cx_set_ref.c 126 info.frame_height = (int)strtol(argv[2], 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);
136 info.frame_height, 1)) {
146 cfg.g_h = info.frame_height;
vp9_lossless_encoder.c 82 info.frame_height = (int)strtol(argv[2], 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);
92 info.frame_height, 1)) {
102 cfg.g_h = info.frame_height;
set_maps.c 178 info.frame_height = (int)strtol(argv[3], 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);
188 info.frame_height, 1)) {
198 cfg.g_h = info.frame_height;
simple_decoder.c 142 info->frame_width, info->frame_height, argv[2]);
vp9cx_set_ref.c 343 info.frame_height = (int)strtol(height_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);
353 info.frame_height, 1)) {
363 cfg.g_h = info.frame_height;
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 55 data->codec_data->frame_height > MAX_PICTURE_HEIGHT_MPEG2) {
97 data->codec_data->frame_height > MAX_PICTURE_HEIGHT_MPEG2) {
115 mVideoFormatInfo.height != (uint32_t)data->codec_data->frame_height) &&
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);
123 mVideoFormatInfo.height = data->codec_data->frame_height;
377 data->codec_data->frame_height);
379 mVideoFormatInfo.cropBottom = (data->codec_data->frame_height > mVideoFormatInfo.height) ?
380 (data->codec_data->frame_height - mVideoFormatInfo.height) : 0;
385 mVideoFormatInfo.height != (uint32_t)data->codec_data->frame_height) &
    [all...]
  /external/webrtc/talk/media/webrtc/
webrtcvideoframefactory_unittest.cc 41 const int frame_height = 1080; local
50 captured_frame_.height = frame_height;
52 (frame_width * frame_height) +
53 ((frame_width + 1) / 2) * ((frame_height + 1) / 2) * 2;
webrtcvideoframe_unittest.cc 62 const int frame_height = 1080; local
72 captured_frame.height = frame_height;
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);
122 vaSurfaceExternBuf.height = frame_height;
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 77 unsigned int frame_height; member in struct:_VAPictureParameterBufferVP8
va_enc_vp8.h 56 unsigned int frame_height; member in struct:_VAEncSequenceParameterBufferVP8
va_dec_vp9.h 71 uint16_t frame_height; member in struct:_VADecPictureParameterBufferVP9
  /external/libvpx/libvpx/vp9/common/
vp9_reconintra.c 125 int frame_width, frame_height; local
142 frame_height = xd->cur_buf->y_height;
145 frame_height = xd->cur_buf->uv_height;
157 if (y0 + bs <= frame_height) {
160 const int extend_bottom = frame_height - y0;
275 int frame_width, frame_height; local
289 frame_height = xd->cur_buf->y_height;
292 frame_height = xd->cur_buf->uv_height;
304 if (y0 + bs <= frame_height) {
307 const int extend_bottom = frame_height - y0
    [all...]
  /external/v4l2_codec2/vda/
vp9_uncompressed_header_parser.cc 694 fhdr->frame_height = reader_.ReadLiteral(16) + 1;
704 fhdr->render_height = fhdr->frame_height;
717 fhdr->frame_height = ref.frame_height;
721 DCHECK_LE(fhdr->frame_height, kMaxDimension);
734 2 * fhdr->frame_height >= ref.frame_height &&
736 fhdr->frame_height <= 16 * ref.frame_height) {
  /external/webrtc/webrtc/modules/video_coding/
receiver.h 47 uint16_t frame_height);
  /hardware/intel/common/libva/test/encode/
h264encode.c 112 static int frame_height = 144; variable
760 frame_height = 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);
905 frame_height_mbaligned = (frame_height + 15) & (~15);
907 frame_height != frame_height_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 341 milliseconds

1 2 3 4