Home
last modified time | relevance | path

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

/frameworks/av/media/libstagefright/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()
499 for (i = 0; i < encParams->nLayers; i++) in PVInitVideoEncoder()
504 if (encParams->nLayers > 1) in PVInitVideoEncoder()
[all …]
Dmp4lib_int.h178 Int nLayers; member
Drate_control.cpp55 Int numLayers = encParams->nLayers; in RC_Initialize()
421 Int numLayers = encParams->nLayers; in RC_UpdateBXRCParams()
/frameworks/av/media/libstagefright/codecs/m4v_h263/dec/src/
Dpvdec_api.cpp76 … int32 *volbuf_size, int nLayers, int width, int height, MP4DecodingMode mode) in PVInitVideoDecoder() argument
85 decCtrl->nLayers = nLayers; in PVInitVideoDecoder()
86 for (idx = 0; idx < nLayers; idx++) in PVInitVideoDecoder()
102 video->numberOfLayers = nLayers; in PVInitVideoDecoder()
106 if ((size_t)nLayers > SIZE_MAX / sizeof(Vol *)) { in PVInitVideoDecoder()
111 video->vol = (Vol **) oscl_malloc(nLayers * sizeof(Vol *)); in PVInitVideoDecoder()
114 video->memoryUsage += nLayers * sizeof(Vol *); in PVInitVideoDecoder()
144 if ((size_t)nLayers > SIZE_MAX / sizeof(Vop *)) { in PVInitVideoDecoder()
149 video->vopHeader = (Vop **) oscl_malloc(sizeof(Vop *) * nLayers); in PVInitVideoDecoder()
152 else oscl_memset(video->vopHeader, 0, sizeof(Vop *)*nLayers); in PVInitVideoDecoder()
[all …]
/frameworks/av/media/libstagefright/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);