]> git.tuebingen.mpg.de Git - paraslash.git/blobdiff - fec.c
Add some more FEC source code documentation.
[paraslash.git] / fec.c
diff --git a/fec.c b/fec.c
index e543aedcfc7078d81e4c3165f2e379fa77571502..043a1f21869617869d2c6d0573bf71777611e2a3 100644 (file)
--- a/fec.c
+++ b/fec.c
@@ -480,7 +480,7 @@ int fec_new(int k, int n, struct fec_parms **result)
  * \param sz The size of the input data packets.
  *
  * Encode the \a k slices of size \a sz given by \a src and store the output
- * slice number \a idx in \dst.
+ * slice number \a idx in \dst.
  */
 void fec_encode(struct fec_parms *parms, const unsigned char * const *src,
                unsigned char *dst, int idx, int sz)
@@ -553,7 +553,7 @@ err:
 /**
  * Decode one slice from the group of received slices.
  *
- * \param code Pointer to fec params structure.
+ * \param parms Pointer to fec params structure.
  * \param data Pointers to received packets.
  * \param idx Pointer to packet indices (gets modified).
  * \param sz Size of each packet.