1 // Copyright (c) 2009 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
8 void FastConvertYUVToRGB32Row(const uint8_t* y_buf
,
13 FastConvertYUVToRGB32Row_C(y_buf
, u_buf
, v_buf
, rgb_buf
, width
, 1);
16 void ScaleYUVToRGB32Row(const uint8_t* y_buf
,
22 ScaleYUVToRGB32Row_C(y_buf
, u_buf
, v_buf
, rgb_buf
, width
, source_dx
);
25 void LinearScaleYUVToRGB32Row(const uint8_t* y_buf
,
31 LinearScaleYUVToRGB32Row_C(y_buf
, u_buf
, v_buf
, rgb_buf
, width
, source_dx
);