00001 #ifndef __SEAM_CUBIC__
00002 #define __SEAM_CUBIC__
00003
00004 #include "cstd.h"
00005
00020 int cubic_getworksize(int nt);
00021
00053 int cubic_(float const *oin,
00054 float const *din,
00055 float const *vin,
00056 int const *nin,
00057 float const *oout,
00058 float const *dout,
00059 float *vout,
00060 int const *nout,
00061 int const *iend,
00062 float *work,
00063 int const *wl);
00064
00067 int cubicadj_getworksize(int nout, int nin);
00068
00099 int cubicadj_(float const *oin,
00100 float const *din,
00101 float const *vin,
00102 int const *nin,
00103 float const *oout,
00104 float const *dout,
00105 float *vout,
00106 int const *nout,
00107 int const *iend,
00108 float *work,
00109 int const *wl);
00110
00111 #endif
00112