comparison vp8.c @ 12115:e97aba4d16ea libavcodec

Add missing doxy for function arguments.
author rbultje
date Thu, 08 Jul 2010 15:01:59 +0000
parents 812e23197d64
children 7501f327cfd1
comparison
equal deleted inserted replaced
12114:b00c10643f24 12115:e97aba4d16ea
742 mb->ref_frame = VP56_FRAME_CURRENT; 742 mb->ref_frame = VP56_FRAME_CURRENT;
743 } 743 }
744 } 744 }
745 745
746 /** 746 /**
747 * @param c arithmetic bitstream reader context
748 * @param block destination for block coefficients
749 * @param probs probabilities to use when reading trees from the bitstream
747 * @param i initial coeff index, 0 unless a separate DC block is coded 750 * @param i initial coeff index, 0 unless a separate DC block is coded
748 * @param zero_nhood the initial prediction context for number of surrounding 751 * @param zero_nhood the initial prediction context for number of surrounding
749 * all-zero blocks (only left/top, so 0-2) 752 * all-zero blocks (only left/top, so 0-2)
750 * @param qmul array holding the dc/ac dequant factor at position 0/1 753 * @param qmul array holding the dc/ac dequant factor at position 0/1
751 * @return 0 if no coeffs were decoded 754 * @return 0 if no coeffs were decoded
922 * @param block_w width of block (16, 8 or 4) 925 * @param block_w width of block (16, 8 or 4)
923 * @param block_h height of block (always same as block_w) 926 * @param block_h height of block (always same as block_w)
924 * @param width width of src/dst plane data 927 * @param width width of src/dst plane data
925 * @param height height of src/dst plane data 928 * @param height height of src/dst plane data
926 * @param linesize size of a single line of plane data, including padding 929 * @param linesize size of a single line of plane data, including padding
930 * @param mc_func motion compensation function pointers (bilinear or sixtap MC)
927 */ 931 */
928 static inline void vp8_mc(VP8Context *s, int luma, 932 static inline void vp8_mc(VP8Context *s, int luma,
929 uint8_t *dst, uint8_t *src, const VP56mv *mv, 933 uint8_t *dst, uint8_t *src, const VP56mv *mv,
930 int x_off, int y_off, int block_w, int block_h, 934 int x_off, int y_off, int block_w, int block_h,
931 int width, int height, int linesize, 935 int width, int height, int linesize,