Bug 551277 - Bustage fix

--HG--
extra : rebase_source : 98fe6d5ac875d9360f047937cef1b8dc02fe0070
This commit is contained in:
Chris Double 2010-04-06 15:05:36 +12:00
parent 46e4fa2d5a
commit 4b601e4a42
2 changed files with 2 additions and 2 deletions

View File

@ -18,7 +18,7 @@ void FastConvertYUVToRGB32Row(const uint8* y_buf,
const uint8* v_buf,
uint8* rgb_buf,
int width) {
FastConvertYUVToRGB32Row_C(y_buf, u_buf, v_buf, rgb_buf, width);
FastConvertYUVToRGB32Row_C(y_buf, u_buf, v_buf, rgb_buf, width, 1);
}
#else

View File

@ -15,7 +15,7 @@ void FastConvertYUVToRGB32Row(const uint8* y_buf,
const uint8* v_buf,
uint8* rgb_buf,
int width) {
FastConvertYUVToRGB32Row_C(y_buf, u_buf, v_buf, rgb_buf, width);
FastConvertYUVToRGB32Row_C(y_buf, u_buf, v_buf, rgb_buf, width, 1);
}
#else