[FFmpeg-cvslog] r24110 - trunk/libavcodec/vp8.c

rbultje subversion
Thu Jul 8 17:01:59 CEST 2010


Author: rbultje
Date: Thu Jul  8 17:01:59 2010
New Revision: 24110

Log:
Add missing doxy for function arguments.

Modified:
   trunk/libavcodec/vp8.c

Modified: trunk/libavcodec/vp8.c
==============================================================================
--- trunk/libavcodec/vp8.c	Thu Jul  8 17:00:47 2010	(r24109)
+++ trunk/libavcodec/vp8.c	Thu Jul  8 17:01:59 2010	(r24110)
@@ -744,6 +744,9 @@ static void decode_mb_mode(VP8Context *s
 }
 
 /**
+ * @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 @@ static void intra_predict(VP8Context *s,
  * @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,



More information about the ffmpeg-cvslog mailing list