You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The array is_pcm should be memseted to zero, at the beginning of each frame, or deblocking will be encounter an error.
//memset is_pcm to zeros
if (s->sh.first_slice_in_pic_flag)
{
memset(s->is_pcm, 0, s->sps->min_pu_width * s->sps->min_pu_height);
}
this code should be add into OpenHEVC.
you all should check if this is a bug.
The text was updated successfully, but these errors were encountered:
The array is_pcm should be memseted to zero, at the beginning of each frame, or deblocking will encounter an error.
//memset is_pcm to zeros
if (s->sh.first_slice_in_pic_flag)
{
memset(s->is_pcm, 0, s->sps->min_pu_width * s->sps->min_pu_height);
}
this code should be add into OpenHEVC.
you all should check if this is a bug.
The array is_pcm should be memseted to zero, at the beginning of each frame, or deblocking will be encounter an error.
//memset is_pcm to zeros
if (s->sh.first_slice_in_pic_flag)
{
memset(s->is_pcm, 0, s->sps->min_pu_width * s->sps->min_pu_height);
}
this code should be add into OpenHEVC.
you all should check if this is a bug.
The text was updated successfully, but these errors were encountered: