Home
last modified time | relevance | path

Searched refs:YUV (Results 1 – 16 of 16) sorted by relevance

/external/opencore/codecs_v2/video/m4v_h263/dec/include/
Dpvm4vdecoder_dpi.h76 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);
Dpvm4vdecoder.h87 virtual void SetReferenceYUV(uint8 *YUV);
131 virtual void DecPostProcess(uint8 *YUV);
Dpvvideodecoderinterface.h71 virtual void SetReferenceYUV(uint8 *YUV) = 0;
77 virtual void DecPostProcess(uint8 *YUV) = 0;
/external/opencore/codecs_v2/video/m4v_h263/dec/src/
Dpvm4vdecoder.cpp127 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()
Dpvdec_api.cpp1450 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/
Dmpeg4_enc.cpp830 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/
Davc_enc.cpp939 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/
Dpvavcencoder.cpp730 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/
Dpvm4vencoder.cpp1279 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/
DSDL_QuartzYUV.m144 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/
Dmpeg4_enc.h100 void CopyToYUVIn(uint8* YUV, int width, int height, int width_16, int height_16);
/external/opencore/codecs_v2/omx/omx_h264enc/include/
Davc_enc.h99 void CopyToYUVIn(uint8* YUV, int width, int height, int width_16, int height_16);
/external/opencore/codecs_v2/video/avc_h264/enc/include/
Dpvavcencoder.h71 void CopyToYUVIn(uint8* YUV, int width, int height, int width_16, int height_16);
/external/opencore/codecs_v2/video/m4v_h263/enc/include/
Dpvm4vencoder.h142 void CopyToYUVIn(uint8 *YUV, int width, int height, int width_16, int height_16);
/external/opencore/fileformats/avi/parser/include/
Dpv_avifile_typedefs.h332 YUV, enumerator
/external/opencore/
DChangeLog157 - Apply new RGB to YUV color conversion libraries to OMX encoder