From 9eae3063e62df1ca47213027ad42fff6d0a9b7f4 Mon Sep 17 00:00:00 2001 From: David Oberhollenzer Date: Thu, 22 Jun 2017 13:39:31 +0200 Subject: Move libfec declarations to public header in global include directory Signed-off-by: David Oberhollenzer --- misc-utils/mcast_image.h | 32 -------------------------------- 1 file changed, 32 deletions(-) (limited to 'misc-utils/mcast_image.h') diff --git a/misc-utils/mcast_image.h b/misc-utils/mcast_image.h index 8e94ffa..5264659 100644 --- a/misc-utils/mcast_image.h +++ b/misc-utils/mcast_image.h @@ -20,35 +20,3 @@ struct image_pkt { struct image_pkt_hdr hdr; unsigned char data[PKT_SIZE]; }; - -struct fec_parms; - -/* k - number of actual data packets - * n - total number of packets including data and redundant packets - * (actual packet size isn't relevant here) */ -struct fec_parms *fec_new(int k, int n); -void fec_free(struct fec_parms *p); - -/* src - array of (n) pointers to data packets - * fec - buffer for packet to be generated - * index - index of packet to be generated (0 <= index < n) - * sz - data packet size - * - * _linear version just takes a pointer to the raw data; no - * mucking about with packet pointers. - */ -void fec_encode(struct fec_parms *code, unsigned char *src[], - unsigned char *fec, int index, int sz); -void fec_encode_linear(struct fec_parms *code, unsigned char *src, - unsigned char *fec, int index, int sz); - -/* data - array of (k) pointers to data packets, in arbitrary order (see i) - * i - indices of (data) packets - * sz - data packet size - * - * Will never fail as long as you give it (k) individual data packets. - * Will re-order the (data) pointers but not the indices -- data packets - * are ordered on return. - */ -int fec_decode(struct fec_parms *code, unsigned char *data[], - int i[], int sz); -- cgit v1.2.3