diff options
author | Ronald S. Bultje <rsbultje@gmail.com> | 2010-07-08 15:01:59 +0000 |
---|---|---|
committer | Ronald S. Bultje <rsbultje@gmail.com> | 2010-07-08 15:01:59 +0000 |
commit | e394953e628405777c2441dede44749e4e8e5f6c (patch) | |
tree | 633a8c88f2a94f1427c3429dc2cc132b4970200d | |
parent | ad32966cf91d56c1f396d9ef810e91797f14f2dc (diff) | |
download | ffmpeg-e394953e628405777c2441dede44749e4e8e5f6c.tar.gz |
Add missing doxy for function arguments.
Originally committed as revision 24110 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r-- | libavcodec/vp8.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/libavcodec/vp8.c b/libavcodec/vp8.c index f35147717d..74a05f3310 100644 --- a/libavcodec/vp8.c +++ b/libavcodec/vp8.c @@ -744,6 +744,9 @@ static void decode_mb_mode(VP8Context *s, VP8Macroblock *mb, int mb_x, int mb_y, } /** + * @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, uint8_t *dst[3], VP8Macroblock *mb, * @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, |