Mercurial > hg > wm
view Meerwald-dir/coeff.h @ 25:5a57a145bccb default tip
Added tag v0.7 for changeset 9f20bce6184e
author | Peter Meerwald-Stadler <pmeerw@pmeerw.net> |
---|---|
date | Fri, 20 Dec 2024 13:32:15 +0100 |
parents | 9f20bce6184e |
children |
line wrap: on
line source
#ifndef COEFF_H #define COEFF_H #include "wm.h" double **alloc_coeffs(int cols, int rows); double **alloc_coeffs_8x8(); void free_coeffs(double **coeffs); void print_coeffs_8x8(double **coeffs); void print_coeffs(double **coeffs, int c, int r, int w, int h); #endif