Browse code

Remove non-existing stray arguments from Doxygen function documentation.

Originally committed as revision 23976 to svn://svn.ffmpeg.org/ffmpeg/trunk

Diego Biurrun authored on 2010/07/02 20:19:29
Showing 9 changed files
... ...
@@ -1453,8 +1453,6 @@ static void apply_intensity_stereo(ChannelElement *cpe, int ms_present)
1453 1453
 /**
1454 1454
  * Decode a channel_pair_element; reference: table 4.4.
1455 1455
  *
1456
- * @param   elem_id Identifies the instance of a syntax element.
1457
- *
1458 1456
  * @return  Returns error status. 0 - OK, !0 - error
1459 1457
  */
1460 1458
 static int decode_cpe(AACContext *ac, GetBitContext *gb, ChannelElement *cpe)
... ...
@@ -1496,8 +1494,6 @@ static int decode_cpe(AACContext *ac, GetBitContext *gb, ChannelElement *cpe)
1496 1496
 /**
1497 1497
  * Decode coupling_channel_element; reference: table 4.8.
1498 1498
  *
1499
- * @param   elem_id Identifies the instance of a syntax element.
1500
- *
1501 1499
  * @return  Returns error status. 0 - OK, !0 - error
1502 1500
  */
1503 1501
 static int decode_cce(AACContext *ac, GetBitContext *gb, ChannelElement *che)
... ...
@@ -1864,7 +1860,6 @@ static void apply_independent_coupling(AACContext *ac,
1864 1864
 /**
1865 1865
  * channel coupling transformation interface
1866 1866
  *
1867
- * @param   index   index into coupling gain array
1868 1867
  * @param   apply_coupling_method   pointer to (in)dependent coupling function
1869 1868
  */
1870 1869
 static void apply_channel_coupling(AACContext *ac, ChannelElement *cc,
... ...
@@ -85,8 +85,6 @@ int ff_acelp_decode_4bit_to_2nd_delay3(
85 85
  * \brief Decode pitch delay of the first subframe encoded by 9 bits
86 86
  *        with 1/6 precision.
87 87
  * \param ac_index adaptive codebook index (9 bits)
88
- * \param pitch_delay_min lower bound (integer) of pitch delay interval for
89
- *                      second subframe
90 88
  *
91 89
  * \return pitch delay in 1/6 units
92 90
  *
... ...
@@ -147,7 +145,6 @@ void ff_acelp_update_past_gain(
147 147
  * \param mr_energy mean innovation energy and fixed-point correction (7.13)
148 148
  * \param quant_energy [in/out] past quantized energies (5.10)
149 149
  * \param subframe_size length of subframe
150
- * \param ma_pred_order MA prediction order
151 150
  *
152 151
  * \return quantized fixed-codebook gain (14.1)
153 152
  *
... ...
@@ -945,11 +945,8 @@ mlt_compensate_output(COOKContext *q, float *decode_buffer,
945 945
  *
946 946
  * @param q                 pointer to the COOKContext
947 947
  * @param inbuffer          pointer to the inbuffer
948
- * @param sub_packet_size   subpacket size
949 948
  * @param outbuffer         pointer to the outbuffer
950 949
  */
951
-
952
-
953 950
 static void decode_subpacket(COOKContext *q, COOKSubpacket* p, const uint8_t *inbuffer, int16_t *outbuffer) {
954 951
     int sub_packet_size = p->size;
955 952
     /* packet dump */
... ...
@@ -200,8 +200,6 @@ static const uint16_t mask_matrix[] = {0x1,   0x2,   0x10,   0x20,
200 200
  * @param avctx decoder context
201 201
  * @param data decoded frame
202 202
  * @param data_size size of the decoded frame
203
- * @param buf input buffer
204
- * @param buf_size input buffer size
205 203
  * @return 0 success, -1 on error
206 204
  */
207 205
 static int escape124_decode_frame(AVCodecContext *avctx,
... ...
@@ -123,8 +123,6 @@ static int fraps2_decode_plane(FrapsContext *s, uint8_t *dst, int stride, int w,
123 123
  * @param avctx codec context
124 124
  * @param data output AVFrame
125 125
  * @param data_size size of output data or 0 if no picture is returned
126
- * @param buf input data frame
127
- * @param buf_size size of input data frame
128 126
  * @return number of consumed bytes on success or negative if decode fails
129 127
  */
130 128
 static int decode_frame(AVCodecContext *avctx,
... ...
@@ -48,7 +48,6 @@ void ff_acelp_reorder_lsf(int16_t* lsfq, int lsfq_min_distance, int lsfq_min, in
48 48
  *
49 49
  * @param[in,out] lsf    LSFs in Hertz
50 50
  * @param min_spacing    minimum distance between two consecutive lsf values
51
- * @param                size size of the lsf vector
52 51
  */
53 52
 void ff_set_min_dist_lsf(float *lsf, double min_spacing, int order);
54 53
 
... ...
@@ -942,7 +942,6 @@ static void synthfilt_build_sb_samples (QDM2Context *q, GetBitContext *gb, int l
942 942
  * This is similar to process_subpacket_9, but for a single channel and for element [0]
943 943
  * same VLC tables as process_subpacket_9 are used.
944 944
  *
945
- * @param q         context
946 945
  * @param quantized_coeffs    pointer to quantized_coeffs[ch][0]
947 946
  * @param gb        bitreader context
948 947
  * @param length    packet length in bits
... ...
@@ -243,8 +243,6 @@ x11grab_read_header(AVFormatContext *s1, AVFormatParameters *ap)
243 243
  * @param image image to paint the mouse pointer to
244 244
  * @param s context used to retrieve original grabbing rectangle
245 245
  *          coordinates
246
- * @param x Mouse pointer coordinate
247
- * @param y Mouse pointer coordinate
248 246
  */
249 247
 static void
250 248
 paint_mouse_pointer(XImage *image, struct x11_grab *s)
... ...
@@ -29,7 +29,6 @@
29 29
  * Parse a Windows Media Server-specific SDP line
30 30
  *
31 31
  * @param s RTSP demux context
32
- * @param line the SDP line to be parsed
33 32
  */
34 33
 void ff_wms_parse_sdp_a_line(AVFormatContext *s, const char *p);
35 34