Home
last modified time | relevance | path

Searched refs:seqInfo (Results 1 – 3 of 3) sorted by relevance

/external/opencore/codecs_v2/video/avc_h264/dec/src/
Dpvavcdecoder.cpp162 AVCDecSPSInfo seqInfo; in GetVideoDimensions() local
163 PVAVCDecGetSeqInfo((AVCHandle *)iAVCHandle, &seqInfo); in GetVideoDimensions()
164 *width = seqInfo.FrameWidth; in GetVideoDimensions()
165 *height = seqInfo.FrameHeight; in GetVideoDimensions()
168 *top = seqInfo.frame_crop_top; in GetVideoDimensions()
169 *left = seqInfo.frame_crop_left; in GetVideoDimensions()
170 *bottom = seqInfo.frame_crop_bottom; in GetVideoDimensions()
171 *right = seqInfo.frame_crop_right; in GetVideoDimensions()
Davcdec_api.cpp324 OSCL_EXPORT_REF AVCDec_Status PVAVCDecGetSeqInfo(AVCHandle *avcHandle, AVCDecSPSInfo *seqInfo) in PVAVCDecGetSeqInfo() argument
341 seqInfo->FrameWidth = PicWidthInMbs << 4; in PVAVCDecGetSeqInfo()
342 seqInfo->FrameHeight = FrameHeightInMbs << 4; in PVAVCDecGetSeqInfo()
344 seqInfo->frame_only_flag = decvid->seqParams[0]->frame_mbs_only_flag; in PVAVCDecGetSeqInfo()
348 seqInfo->frame_crop_left = 2 * decvid->seqParams[0]->frame_crop_left_offset; in PVAVCDecGetSeqInfo()
349seqInfo->frame_crop_right = seqInfo->FrameWidth - (2 * decvid->seqParams[0]->frame_crop_right_offs… in PVAVCDecGetSeqInfo()
351 if (seqInfo->frame_only_flag) in PVAVCDecGetSeqInfo()
353 seqInfo->frame_crop_top = 2 * decvid->seqParams[0]->frame_crop_top_offset; in PVAVCDecGetSeqInfo()
354seqInfo->frame_crop_bottom = seqInfo->FrameHeight - (2 * decvid->seqParams[0]->frame_crop_bottom_o… in PVAVCDecGetSeqInfo()
360 seqInfo->frame_crop_top = 4 * decvid->seqParams[0]->frame_crop_top_offset; in PVAVCDecGetSeqInfo()
[all …]
/external/opencore/codecs_v2/video/avc_h264/dec/include/
Davcdec_api.h131 OSCL_IMPORT_REF AVCDec_Status PVAVCDecGetSeqInfo(AVCHandle *avcHandle, AVCDecSPSInfo *seqInfo);