Searched refs:ARGBToYRow (Results 1 – 3 of 3) sorted by relevance
/external/libyuv/files/source/ |
D | convert.cc | 942 void (*ARGBToYRow)(const uint8* src_argb, uint8* dst_y, int pix); in ARGBToI420() local 946 ARGBToYRow = ARGBToYRow_C; in ARGBToI420() 952 ARGBToYRow = ARGBToYRow_Any_SSSE3; in ARGBToI420() 956 ARGBToYRow = ARGBToYRow_Unaligned_SSSE3; in ARGBToI420() 960 ARGBToYRow = ARGBToYRow_SSSE3; in ARGBToI420() 969 ARGBToYRow(src_argb, dst_y, width); in ARGBToI420() 970 ARGBToYRow(src_argb + src_stride_argb, dst_y + dst_stride_y, width); in ARGBToI420() 978 ARGBToYRow(src_argb, dst_y, width); in ARGBToI420() 1187 void (*ARGBToYRow)(const uint8* src_argb, uint8* dst_y, int pix); in RGB24ToI420() local 1191 ARGBToYRow = ARGBToYRow_C; in RGB24ToI420() [all …]
|
D | format_conversion.cc | 374 void (*ARGBToYRow)(const uint8* src_argb, uint8* dst_y, int pix) = in BayerToI420() local 384 ARGBToYRow = ARGBToYRow_SSSE3; in BayerToI420() 419 ARGBToYRow(row, dst_y, width); in BayerToI420() 420 ARGBToYRow(row + kMaxStride, dst_y + dst_stride_y, width); in BayerToI420() 429 ARGBToYRow(row, dst_y, width); in BayerToI420()
|
D | planar_functions.cc | 362 void (*ARGBToYRow)(const uint8* src_argb, uint8* dst_y, int pix) = in ARGBToI400() local 369 ARGBToYRow = ARGBToYRow_SSSE3; in ARGBToI400() 374 ARGBToYRow(src_argb, dst_y, width); in ARGBToI400() 397 void (*ARGBToYRow)(const uint8* src_argb, uint8* dst_y, int pix) = in ARGBToI422() local 405 ARGBToYRow = ARGBToYRow_Any_SSSE3; in ARGBToI422() 409 ARGBToYRow = ARGBToYRow_Unaligned_SSSE3; in ARGBToI422() 413 ARGBToYRow = ARGBToYRow_SSSE3; in ARGBToI422() 422 ARGBToYRow(src_argb, dst_y, width); in ARGBToI422()
|