Merge "expose vp8_deblock"

This commit is contained in:
John Koleszar 2010-05-28 08:49:04 -07:00 committed by Code Review
commit 1689564bb5
2 changed files with 8 additions and 1 deletions

View File

@ -274,7 +274,7 @@ static void vp8_deblock_and_de_macro_block(YV12_BUFFER_CONFIG *source,
}
extern void vp8_deblock(YV12_BUFFER_CONFIG *source,
void vp8_deblock(YV12_BUFFER_CONFIG *source,
YV12_BUFFER_CONFIG *post,
int q,
int low_var_thresh,

View File

@ -87,4 +87,11 @@ void vp8_de_noise(YV12_BUFFER_CONFIG *source,
int low_var_thresh,
int flag,
vp8_postproc_rtcd_vtable_t *rtcd);
void vp8_deblock(YV12_BUFFER_CONFIG *source,
YV12_BUFFER_CONFIG *post,
int q,
int low_var_thresh,
int flag,
vp8_postproc_rtcd_vtable_t *rtcd);
#endif