/hardware/qcom/msm8996/original-kernel-headers/media/ |
D | msm_media_info.h | 643 unsigned int alignment = 0, scanlines = 0; in VENUS_RGB_SCANLINES() local 659 scanlines = MSM_MEDIA_ALIGN(height, alignment); in VENUS_RGB_SCANLINES() 662 return scanlines; in VENUS_RGB_SCANLINES()
|
/hardware/qcom/msm8996/kernel-headers/media/ |
D | msm_media_info.h | 643 unsigned int alignment = 0, scanlines = 0; in VENUS_RGB_SCANLINES() local 659 scanlines = MSM_MEDIA_ALIGN(height, alignment); in VENUS_RGB_SCANLINES() 662 return scanlines; in VENUS_RGB_SCANLINES()
|
/hardware/qcom/media/msm8996/mm-video-v4l2/vidc/vdec/src/ |
D | omx_swvdec_utils.cpp | 435 unsigned int scanlines) in dump_op() argument 445 p_buffer_uv = p_buffer + (stride * scanlines); in dump_op()
|
D | omx_swvdec.cpp | 2401 m_frame_attributes.scanlines = ALIGN(height, alignment_scanlines_y); in set_frame_attributes() 2405 plane_size_y = m_frame_attributes.stride * m_frame_attributes.scanlines; in set_frame_attributes() 2413 m_frame_attributes.scanlines, in set_frame_attributes() 2638 p_port_def->format.video.nSliceHeight = m_frame_attributes.scanlines; in get_port_definition() 2739 m_frame_attributes.scanlines = p_port_def->format.video.nSliceHeight; in set_port_definition() 2863 size_t stride, scanlines; in describe_color_format() local 2872 scanlines = ALIGN(p_img->mHeight, DEFAULT_ALIGNMENT_SCANLINES_Y); in describe_color_format() 2884 p_img->mPlane[MediaImage::Y].mOffset = stride * scanlines; in describe_color_format() 2891 p_img->mPlane[MediaImage::Y].mOffset = stride * scanlines + 1; in describe_color_format() 2902 size_t stride, scanlines; in describe_color_format() local [all …]
|
D | omx_vdec_hevc_swvdec.cpp | 1672 int scanlines = drv_ctx.video_resolution.scan_lines; in log_output_buffers() local 1675 scanlines = drv_ctx.video_resolution.frame_height; in log_output_buffers() 1677 … scanlines = (scanlines + DEFAULT_HEIGHT_ALIGNMENT - 1) & (~(DEFAULT_HEIGHT_ALIGNMENT - 1)); in log_output_buffers() 1684 drv_ctx.video_resolution.frame_height, stride, scanlines); in log_output_buffers() 1689 temp = (char *)drv_ctx.ptr_outputbuffer[buf_index].bufferaddr + stride * scanlines; in log_output_buffers() 7437 void dump_buffer(FILE* pFile, char* buffer, int stride, int scanlines, int width, int height) in dump_buffer() argument 7452 temp = (char *)buffer + stride * scanlines; in dump_buffer() 7462 stride, scanlines, height, bytes); in dump_buffer()
|
D | omx_vdec_hevc.cpp | 5901 int scanlines = drv_ctx.video_resolution.scan_lines; in fill_buffer_done() local 5909 temp = (char *)drv_ctx.ptr_outputbuffer[buf_index].bufferaddr + stride * scanlines; in fill_buffer_done()
|
/hardware/qcom/media/msm8996/mm-video-v4l2/vidc/vdec/inc/ |
D | omx_swvdec_utils.h | 166 unsigned int scanlines);
|
D | omx_swvdec.h | 84 unsigned int scanlines; ///< frame scanlines member
|
/hardware/qcom/camera/QCamera2/HAL/test/ |
D | qcamera_test.cpp | 1404 size_t alignment, scanlines = 0; in calcYScanLines() local 1406 return scanlines; in calcYScanLines() 1409 scanlines = VIDEO_BUF_ALLIGN((size_t)height, alignment); in calcYScanLines() 1411 return scanlines; in calcYScanLines() 1426 size_t alignment, scanlines = 0; in calcUVScanLines() local 1428 return scanlines; in calcUVScanLines() 1431 scanlines = VIDEO_BUF_ALLIGN((size_t)((height + 1) >> 1), alignment); in calcUVScanLines() 1433 return scanlines; in calcUVScanLines()
|
/hardware/qcom/media/msm8996/mm-video-v4l2/vidc/venc/src/ |
D | omx_swvenc_hevc.cpp | 1154 void dump_buffer(unsigned char* buffer, int stride, int scanlines, int width, int height) in dump_buffer() argument 1177 temp = (char *)buffer + stride * scanlines; in dump_buffer() 1187 stride, scanlines, height, bytes); in dump_buffer()
|
D | omx_swvenc_mpeg4.cpp | 474 unsigned int stride, scanlines; in set_parameter() local 559 scanlines = VENUS_Y_SCANLINES(COLOR_FMT_NV12, portDefn->format.video.nSliceHeight); in set_parameter() 564 Prop.info.frame_attributes.offset_chroma = scanlines * stride; in set_parameter() 2281 int scanlines = VENUS_Y_SCANLINES(COLOR_FMT_NV12, height); in swvenc_input_log_buffers() local
|
D | video_encoder_device_v4l2.cpp | 995 int stride, scanlines; in venc_input_log_buffers() local 1036 scanlines = VENUS_Y_SCANLINES(color_format, m_sVenc_cfg.input_height); in venc_input_log_buffers() 1043 ptemp = pvirt + (stride * scanlines); in venc_input_log_buffers() 1045 ptemp = (unsigned char *)pbuffer->pBuffer + (stride * scanlines); in venc_input_log_buffers() 1053 scanlines = VENUS_RGB_SCANLINES(color_format, m_sVenc_cfg.input_height); in venc_input_log_buffers()
|
/hardware/qcom/media/msm8996/videopp/src/ |
D | omx_vdpp.cpp | 5531 int scanlines = drv_ctx.video_resolution_input.scan_lines; //h in empty_this_buffer_proxy() local 5532 …ffer_done 2.5 stride = %d, scanlines = %d , frame_height = %d", stride, scanlines, drv_ctx.video_r… in empty_this_buffer_proxy() 5540 temp = (char *)(char *)temp_buffer->bufferaddr + stride * scanlines; in empty_this_buffer_proxy() 6322 int scanlines = drv_ctx.video_resolution_output.scan_lines; //h in fill_buffer_done() local 6330 temp = (char *)drv_ctx.ptr_outputbuffer[buf_index].bufferaddr + stride * scanlines; in fill_buffer_done()
|
/hardware/qcom/media/msm8974/mm-video-v4l2/vidc/vdec/test/ |
D | omx_vdec_test.cpp | 746 int stride,scanlines,stride_c,i; in fbd_thread() local 853 … unsigned int scanlines = VENUS_Y_SCANLINES(COLOR_FMT_NV12, portFmt.format.video.nFrameHeight); in fbd_thread() local 871 view2) + stride * scanlines; in fbd_thread()
|
/hardware/qcom/media/msm8974/mm-video-v4l2/vidc/vdec/src/ |
D | omx_vdec_msm8974.cpp | 1539 int scanlines = drv_ctx.video_resolution.scan_lines; in log_output_buffers() local 1542 scanlines = drv_ctx.video_resolution.frame_height; in log_output_buffers() 1544 … scanlines = (scanlines + DEFAULT_HEIGHT_ALIGNMENT - 1) & (~(DEFAULT_HEIGHT_ALIGNMENT - 1)); in log_output_buffers() 1550 drv_ctx.video_resolution.frame_height, stride, scanlines); in log_output_buffers() 1556 temp = (char *)drv_ctx.ptr_outputbuffer[buf_index].bufferaddr + stride * scanlines; in log_output_buffers()
|
D | omx_vdec_hevc.cpp | 5937 int scanlines = drv_ctx.video_resolution.scan_lines; in fill_buffer_done() local 5945 temp = (char *)drv_ctx.ptr_outputbuffer[buf_index].bufferaddr + stride * scanlines; in fill_buffer_done()
|
/hardware/qcom/media/msm8974/mm-video-v4l2/vidc/venc/src/ |
D | video_encoder_device_v4l2.cpp | 794 int scanlines = VENUS_Y_SCANLINES(COLOR_FMT_NV12, m_sVenc_cfg.input_height); in venc_input_log_buffers() local 808 ptemp = pvirt + (stride * scanlines); in venc_input_log_buffers() 824 temp = (char *)pbuffer->pBuffer + (stride * scanlines); in venc_input_log_buffers()
|