# HG changeset patch # User rbultje # Date 1278601319 0 # Node ID e97aba4d16ea380150f198f9f784e44c379e5b3b # Parent b00c10643f2485b80a5e1a98ec00daac9784ba47 Add missing doxy for function arguments. diff -r b00c10643f24 -r e97aba4d16ea vp8.c --- 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,