Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

The array is_pcm should be memset to zero, at the beginning of each frame. #39

Open
shakingWaves opened this issue Dec 1, 2015 · 1 comment

Comments

@shakingWaves
Copy link

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.

@shakingWaves
Copy link
Author

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.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant