Skip to content

Commit

Permalink
vpp-decombでkernel_deinterlaceの実行に失敗する問題を修正。
Browse files Browse the repository at this point in the history
  • Loading branch information
rigaya committed Jul 18, 2024
1 parent 5dbbb8a commit 5e70841
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion VCECore/rgy_filter_decomb.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ RGY_ERR RGYFilterDecomb::deinterlacePlane(
(cl_mem)pSrcPlane->ptr[0], pSrcPlane->pitch[0],
pSrcPlane->width, pSrcPlane->height,
(cl_mem)pDmaskPlane->ptr[0], pDmaskPlane->pitch[0],
pResultIsCombed->mem(), uv420);
pResultIsCombed->mem(), uv420 ? 1 : 0);
if (err != RGY_ERR_NONE) {
AddMessage(RGY_LOG_ERROR, _T("error at %s (createMotionMap(%s)): %s.\n"),
char_to_tstring(kernel_name).c_str(), RGY_CSP_NAMES[pSrcPlane->csp], get_err_mes(err));
Expand Down

0 comments on commit 5e70841

Please sign in to comment.