Skip to content
Snippets Groups Projects
Commit a1914dbb authored by James Zern's avatar James Zern
Browse files

vp9_reset_lfm: harmonize function signature

Change-Id: Ifb0f41fb43564a777be29b4c66443b366fa146a3
parent d2a953e0
No related branches found
No related tags found
No related merge requests found
...@@ -1737,7 +1737,7 @@ void vp9_loop_filter_data_reset( ...@@ -1737,7 +1737,7 @@ void vp9_loop_filter_data_reset(
memcpy(lf_data->planes, planes, sizeof(lf_data->planes)); memcpy(lf_data->planes, planes, sizeof(lf_data->planes));
} }
void vp9_reset_lfm(VP9_COMMON *cm) { void vp9_reset_lfm(VP9_COMMON *const cm) {
if (cm->lf.filter_level) { if (cm->lf.filter_level) {
memset(cm->lf.lfm, 0, memset(cm->lf.lfm, 0,
((cm->mi_rows + (MI_BLOCK_SIZE - 1)) >> 3) * cm->lf.lfm_stride * ((cm->mi_rows + (MI_BLOCK_SIZE - 1)) >> 3) * cm->lf.lfm_stride *
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment