diff options
Diffstat (limited to 'mcast_image.h')
-rw-r--r-- | mcast_image.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mcast_image.h b/mcast_image.h index 07b6e31..8e94ffa 100644 --- a/mcast_image.h +++ b/mcast_image.h @@ -24,7 +24,7 @@ struct image_pkt { struct fec_parms; /* k - number of actual data packets - * n - total number of packets including data and redundant 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); @@ -45,7 +45,7 @@ void fec_encode_linear(struct fec_parms *code, unsigned char *src, /* 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. |