Home
last modified time | relevance | path

Searched refs:nLayers (Results 1 – 5 of 5) sorted by relevance

/frameworks/av/media/codecs/m4v_h263/enc/src/
Dmp4enc_api.cpp197 Int nLayers, idx, i, j; in PVInitVideoEncoder() local
243 encParams->nLayers = encOption->numLayers; in PVInitVideoEncoder()
250 if (encParams->nLayers != 1) in PVInitVideoEncoder()
262 if (encParams->nLayers < 2) in PVInitVideoEncoder()
266 for (i = 0; i < encParams->nLayers; i++) in PVInitVideoEncoder()
369 encParams->nLayers = 1; in PVInitVideoEncoder()
388 encParams->nLayers = 1; in PVInitVideoEncoder()
492 for (i = 0; i < encParams->nLayers; i++) in PVInitVideoEncoder()
502 for (i = 0; i < encParams->nLayers; i++) in PVInitVideoEncoder()
507 if (encParams->nLayers > 1) in PVInitVideoEncoder()
[all …]
Dmp4lib_int.h179 Int nLayers; member
Drate_control.cpp55 Int numLayers = encParams->nLayers; in RC_Initialize()
421 Int numLayers = encParams->nLayers; in RC_UpdateBXRCParams()
/frameworks/av/media/codecs/m4v_h263/dec/src/
Dpvdec_api.cpp78 … int32 *volbuf_size, int nLayers, int width, int height, MP4DecodingMode mode) in PVInitVideoDecoder() argument
87 decCtrl->nLayers = nLayers; in PVInitVideoDecoder()
88 for (idx = 0; idx < nLayers; idx++) in PVInitVideoDecoder()
104 video->numberOfLayers = nLayers; in PVInitVideoDecoder()
108 if ((size_t)nLayers > SIZE_MAX / sizeof(Vol *)) { in PVInitVideoDecoder()
114 video->vol = (Vol **) oscl_malloc(nLayers * sizeof(Vol *)); in PVInitVideoDecoder()
117 video->memoryUsage += nLayers * sizeof(Vol *); in PVInitVideoDecoder()
148 if ((size_t)nLayers > SIZE_MAX / sizeof(Vop *)) { in PVInitVideoDecoder()
153 video->vopHeader = (Vop **) oscl_malloc(sizeof(Vop *) * nLayers); in PVInitVideoDecoder()
156 else oscl_memset(video->vopHeader, 0, sizeof(Vop *)*nLayers); in PVInitVideoDecoder()
[all …]
/frameworks/av/media/codecs/m4v_h263/dec/include/
Dmp4dec_api.h89 int nLayers; member
150 …oder(VideoDecControls *decCtrl, uint8 *volbuf[], int32 *volbuf_size, int nLayers, int width, int h…
151 Bool PVAllocVideoData(VideoDecControls *decCtrl, int width, int height, int nLayers);