/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/examples/ |
D | vp8cx_set_ref.c | 125 info.frame_height = strtol(argv[2], NULL, 0); in main() 130 info.frame_height <= 0 || in main() 132 (info.frame_height % 2) != 0) { in main() 133 die("Invalid frame size: %dx%d", info.frame_width, info.frame_height); in main() 137 info.frame_height, 1)) { in main() 148 cfg.g_h = info.frame_height; in main()
|
D | simple_encoder.c | 190 info.frame_height = strtol(height_arg, NULL, 0); in main() 195 info.frame_height <= 0 || in main() 197 (info.frame_height % 2) != 0) { in main() 198 die("Invalid frame size: %dx%d", info.frame_width, info.frame_height); in main() 202 info.frame_height, 1)) { in main() 217 cfg.g_h = info.frame_height; in main()
|
D | twopass_encoder.c | 153 info.frame_height = strtol(height_arg, NULL, 0); in main() 156 info.frame_height <= 0 || in main() 158 (info.frame_height % 2) != 0) { in main() 159 die("Invalid frame size: %dx%d", info.frame_width, info.frame_height); in main() 163 info.frame_height, 1)) { in main() 164 die("Failed to allocate image", info.frame_width, info.frame_height); in main() 178 cfg.g_h = info.frame_height; in main()
|
D | set_maps.c | 178 info.frame_height = strtol(argv[3], NULL, 0); in main() 183 info.frame_height <= 0 || in main() 185 (info.frame_height % 2) != 0) { in main() 186 die("Invalid frame size: %dx%d", info.frame_width, info.frame_height); in main() 190 info.frame_height, 1)) { in main() 201 cfg.g_h = info.frame_height; in main()
|
D | simple_decoder.c | 151 info->frame_width, info->frame_height, argv[2]); in main()
|
D | postproc.c | 134 info->frame_width, info->frame_height, argv[2]); in main()
|
D | decode_with_drops.c | 148 info->frame_width, info->frame_height, argv[2]); in main()
|
/hardware/intel/common/libmix/videodecoder/ |
D | VideoDecoderMPEG2.cpp | 102 mVideoFormatInfo.height != (uint32_t)data->codec_data->frame_height) && in decode() 103 (data->codec_data->frame_width > 0) && (data->codec_data->frame_height)) { in decode() 105 …tInfo.width,mVideoFormatInfo.height, data->codec_data->frame_width,data->codec_data->frame_height); in decode() 110 mVideoFormatInfo.height = data->codec_data->frame_height; in decode() 364 data->codec_data->frame_height); in updateFormatInfo() 366 mVideoFormatInfo.cropBottom = (data->codec_data->frame_height > mVideoFormatInfo.height) ? in updateFormatInfo() 367 … (data->codec_data->frame_height - mVideoFormatInfo.height) : 0; in updateFormatInfo() 372 mVideoFormatInfo.height != (uint32_t)data->codec_data->frame_height) && in updateFormatInfo() 373 (data->codec_data->frame_width > 0) && (data->codec_data->frame_height)) { in updateFormatInfo() 376 mVideoFormatInfo.height = data->codec_data->frame_height; in updateFormatInfo()
|
/hardware/intel/common/libva/test/basic/ |
D | test_vaSurfaceAttrib.c | 46 int frame_width=640, frame_height=480; in test() local 51 usrbuf = (unsigned char*)malloc(frame_width * frame_height * 2); in test() 122 vaSurfaceExternBuf.height = frame_height; in test() 136 …va_status = vaCreateSurfaces(va_dpy, VA_RT_FORMAT_YUV420, frame_width, frame_height, &surface_id, … in test()
|
/hardware/intel/common/libva/test/encode/ |
D | h264encode.c | 112 static int frame_height = 144; variable 760 frame_height = atoi(optarg); in process_cmdline() 859 frame_bitrate = frame_width * frame_height * 12 * frame_rate / 50; in process_cmdline() 871 srcyuv_frames = tmp.st_size / (frame_width * frame_height * 1.5); in process_cmdline() 905 frame_height_mbaligned = (frame_height + 15) & (~15); in process_cmdline() 907 frame_height != frame_height_mbaligned) { in process_cmdline() 909 frame_width, frame_height, in process_cmdline() 1309 frame_height != frame_height_mbaligned) { in render_sequence() 1314 seq_param.frame_crop_bottom_offset = (frame_height_mbaligned - frame_height)/2; in render_sequence() 1705 frame_size = frame_width * frame_height * 3 / 2; /* for YUV420 */ in load_surface() [all …]
|
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp9/common/ |
D | vp9_reconinter.c | 281 int xs, ys, x0, y0, x0_16, y0_16, frame_width, frame_height, buf_stride, in dec_build_inter_predictors() local 289 frame_height = ref_buf->y_crop_height; in dec_build_inter_predictors() 293 frame_height = ref_buf->uv_crop_height; in dec_build_inter_predictors() 349 (frame_width & 0x7) || (frame_height & 0x7)) { in dec_build_inter_predictors() 369 y0 < 0 || y0 > frame_height - 1 || y1 < 0 || y1 > frame_height - 1) { in dec_build_inter_predictors() 374 frame_height); in dec_build_inter_predictors()
|
D | vp9_reconintra.c | 326 int frame_width, frame_height; in build_intra_predictors() local 342 frame_height = xd->cur_buf->y_height; in build_intra_predictors() 345 frame_height = xd->cur_buf->uv_height; in build_intra_predictors() 358 if (y0 + bs <= frame_height) { in build_intra_predictors() 362 const int extend_bottom = frame_height - y0; in build_intra_predictors()
|
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/ |
D | video_common.h | 19 int frame_height; member
|
D | video_reader.c | 52 reader->info.frame_height = mem_get_le16(header + 14); in vpx_video_reader_open()
|
D | video_writer.c | 27 cfg.g_h = info->frame_height; in write_header()
|
/hardware/intel/img/psb_headers/libmediaparser/mixvbp/vbp_manager/include/ |
D | vbp_loader.h | 142 uint32 frame_height; member 224 int frame_height; member 418 uint32 frame_height; member
|
/hardware/intel/common/libva/va/ |
D | va_dec_vp8.h | 77 unsigned int frame_height; member
|
D | va_enc_vp8.h | 56 unsigned int frame_height; member
|
D | va_dec_vp9.h | 71 uint16_t frame_height; member
|
/hardware/intel/img/psb_video/src/ |
D | vsp_vp8.c | 170 vp8_seq->frame_height = 720; in vsp_VP8_set_default_params() 309 seq->frame_height = va_seq->frame_height; in vsp_vp8_process_seqence_param() 320 ref_frame_height = (seq->frame_height + 2 * 32 + 63) & (~63); in vsp_vp8_process_seqence_param() 409 ref_frame_height = (ctx->vp8_seq_param.frame_height + 2 * 32 + 63) & (~63); in vsp_vp8_process_picture_param() 420 pic->input_frame.height = ctx->vp8_seq_param.frame_height; in vsp_vp8_process_picture_param() 820 drv_debug_msg(VIDEO_ENCODE_DEBUG, "frame_height %d\n", seq->frame_height); in vsp_vp8_dump_commands()
|
D | tng_VP8.c | 640 obj_surface->share_info->coded_height = ctx->pic_params->frame_height; in tng__VP8_process_picture_param() 643 ctx->size_mb = ((ctx->pic_params->frame_width) * (ctx->pic_params->frame_height)) >> 8; in tng__VP8_process_picture_param() 893 …DS, DISPLAY_PICTURE_SIZE, DISPLAY_PICTURE_HEIGHT, (((ctx->pic_params->frame_height + 15) / 16) * 1… in tng__CMDS_registers_write() 902 …X_CMDS, CODED_PICTURE_SIZE, CODED_PICTURE_HEIGHT, (((ctx->pic_params->frame_height + 15) / 16) * 1… in tng__CMDS_registers_write() 987 uint32_t last_mb_row = ((ctx->pic_params->frame_height + 15) / 16) - 1; in tng__VP8_set_slice_param() 1037 …CR_VEC_VP8_FE_PIC1, VP8_FE_PIC_HEIGHT_IN_MBS_LESS1,((ctx->pic_params->frame_height + 15 )>> 4) - 1… in tng__VP8_FE_Registers_Write() 1125 …R_VEC_VP8_BE_PIC1, VP8_BE_PIC_HEIGHT_IN_MBS_LESS1, ((ctx->pic_params->frame_height + 15) >> 4) - 1… in tng__VP8_BE_Registers_Write() 1567 (ctx->pic_params->frame_height+15)/16, in tng_VP8_EndPicture()
|
/hardware/qcom/media/mm-video-v4l2/vidc/vdec/src/ |
D | omx_vdec_msm8974.cpp | 185 vdec_msg.msgdata.output_frame.picsize.frame_height = plane[0].reserved[7]; in async_message_thread() 1261 pThis->drv_ctx.video_resolution.frame_height)) { in process_event_cb() 1267 … pThis->drv_ctx.video_resolution.frame_height); in process_event_cb() 1273 pThis->drv_ctx.video_resolution.frame_height; in process_event_cb() 1307 pThis->drv_ctx.video_resolution.frame_height) { in process_event_cb() 1311 pThis->drv_ctx.video_resolution.frame_height); in process_event_cb() 1315 pThis->drv_ctx.video_resolution.frame_height) { in process_event_cb() 1319 … pThis->drv_ctx.video_resolution.frame_height); in process_event_cb() 1321 … pThis->drv_ctx.video_resolution.frame_height; in process_event_cb() 1383 if ((height != (int)drv_ctx.video_resolution.frame_height) || in update_resolution() [all …]
|
D | omx_vdec_hevc_swvdec.cpp | 1579 if ((height != (int)drv_ctx.video_resolution.frame_height) || in update_resolution() 1583 height,drv_ctx.video_resolution.frame_height); in update_resolution() 1586 drv_ctx.video_resolution.frame_height = height; in update_resolution() 1593 rectangle.nHeight = drv_ctx.video_resolution.frame_height; in update_resolution() 1599 if ((drv_ctx.video_resolution.frame_width * drv_ctx.video_resolution.frame_height > in is_video_session_supported() 1601 (drv_ctx.video_resolution.frame_width* drv_ctx.video_resolution.frame_height < in is_video_session_supported() 1607 drv_ctx.video_resolution.frame_height, in is_video_session_supported() 1625 …_debug.log_loc, drv_ctx.video_resolution.frame_width, drv_ctx.video_resolution.frame_height, this); in log_input_buffers() 1644 …_debug.log_loc, drv_ctx.video_resolution.frame_width, drv_ctx.video_resolution.frame_height, this); in log_output_buffers() 1658 scanlines = drv_ctx.video_resolution.frame_height; in log_output_buffers() [all …]
|
/hardware/ti/omap4-aah/domx/omx_proxy_component/omx_video_dec/src/ |
D | omx_proxy_videodec_utils.c | 243 int height = frameInfo->frame_height; in convertNV12ToYuv420() 283 frameInfo->frame_height * 3) / 2; in DumpVideoFrame()
|
/hardware/intel/common/libmix/mix_vbp/viddec_fw/fw/parser/ |
D | vbp_loader.h | 95 int frame_height; member
|