/external/opencore/codecs_v2/video/m4v_h263/dec/include/ |
D | pvm4vdecoder_dpi.h | 76 IMPORT_C void DecPostProcess(uint8 *YUV) {}; in DecPostProcess() argument 78 IMPORT_C void SetReferenceYUV(uint8 *YUV) {}; in SetReferenceYUV() argument 101 …ideoFrame(uint8 *bitstream[], uint32 *timestamp, int32 *buffer_size, uint *use_ext_ts, uint8 *YUV); 102 …tstream[], uint32 *timestamp, int32 *buffer_size, uint *use_ext_ts, uint8 *YUV, TRequestStatus *aR… 105 IMPORT_C bool DecodeStillVideoFrame(uint8 *buffer, int32 buf_size, uint8 *YUV);
|
D | pvm4vdecoder.h | 87 virtual void SetReferenceYUV(uint8 *YUV); 131 virtual void DecPostProcess(uint8 *YUV);
|
D | pvvideodecoderinterface.h | 71 virtual void SetReferenceYUV(uint8 *YUV) = 0; 77 virtual void DecPostProcess(uint8 *YUV) = 0;
|
/external/opencore/codecs_v2/video/m4v_h263/dec/src/ |
D | pvm4vdecoder.cpp | 127 void PVM4VDecoder::SetReferenceYUV(uint8 *YUV) in SetReferenceYUV() argument 129 PVSetReferenceYUV((VideoDecControls *)iVideoCtrls, YUV); in SetReferenceYUV() 157 void PVM4VDecoder::DecPostProcess(uint8 *YUV) in DecPostProcess() argument 159 PVDecPostProcess((VideoDecControls *)iVideoCtrls, (uint8 *) YUV); in DecPostProcess()
|
D | pvdec_api.cpp | 1450 OSCL_EXPORT_REF void PVSetReferenceYUV(VideoDecControls *decCtrl, uint8 *YUV) in PVSetReferenceYUV() argument 1453 video->prevVop->yChan = (PIXEL *)YUV; in PVSetReferenceYUV() 1454 video->prevVop->uChan = (PIXEL *)YUV + video->size; in PVSetReferenceYUV()
|
/external/opencore/codecs_v2/omx/omx_m4venc/src/ |
D | mpeg4_enc.cpp | 830 void Mpeg4Encoder_OMX::CopyToYUVIn(uint8 *YUV, Int width, Int height, Int width_16, Int height_16) in CopyToYUVIn() argument 865 u = (UChar*)(&(YUV[size])); in CopyToYUVIn() 866 v = (UChar*)(&(YUV[size*5/4])); in CopyToYUVIn() 882 YUV += ((width - width_16) >> 1); in CopyToYUVIn() 901 YUV += (((height - height_16) >> 1) * width); in CopyToYUVIn() 909 YUV += (((height - height_16) >> 1) * width + ((width - width_16) >> 1)); in CopyToYUVIn() 940 y = (UChar*)YUV; in CopyToYUVIn()
|
/external/opencore/codecs_v2/omx/omx_h264enc/src/ |
D | avc_enc.cpp | 939 void AvcEncoder_OMX::CopyToYUVIn(uint8 *YUV, int width, int height, int width_16, int height_16) in CopyToYUVIn() argument 974 u = (uint8*)(&(YUV[size])); in CopyToYUVIn() 975 v = (uint8*)(&(YUV[size*5/4])); in CopyToYUVIn() 991 YUV += ((width - width_16) >> 1); in CopyToYUVIn() 1010 YUV += (((height - height_16) >> 1) * width); in CopyToYUVIn() 1018 YUV += (((height - height_16) >> 1) * width + ((width - width_16) >> 1)); in CopyToYUVIn() 1049 y = (uint8*)YUV; in CopyToYUVIn()
|
/external/opencore/codecs_v2/video/avc_h264/enc/src/ |
D | pvavcencoder.cpp | 730 void PVAVCEncoder::CopyToYUVIn(uint8 *YUV, int width, int height, int width_16, int height_16) in CopyToYUVIn() argument 765 u = (uint8*)(&(YUV[size])); in CopyToYUVIn() 766 v = (uint8*)(&(YUV[size*5/4])); in CopyToYUVIn() 782 YUV += ((width - width_16) >> 1); in CopyToYUVIn() 801 YUV += (((height - height_16) >> 1) * width); in CopyToYUVIn() 809 YUV += (((height - height_16) >> 1) * width + ((width - width_16) >> 1)); in CopyToYUVIn() 840 y = (uint8*)YUV; in CopyToYUVIn()
|
/external/opencore/codecs_v2/video/m4v_h263/enc/src/ |
D | pvm4vencoder.cpp | 1279 void CPVM4VEncoder::CopyToYUVIn(uint8 *YUV, Int width, Int height, Int width_16, Int height_16) in CopyToYUVIn() argument 1314 u = (UChar*)(&(YUV[size])); in CopyToYUVIn() 1315 v = (UChar*)(&(YUV[size*5/4])); in CopyToYUVIn() 1331 YUV += ((width - width_16) >> 1); in CopyToYUVIn() 1350 YUV += (((height - height_16) >> 1) * width); in CopyToYUVIn() 1358 YUV += (((height - height_16) >> 1) * width + ((width - width_16) >> 1)); in CopyToYUVIn() 1389 y = (UChar*)YUV; in CopyToYUVIn()
|
/external/qemu/distrib/sdl-1.2.12/src/video/quartz/ |
D | SDL_QuartzYUV.m | 144 SDL_SetError ("Could not init QuickTime for YUV playback"); 233 SDL_SetError ("Error trying to start YUV codec."); 266 SDL_SetError("Unsupported YUV format");
|
/external/opencore/codecs_v2/omx/omx_m4venc/include/ |
D | mpeg4_enc.h | 100 void CopyToYUVIn(uint8* YUV, int width, int height, int width_16, int height_16);
|
/external/opencore/codecs_v2/omx/omx_h264enc/include/ |
D | avc_enc.h | 99 void CopyToYUVIn(uint8* YUV, int width, int height, int width_16, int height_16);
|
/external/opencore/codecs_v2/video/avc_h264/enc/include/ |
D | pvavcencoder.h | 71 void CopyToYUVIn(uint8* YUV, int width, int height, int width_16, int height_16);
|
/external/opencore/codecs_v2/video/m4v_h263/enc/include/ |
D | pvm4vencoder.h | 142 void CopyToYUVIn(uint8 *YUV, int width, int height, int width_16, int height_16);
|
/external/opencore/fileformats/avi/parser/include/ |
D | pv_avifile_typedefs.h | 332 YUV, enumerator
|
/external/opencore/ |
D | ChangeLog | 157 - Apply new RGB to YUV color conversion libraries to OMX encoder
|