| Index: source/row_common.cc | 
| diff --git a/source/row_common.cc b/source/row_common.cc | 
| index b818fb8bce085497c563d94b87a1d833321348c5..8f8b69505de84f03c0ebcb9f84e6ef613f2fdb5b 100644 | 
| --- a/source/row_common.cc | 
| +++ b/source/row_common.cc | 
| @@ -1276,6 +1276,7 @@ void I444ToARGBRow_C(const uint8* src_y, | 
| if (width & 1) { | 
| YuvPixel(src_y[0], src_u[0], src_v[0], | 
| rgb_buf + 0, rgb_buf + 1, rgb_buf + 2, yuvconstants); | 
| +    rgb_buf[3] = 255; | 
| } | 
| } | 
|  | 
| @@ -1303,6 +1304,7 @@ void I444ToABGRRow_C(const uint8* src_y, | 
| if (width & 1) { | 
| YuvPixel(src_y[0], src_u[0], src_v[0], | 
| rgb_buf + 2, rgb_buf + 1, rgb_buf + 0, yuvconstants); | 
| +    rgb_buf[3] = 255; | 
| } | 
| } | 
| #else | 
|  |