Skip to content

Commit

Permalink
Update initialization of empty class.
Browse files Browse the repository at this point in the history
  • Loading branch information
fancycode committed Feb 6, 2023
1 parent fb92b07 commit 1a0e76b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions libde265/motion.cc
Original file line number Diff line number Diff line change
Expand Up @@ -1642,8 +1642,8 @@ void derive_spatial_luma_vector_prediction(base_context* ctx,

out_availableFlagLXN[0] = false;
out_availableFlagLXN[1] = false;
out_mvLXN[0] = MotionVector{};
out_mvLXN[1] = MotionVector{};
out_mvLXN[0] = MotionVector{0};
out_mvLXN[1] = MotionVector{0};
return;
}

Expand Down

0 comments on commit 1a0e76b

Please sign in to comment.