Skip to content

Commit

Permalink
add TODO comment
Browse files Browse the repository at this point in the history
  • Loading branch information
farindk committed Sep 23, 2020
1 parent e71d8e1 commit 149f4ba
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion libheif/heif_colorconversion.cc
Original file line number Diff line number Diff line change
Expand Up @@ -504,7 +504,7 @@ Op_YCbCr_to_RGB<Pixel>::convert_colorspace(const std::shared_ptr<const HeifPixel
out_g[y * out_g_stride + x] = (Pixel) (clip_int_u8(yv + cb));
out_b[y * out_b_stride + x] = (Pixel) (clip_int_u8(yv - cb - cr));
}
else {
else { // TODO: matrix_coefficients = 10,11,13,14
float yv, cb, cr;
yv = static_cast<float>(in_y[y * in_y_stride + x] );
cb = static_cast<float>(in_cb[cy * in_cb_stride + cx] - halfRange);
Expand Down

0 comments on commit 149f4ba

Please sign in to comment.