OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:videodeccontrols
(Results
1 - 6
of
6
) sorted by null
/frameworks/av/media/libstagefright/codecs/m4v_h263/dec/include/
mp4dec_api.h
94
}
VideoDecControls
;
150
OSCL_IMPORT_REF Bool PVInitVideoDecoder(
VideoDecControls
*decCtrl, uint8 *volbuf[], int32 *volbuf_size, int nLayers, int width, int height, MP4DecodingMode mode);
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 *timestamp, int32 *buffer_size, uint use_ext_timestamp[], uint8* currYUV);
158
Bool PVDecodeVopHeader(
VideoDecControls
*decCtrl, uint8 *buffer[], uint32 timestamp[], int32 buffer_size[], VopHeaderInfo *header_info, ui (…)
[
all
...]
/frameworks/av/media/libstagefright/codecs/m4v_h263/dec/src/
pvdec_api.cpp
75
OSCL_EXPORT_REF Bool PVInitVideoDecoder(
VideoDecControls
*decCtrl, uint8 *volbuf[],
84
oscl_memset(decCtrl, 0, sizeof(
VideoDecControls
)); /* fix a size bug. 03/28/2001 */
120
video->
videoDecControls
= decCtrl; /* yes. we have a cyclic */
304
Bool PVAllocVideoData(
VideoDecControls
*decCtrl, int width, int height, int nLayers)
578
Bool PVResetVideoDecoder(
VideoDecControls
*decCtrl)
605
OSCL_EXPORT_REF Bool PVCleanUpVideoDecoder(
VideoDecControls
*decCtrl)
770
OSCL_EXPORT_REF void PVGetVideoDimensions(
VideoDecControls
*decCtrl, int32 *display_width, int32 *display_height)
777
OSCL_EXPORT_REF void PVGetBufferDimensions(
VideoDecControls
*decCtrl, int32 *width, int32 *height) {
792
uint32 PVGetVideoTimeStamp(
VideoDecControls
*decCtrl)
808
OSCL_EXPORT_REF void PVSetPostProcType(
VideoDecControls
*decCtrl, int mode
[
all
...]
mp4lib_int.h
271
VideoDecControls
*
videoDecControls
;
post_filter.cpp
46
uint8 *decodedFrame = video->
videoDecControls
->outputFrame;
62
if (PVGetDecBitrate(video->
videoDecControls
) > (100*video->frameRate*(size >> 12))) // MC_sofDeblock
vop.cpp
[
all
...]
/frameworks/av/media/libstagefright/codecs/m4v_h263/dec/
SoftMPEG4.cpp
185
PVSetPostProcType((
VideoDecControls
*) mHandle, 0);
Completed in 1042 milliseconds