Skip to content
Snippets Groups Projects

Fix gcc9.2.0 compiling error of MR !962

1 unresolved thread

Merge request reports

Loading
Loading

Activity

Filter activity
  • Approvals
  • Assignees & reviewers
  • Comments (from bots)
  • Comments (from users)
  • Commits & branches
  • Edits
  • Labels
  • Lock status
  • Mentions
  • Merge request status
  • Tracking
2015 2015 {
2016 2016 continue;
2017 2017 }
2018 if( !( !::memcmp(getScalingListAddress(sizeId, listId), getScalingListDefaultAddress(sizeId, listId), sizeof(int)*std::min(MAX_MATRIX_COEF_NUM, (int)g_scalingListSize[sizeId])) // check value of matrix
2019 && ((sizeId < SCALING_LIST_16x16) || (getScalingListDC(sizeId,listId) == 16))) ) // check DC value
2018 if ( ::memcmp(getScalingListAddress(sizeId, listId), getScalingListDefaultAddress(sizeId, listId), sizeof(int)*std::min(MAX_MATRIX_COEF_NUM, (int)g_scalingListSize[sizeId])) // check value of matrix
2019 && !( (sizeId < SCALING_LIST_16x16) || (getScalingListDC(sizeId,listId) == 16) ) ) // check DC value
  • Kiyofumi Abe added 1 commit

    added 1 commit

    • 8441b71b - Update Fix gcc9.2.0 compiling error

    Compare with previous version

  • Author Contributor

    You are right. This change was wrong for logic. I have updated it again. In addition, I found that min() was also causing the compiling error. This change includes these fixes.

  • merged

  • Frank Bossen mentioned in commit 5fe4d7f5

    mentioned in commit 5fe4d7f5

  • Please register or sign in to reply
    Loading