changeset 12115:e97aba4d16ea libavcodec

Add missing doxy for function arguments.
author rbultje
date Thu, 08 Jul 2010 15:01:59 +0000
parents b00c10643f24
children 0ae85799341a
files vp8.c
diffstat 1 files changed, 4 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/vp8.c	Thu Jul 08 15:00:47 2010 +0000
+++ b/vp8.c	Thu Jul 08 15:01:59 2010 +0000
@@ -744,6 +744,9 @@
 }
 
 /**
+ * @param c arithmetic bitstream reader context
+ * @param block destination for block coefficients
+ * @param probs probabilities to use when reading trees from the bitstream
  * @param i initial coeff index, 0 unless a separate DC block is coded
  * @param zero_nhood the initial prediction context for number of surrounding
  *                   all-zero blocks (only left/top, so 0-2)
@@ -924,6 +927,7 @@
  * @param width width of src/dst plane data
  * @param height height of src/dst plane data
  * @param linesize size of a single line of plane data, including padding
+ * @param mc_func motion compensation function pointers (bilinear or sixtap MC)
  */
 static inline void vp8_mc(VP8Context *s, int luma,
                           uint8_t *dst, uint8_t *src, const VP56mv *mv,