OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:FrameHeightInMbs
(Results
1 - 14
of
14
) sorted by null
/frameworks/av/media/libstagefright/codecs/avc/common/src/
dpb.cpp
22
AVCStatus InitDPB(AVCHandle *avcHandle, AVCCommonObj *video, int
FrameHeightInMbs
, int PicWidthInMbs, bool padding)
38
framesize = (int)(((
FrameHeightInMbs
* PicWidthInMbs) << 7) * 3);
41
video->padded_size = (int)((((
FrameHeightInMbs
+ 2) * (PicWidthInMbs + 2)) << 7) * 3) - framesize;
57
dpb->num_fs = (uint32)(MaxDPBX2[mapLev2Idx[level]] << 2) / (3 *
FrameHeightInMbs
* PicWidthInMbs) + 1;
113
uint PicWidthInMbs, PicHeightInMapUnits,
FrameHeightInMbs
, PicSizeInMapUnits;
118
FrameHeightInMbs
= (2 - video->currSeqParams->frame_mbs_only_flag) * PicHeightInMapUnits ;
147
if (InitDPB(avcHandle, video,
FrameHeightInMbs
, PicWidthInMbs, padding) != AVC_SUCCESS)
152
framesize = (
FrameHeightInMbs
* PicWidthInMbs);
298
luma_framesize = (int)((((video->
FrameHeightInMbs
+ 2) * (video->PicWidthInMbs + 2)) << 8));
/hardware/intel/common/libmix/mix_vbp/viddec_fw/fw/codecs/h264/include/
h264parse_dpb.h
60
extern void h264_dpb_reset_dpb(h264_Info * pInfo,int32_t PicWidthInMbs, int32_t
FrameHeightInMbs
,
h264.h
408
int32_t
FrameHeightInMbs
;
886
int32_t
FrameHeightInMbs
;
/hardware/intel/common/libmix/mix_vbp/viddec_fw/fw/codecs/h264/parser/
h264parse.c
125
pInfo->img.
FrameHeightInMbs
= pInfo->active_SPS.sps_disp.frame_mbs_only_flag? \
657
(pInfo->img.
FrameHeightInMbs
!= p_dpb->
FrameHeightInMbs
) )
662
h264_dpb_reset_dpb(pInfo, pInfo->img.PicWidthInMbs, pInfo->img.
FrameHeightInMbs
, 1, no_output_old_pics);
h264parse_sps.c
269
int32_t PicWidthInMbs, PicHeightInMapUnits,
FrameHeightInMbs
;
459
FrameHeightInMbs
= SPS->sps_disp.frame_mbs_only_flag? PicHeightInMapUnits: (PicHeightInMapUnits<<1);
460
if((PicWidthInMbs < 2) || (PicWidthInMbs > 128) || (
FrameHeightInMbs
< 2) || (
FrameHeightInMbs
>128))
h264parse_sh.c
94
max_mb_num = pInfo->img.
FrameHeightInMbs
* pInfo->img.PicWidthInMbs;
96
max_mb_num = pInfo->img.
FrameHeightInMbs
* pInfo->img.PicWidthInMbs/2;
viddec_h264_workload.c
81
attrs->cont_size.height = pInfo->img.
FrameHeightInMbs
*16;
514
PUT_FRAME_HEIGHT_MB_BITS(pInfo->dpb.
FrameHeightInMbs
);
[
all
...]
h264parse_dpb.c
[
all
...]
/hardware/intel/img/psb_video/src/mrst/
psb_deblock.c
551
uint32_t
FrameHeightInMbs
,
577
REGIO_WRITE_FIELD_LITE(Cmd, MSVDX_CMDS, DISPLAY_PICTURE_SIZE, DISPLAY_PICTURE_HEIGHT, (
FrameHeightInMbs
* 16) - 1);
583
REGIO_WRITE_FIELD_LITE(Cmd, MSVDX_CMDS, CODED_PICTURE_SIZE, CODED_PICTURE_HEIGHT, (
FrameHeightInMbs
* 16) - 1);
597
FrameHeightInMbs
);
/frameworks/av/media/libstagefright/codecs/avc/common/include/
avclib_common.h
64
\param "
FrameHeightInMbs
" "Height of the frame in the unit of MBs."
69
AVCStatus InitDPB(AVCHandle *avcHandle, AVCCommonObj *video, int
FrameHeightInMbs
, int PicWidthInMbs, bool padding);
avcint_common.h
708
uint
FrameHeightInMbs
; /*(2-frame_mbs_only_flag)*PicHeightInMapUnits */
721
uint PicHeightInMbs; /*
FrameHeightInMbs
/(1+field_pic_flag) */
[
all
...]
/frameworks/av/media/libstagefright/codecs/avc/enc/src/
init.cpp
66
video->
FrameHeightInMbs
= (2 - extS->frame_mbs_only_flag) * video->PicHeightInMapUnits ;
72
video->
FrameHeightInMbs
= (encParam->height + 15) >> 4; /* round it to multiple of 16 */
73
video->PicHeightInMapUnits = video->
FrameHeightInMbs
;
83
video->PicHeightInMbs = video->
FrameHeightInMbs
;
[
all
...]
avcenc_api.cpp
171
framesize = video->
FrameHeightInMbs
* video->PicWidthInMbs;
/hardware/intel/img/psb_video/src/
psb_cmdbuf.h
322
uint32_t
FrameHeightInMbs
,
Completed in 767 milliseconds