Searched refs:scanlines (Results 1 - 19 of 19) sorted by relevance

/hardware/qcom/media/msm8996/mm-video-v4l2/vidc/vdec/inc/
H A Domx_swvdec_utils.h166 unsigned int scanlines);
H A Domx_swvdec.h84 unsigned int scanlines; ///< frame scanlines member in struct:__anon3747
137 #define DEFAULT_ALIGNMENT_SCANLINES_Y 32 ///< default Y scanlines alignment
138 #define DEFAULT_ALIGNMENT_SCANLINES_UV 16 ///< default UV scanlines alignment
/hardware/qcom/msm8996/kernel-headers/media/
H A Dmsm_media_info.h643 unsigned int alignment = 0, scanlines = 0; local
659 scanlines = MSM_MEDIA_ALIGN(height, alignment);
662 return scanlines;
/hardware/qcom/msm8996/original-kernel-headers/media/
H A Dmsm_media_info.h643 unsigned int alignment = 0, scanlines = 0; local
659 scanlines = MSM_MEDIA_ALIGN(height, alignment);
662 return scanlines;
/hardware/qcom/media/msm8996/mm-video-v4l2/vidc/vdec/src/
H A Domx_swvdec_utils.cpp429 * @param[in] scanlines: Frame scanlines.
435 unsigned int scanlines)
445 p_buffer_uv = p_buffer + (stride * scanlines);
431 dump_op(unsigned char *p_buffer, unsigned int width, unsigned int height, unsigned int stride, unsigned int scanlines) argument
H A Domx_swvdec.cpp2378 * @param[in] alignment_scanlines_y: Frame luma scanlines alignment factor.
2379 * @param[in] alignment_scanlines_uv: Frame chroma scanlines alignment factor.
2401 m_frame_attributes.scanlines = ALIGN(height, alignment_scanlines_y);
2405 plane_size_y = m_frame_attributes.stride * m_frame_attributes.scanlines;
2411 OMX_SWVDEC_LOG_HIGH("stride %d, scanlines %d, size %d",
2413 m_frame_attributes.scanlines,
2537 1, // Y scanlines alignment
2538 1, // UV scanlines alignment
2638 p_port_def->format.video.nSliceHeight = m_frame_attributes.scanlines;
2739 m_frame_attributes.scanlines
2863 size_t stride, scanlines; local
2902 size_t stride, scanlines; local
[all...]
H A Domx_vdec_hevc_swvdec.cpp1672 int scanlines = drv_ctx.video_resolution.scan_lines; local
1675 scanlines = drv_ctx.video_resolution.frame_height;
1677 scanlines = (scanlines + DEFAULT_HEIGHT_ALIGNMENT - 1) & (~(DEFAULT_HEIGHT_ALIGNMENT - 1));
1682 DEBUG_PRINT_LOW("Logging width/height(%u/%u) stride/scanlines(%u/%u)",
1684 drv_ctx.video_resolution.frame_height, stride, scanlines);
1689 temp = (char *)drv_ctx.ptr_outputbuffer[buf_index].bufferaddr + stride * scanlines;
7437 void dump_buffer(FILE* pFile, char* buffer, int stride, int scanlines, int width, int height) argument
7452 temp = (char *)buffer + stride * scanlines;
7461 DEBUG_PRINT_ERROR("stride %d, scanlines
[all...]
H A Domx_vdec_v4l2.cpp1952 int scanlines = drv_ctx.video_resolution.scan_lines; local
1955 scanlines = drv_ctx.video_resolution.frame_height;
1957 scanlines = (scanlines + DEFAULT_HEIGHT_ALIGNMENT - 1) & (~(DEFAULT_HEIGHT_ALIGNMENT - 1));
1960 DEBUG_PRINT_HIGH("Logging width/height(%u/%u) stride/scanlines(%u/%u)",
1962 drv_ctx.video_resolution.frame_height, stride, scanlines);
1968 temp = (char *)drv_ctx.ptr_outputbuffer[buf_index].bufferaddr + stride * scanlines;
H A Domx_vdec_hevc.cpp5901 int scanlines = drv_ctx.video_resolution.scan_lines; local
5909 temp = (char *)drv_ctx.ptr_outputbuffer[buf_index].bufferaddr + stride * scanlines;
/hardware/qcom/camera/QCamera2/HAL/test/
H A Dqcamera_test.cpp1395 * DESCRIPTION: Temp buffer scanlines calculation for Y plane.
1404 size_t alignment, scanlines = 0; local
1406 return scanlines;
1409 scanlines = VIDEO_BUF_ALLIGN((size_t)height, alignment);
1411 return scanlines;
1417 * DESCRIPTION: Temp buffer scanlines calculation for UV plane.
1426 size_t alignment, scanlines = 0; local
1428 return scanlines;
1431 scanlines = VIDEO_BUF_ALLIGN((size_t)((height + 1) >> 1), alignment);
1433 return scanlines;
[all...]
/hardware/qcom/media/msm8996/mm-video-v4l2/vidc/venc/src/
H A Domx_swvenc_hevc.cpp1154 void dump_buffer(unsigned char* buffer, int stride, int scanlines, int width, int height) argument
1177 temp = (char *)buffer + stride * scanlines;
1186 DEBUG_PRINT_ERROR("stride %d, scanlines %d, frame_height %d bytes_written %d",
1187 stride, scanlines, height, bytes);
H A Domx_swvenc_mpeg4.cpp474 unsigned int stride, scanlines; local
559 scanlines = VENUS_Y_SCANLINES(COLOR_FMT_NV12, portDefn->format.video.nSliceHeight);
564 Prop.info.frame_attributes.offset_chroma = scanlines * stride;
2281 int scanlines = VENUS_Y_SCANLINES(COLOR_FMT_NV12, height); local
H A Dvideo_encoder_device_v4l2.cpp995 int stride, scanlines; local
1036 scanlines = VENUS_Y_SCANLINES(color_format, m_sVenc_cfg.input_height);
1043 ptemp = pvirt + (stride * scanlines);
1045 ptemp = (unsigned char *)pbuffer->pBuffer + (stride * scanlines);
1053 scanlines = VENUS_RGB_SCANLINES(color_format, m_sVenc_cfg.input_height);
/hardware/qcom/media/msm8974/mm-video-v4l2/vidc/vdec/src/
H A Domx_vdec_hevc_swvdec.cpp1655 int scanlines = drv_ctx.video_resolution.scan_lines; local
1658 scanlines = drv_ctx.video_resolution.frame_height;
1660 scanlines = (scanlines + DEFAULT_HEIGHT_ALIGNMENT - 1) & (~(DEFAULT_HEIGHT_ALIGNMENT - 1));
1665 DEBUG_PRINT_LOW("Logging width/height(%u/%u) stride/scanlines(%u/%u)",
1667 drv_ctx.video_resolution.frame_height, stride, scanlines);
1672 temp = (char *)drv_ctx.ptr_outputbuffer[buf_index].bufferaddr + stride * scanlines;
7222 void dump_buffer(FILE* pFile, char* buffer, int stride, int scanlines, int width, int height) argument
7237 temp = (char *)buffer + stride * scanlines;
7246 DEBUG_PRINT_ERROR("stride %d, scanlines
[all...]
H A Domx_vdec_msm8974.cpp1539 int scanlines = drv_ctx.video_resolution.scan_lines; local
1542 scanlines = drv_ctx.video_resolution.frame_height;
1544 scanlines = (scanlines + DEFAULT_HEIGHT_ALIGNMENT - 1) & (~(DEFAULT_HEIGHT_ALIGNMENT - 1));
1548 DEBUG_PRINT_HIGH("Logging width/height(%u/%u) stride/scanlines(%u/%u)",
1550 drv_ctx.video_resolution.frame_height, stride, scanlines);
1556 temp = (char *)drv_ctx.ptr_outputbuffer[buf_index].bufferaddr + stride * scanlines;
H A Domx_vdec_hevc.cpp5937 int scanlines = drv_ctx.video_resolution.scan_lines; local
5945 temp = (char *)drv_ctx.ptr_outputbuffer[buf_index].bufferaddr + stride * scanlines;
/hardware/qcom/media/msm8974/mm-video-v4l2/vidc/vdec/test/
H A Domx_vdec_test.cpp746 int stride,scanlines,stride_c,i; local
853 unsigned int scanlines = VENUS_Y_SCANLINES(COLOR_FMT_NV12, portFmt.format.video.nFrameHeight); local
871 view2) + stride * scanlines;
/hardware/qcom/media/msm8996/videopp/src/
H A Domx_vdpp.cpp5531 int scanlines = drv_ctx.video_resolution_input.scan_lines; //h local
5532 DEBUG_PRINT_HIGH("omx_vdpp::empty_buffer_done 2.5 stride = %d, scanlines = %d , frame_height = %d", stride, scanlines, drv_ctx.video_resolution_input.frame_height);
5540 temp = (char *)(char *)temp_buffer->bufferaddr + stride * scanlines;
6322 int scanlines = drv_ctx.video_resolution_output.scan_lines; //h local
6330 temp = (char *)drv_ctx.ptr_outputbuffer[buf_index].bufferaddr + stride * scanlines;
/hardware/qcom/media/msm8974/mm-video-v4l2/vidc/venc/src/
H A Dvideo_encoder_device_v4l2.cpp794 int scanlines = VENUS_Y_SCANLINES(COLOR_FMT_NV12, m_sVenc_cfg.input_height); local
808 ptemp = pvirt + (stride * scanlines);
824 temp = (char *)pbuffer->pBuffer + (stride * scanlines);

Completed in 1949 milliseconds