/usr/include/minidjvu/alg/average.h is in libminidjvu-dev 0.8.svn.2010.05.06+dfsg-5build1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 | /*
* average.h - computing average bitmap
*/
/* Compute an "average" bitmap and return it.
* The result is to be destroyed with mdjvu_bitmap_destroy().
*
* Additionally, centers must be given.
*/
MDJVU_FUNCTION mdjvu_bitmap_t mdjvu_average(mdjvu_bitmap_t *bitmaps,
int32 n,
int32 *centers_x,
int32 *centers_y);
|