Skip to content

Commit

Permalink
fix error value when SharpYuv is not available
Browse files Browse the repository at this point in the history
  • Loading branch information
farindk committed Nov 16, 2024
1 parent abacda1 commit 09ac283
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion libheif/color-conversion/rgb2yuv_sharp.cc
Original file line number Diff line number Diff line change
Expand Up @@ -273,6 +273,6 @@ Op_Any_RGB_to_YCbCr_420_Sharp::convert_colorspace(

return outimg;
#else
return nullptr;
return Error::InternalError;
#endif
}

0 comments on commit 09ac283

Please sign in to comment.