Home
last modified time | relevance | path

Searched refs:decCtrl (Results 1 – 2 of 2) sorted by relevance

/frameworks/av/media/module/codecs/m4v_h263/dec/include/
Dmp4dec_api.h150 …OSCL_IMPORT_REF Bool PVInitVideoDecoder(VideoDecControls *decCtrl, uint8 *volbuf[], int32 *volb…
151 Bool PVAllocVideoData(VideoDecControls *decCtrl, int width, int height, int nLayers);
152 OSCL_IMPORT_REF Bool PVCleanUpVideoDecoder(VideoDecControls *decCtrl);
153 Bool PVResetVideoDecoder(VideoDecControls *decCtrl);
154 OSCL_IMPORT_REF void PVSetReferenceYUV(VideoDecControls *decCtrl, uint8 *refYUV);
155 Bool PVDecSetReference(VideoDecControls *decCtrl, uint8 *refYUV, uint32 timestamp);
156 Bool PVDecSetEnhReference(VideoDecControls *decCtrl, uint8 *refYUV, uint32 timestamp);
157 …OSCL_IMPORT_REF Bool PVDecodeVideoFrame(VideoDecControls *decCtrl, uint8 *bitstream[], uint32 *…
158 …Bool PVDecodeVopHeader(VideoDecControls *decCtrl, uint8 *buffer[], uint32 timestamp[], int32 bu…
159 Bool PVDecodeVopBody(VideoDecControls *decCtrl, int32 buffer_size[]);
[all …]
/frameworks/av/media/module/codecs/m4v_h263/dec/src/
Dpvdec_api.cpp77 OSCL_EXPORT_REF Bool PVInitVideoDecoder(VideoDecControls *decCtrl, uint8 *volbuf[], in PVInitVideoDecoder() argument
80 VideoDecData *video = (VideoDecData *) decCtrl->videoDecoderData; in PVInitVideoDecoder()
86 oscl_memset(decCtrl, 0, sizeof(VideoDecControls)); /* fix a size bug. 03/28/2001 */ in PVInitVideoDecoder()
87 decCtrl->nLayers = nLayers; in PVInitVideoDecoder()
90 decCtrl->volbuf[idx] = volbuf[idx]; in PVInitVideoDecoder()
91 decCtrl->volbuf_size[idx] = volbuf_size[idx]; in PVInitVideoDecoder()
120 PVCleanUpVideoDecoder(decCtrl); in PVInitVideoDecoder()
123 decCtrl->videoDecoderData = (void *) video; in PVInitVideoDecoder()
124 video->videoDecControls = decCtrl; /* yes. we have a cyclic */ in PVInitVideoDecoder()
232 BitstreamReset(stream, decCtrl->volbuf[idx], decCtrl->volbuf_size[idx]); in PVInitVideoDecoder()
[all …]