expose vp8_deblock

it is used by vp8/encoder/onyx_if.c

fixes:
vp8/encoder/onyx_if.c:5189: warning: implicit declaration of function
‘vp8_deblock’
This commit is contained in:
Luca Barbato 2010-05-28 10:37:43 +02:00
parent 670af3aa59
commit e7876abb2c
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