[FFmpeg-soc] [soc]: r3999 - in amr: amrnbdec.c amrnbfloatdec.c
diego
subversion at mplayerhq.hu
Sun Jan 25 16:35:50 CET 2009
Author: diego
Date: Sun Jan 25 16:35:48 2009
New Revision: 3999
Log:
Remove nonsensical '@return void' Doxygen comments.
Modified:
amr/amrnbdec.c
amr/amrnbfloatdec.c
Modified: amr/amrnbdec.c
==============================================================================
--- amr/amrnbdec.c Sun Jan 25 16:27:50 2009 (r3998)
+++ amr/amrnbdec.c Sun Jan 25 16:35:48 2009 (r3999)
@@ -420,8 +420,6 @@ static void decode_lsf2lsp_5(AVCodecCont
*
* @param lsp vector of lsps
* @param f pointer to the polynomial F1(z) or F2(z)
- *
- * @return void
*/
static void lsp2poly(int *lsp, int *f)
@@ -458,8 +456,6 @@ static void lsp2poly(int *lsp, int *f) {
*
* @param lsp vector of lsps
* @param lpc_coeffs pointer to a subframe of lpc coefficients
- *
- * @return void
*/
static void lsp2lpc(int *lsp, int *lpc_coeffs)
@@ -502,8 +498,6 @@ static void lsp2lpc(int *lsp, int *lpc_c
*
* @param avctx pointer to AVCodecContext
* @param lpc_coeffs array of lpc coefficients for the four subframes
- *
- * @return void
*/
static void lpc_interp_13(AVCodecContext *avctx, int **lpc_coeffs)
@@ -541,8 +535,6 @@ static void lpc_interp_13(AVCodecContext
*
* @param avctx pointer to AVCodecContext
* @param lpc_coeffs array of lpc coefficients for the four subframes
- *
- * @return void
*/
static void lpc_interp_123(AVCodecContext *avctx, int **lpc_coeffs)
@@ -593,8 +585,6 @@ static void lpc_interp_123(AVCodecContex
* @param pitch_index received adaptive codebook (pitch) index
* @param pitch_lag_int pointer to integer part of the subframe pitch lag
* @param pitch_lag_frac pointer to fractional part of the subframe pitch lag
- *
- * @return void
*/
static void decode_pitch_lag_3(AVCodecContext *avctx, int pitch_index,
@@ -664,8 +654,6 @@ static void decode_pitch_lag_3(AVCodecCo
* @param pitch_index received adaptive codebook (pitch) index
* @param pitch_lag_int pointer to integer part of the subframe pitch lag
* @param pitch_lag_frac pointer to fractional part of the subframe pitch lag
- *
- * @return void
*/
static void decode_pitch_lag_6(AVCodecContext *avctx, int pitch_index,
@@ -714,8 +702,6 @@ static void decode_pitch_lag_6(AVCodecCo
*
* @param avctx pointer to AVCodecContext
* @param excitation pointer to the excitation buffer
- *
- * @return void
*/
static void decode_pitch_vector(AVCodecContext *avctx, int *excitation)
@@ -752,8 +738,6 @@ static void decode_pitch_vector(AVCodecC
* @param pulse_position vector of pulse positions
* @param sign signs of the pulses
* @param nr_pulses number of pulses
- *
- * @return void
*/
static void reconstruct_fixed_code(int *fixed_code, int *pulse_position,
@@ -775,8 +759,6 @@ static void reconstruct_fixed_code(int *
*
* @param fixed_index positions of the eight pulses (encoded)
* @param position_index position index of the eight pulses
- *
- * @return void
*/
static void fixed2position(int16_t *fixed_index, int *position_index)
@@ -831,8 +813,6 @@ static void fixed2position(int16_t *fixe
* @param sign signs of the two pulses
* @param fixed_index positions of the two pulses
* @param fixed_code pointer to the algebraic codebook vector
- *
- * @return void
*/
static void decode_2_pulses_9bits(AVCodecContext *avctx, int sign,
@@ -861,8 +841,6 @@ static void decode_2_pulses_9bits(AVCode
* @param sign signs of the two pulses
* @param fixed_index positions of the two pulses
* @param fixed_code pointer to the algebraic codebook vector
- *
- * @return void
*/
static void decode_2_pulses_11bits(int sign, int fixed_index, int *fixed_code)
@@ -895,8 +873,6 @@ static void decode_2_pulses_11bits(int s
* @param sign signs of the three pulses
* @param fixed_index positions of the three pulses
* @param fixed_code pointer to the algebraic codebook vector
- *
- * @return void
*/
static void decode_3_pulses_14bits(int sign, int fixed_index, int *fixed_code)
@@ -927,8 +903,6 @@ static void decode_3_pulses_14bits(int s
* @param sign signs of the four pulses
* @param fixed_index positions of the four pulses
* @param fixed_code pointer to the algebraic codebook vector
- *
- * @return void
*/
static void decode_4_pulses_17bits(int sign, int fixed_index, int *fixed_code)
@@ -958,8 +932,6 @@ static void decode_4_pulses_17bits(int s
*
* @param fixed_index positions of the eight pulses
* @param fixed_code pointer to the algebraic codebook vector
- *
- * @return void
*/
static void decode_8_pulses_31bits(int16_t *fixed_index, int *fixed_code)
@@ -994,8 +966,6 @@ static void decode_8_pulses_31bits(int16
*
* @param fixed_index positions of the ten pulses
* @param fixed_code pointer to the algebraic codebook vector
- *
- * @return void
*/
static void decode_10_pulses_35bits(int16_t *fixed_index, int *fixed_code)
Modified: amr/amrnbfloatdec.c
==============================================================================
--- amr/amrnbfloatdec.c Sun Jan 25 16:27:50 2009 (r3998)
+++ amr/amrnbfloatdec.c Sun Jan 25 16:35:48 2009 (r3999)
@@ -246,8 +246,6 @@ enum Mode decode_bitstream(AMRContext *p
*
* @param lsf input lsf vector
* @param lsp output lsp vector
- *
- * @return void
*/
static void lsf2lsp(float *lsf, float *lsp)
@@ -263,8 +261,6 @@ static void lsf2lsp(float *lsf, float *l
* Decode a set of 5 split-matrix quantised lsf indices into an lsp vector
*
* @param p pointer to the AMRContext
- *
- * @return void
*/
static void lsf2lsp_5(AMRContext *p)
@@ -326,8 +322,6 @@ static void lsf2lsp_5(AMRContext *p)
* Decode a set of 3 split-matrix quantised lsf indices into an lsp vector
*
* @param p pointer to the AMRContext
- *
- * @return void
*/
static void lsf2lsp_3(AMRContext *p)
@@ -386,8 +380,6 @@ static void lsf2lsp_3(AMRContext *p)
* Interpolate lsp vectors for subframes 1 and 3
*
* @param p pointer to the AMRContext
- *
- * @return void
*/
static void interp_lsp_13(AMRContext *p)
@@ -404,8 +396,6 @@ static void interp_lsp_13(AMRContext *p)
* Interpolate lsp vectors for subframes 1, 2 and 3
*
* @param p pointer to the AMRContext
- *
- * @return void
*/
static void interp_lsp_123(AMRContext *p)
@@ -424,8 +414,6 @@ static void interp_lsp_123(AMRContext *p
*
* @param lsp input lsp vector
* @param f pointer to the polynomial F1(z) or F2(z)
- *
- * @return void
*/
static void lsp2poly(float *lsp, float *f)
@@ -449,8 +437,6 @@ static void lsp2poly(float *lsp, float *
*
* @param lsp input lsp vector
* @param lpc output lpc coefficients
- *
- * @return void
*/
static void lsp2lpc(float *lsp, float *lpc_coeffs)
@@ -488,8 +474,6 @@ static void lsp2lpc(float *lsp, float *l
* @param p pointer to the AMRContext
* @param pitch_index parsed adaptive codebook (pitch) index
* @param subframe current subframe
- *
- * @return void
*/
static void decode_pitch_lag_3(AMRContext *p, int pitch_index, int subframe)
@@ -541,8 +525,6 @@ static void decode_pitch_lag_3(AMRContex
* @param p pointer to the AMRContext
* @param pitch_index parsed adaptive codebook (pitch) index
* @param subframe current subframe
- *
- * @return void
*/
static void decode_pitch_lag_6(AMRContext *p, int pitch_index, int subframe)
@@ -575,8 +557,6 @@ static void decode_pitch_lag_6(AMRContex
* @param lag_frac fractional part of pitch lag
* @param mode current frame mode
* @param pitch_vector pointer to the pitch vector
- *
- * @return void
*/
static void interp_pitch_vector(float *prev_excitation, int lag_int,
@@ -625,8 +605,6 @@ static void interp_pitch_vector(float *p
* @param sign signs of the pulses
* @param nr_pulses number of pulses
* @param fixed_vector algebraic codebook vector
- *
- * @return void
*/
static void reconstruct_fixed_vector(int *pulse_position, int sign,
@@ -649,8 +627,6 @@ static void reconstruct_fixed_vector(int
* @param sign signs of the two pulses
* @param subframe current subframe
* @param fixed_vector pointer to the algebraic codebook vector
- *
- * @return void
*/
static void decode_2_pulses_9bits(int fixed_index, int sign, int subframe,
@@ -677,8 +653,6 @@ static void decode_2_pulses_9bits(int fi
* @param fixed_index positions of the two pulses
* @param sign signs of the two pulses
* @param fixed_vector pointer to the algebraic codebook vector
- *
- * @return void
*/
static void decode_2_pulses_11bits(int fixed_index, int sign,
@@ -708,8 +682,6 @@ static void decode_2_pulses_11bits(int f
* @param fixed_index positions of the three pulses
* @param sign signs of the three pulses
* @param fixed_vector pointer to the algebraic codebook vector
- *
- * @return void
*/
static void decode_3_pulses_14bits(int fixed_index, int sign,
@@ -740,8 +712,6 @@ static void decode_3_pulses_14bits(int f
* @param fixed_index positions of the four pulses
* @param sign signs of the four pulses
* @param fixed_vector pointer to the algebraic codebook vector
- *
- * @return void
*/
static void decode_4_pulses_17bits(int fixed_index, int sign,
@@ -771,8 +741,6 @@ static void decode_4_pulses_17bits(int f
*
* @param fixed_index positions of the eight pulses
* @param fixed_vector pointer to the algebraic codebook vector
- *
- * @return void
*/
static void decode_8_pulses_31bits(int16_t *fixed_index, float *fixed_vector)
@@ -828,8 +796,6 @@ static void decode_8_pulses_31bits(int16
*
* @param fixed_index positions of the ten pulses
* @param fixed_vector pointer to the algebraic codebook vector
- *
- * @return void
*/
static void decode_10_pulses_35bits(int16_t *fixed_index, float *fixed_vector)
More information about the FFmpeg-soc
mailing list