[FFmpeg-cvslog] r23976 - in trunk: libavcodec/aacdec.c libavcodec/acelp_pitch_delay.h libavcodec/cook.c libavcodec/escape124.c libavcodec/fraps.c libavcodec/lsp.h libavcodec/qdm2.c libavdevice/x11grab.c libavforma...

diego subversion
Fri Jul 2 13:19:30 CEST 2010


Author: diego
Date: Fri Jul  2 13:19:29 2010
New Revision: 23976

Log:
Remove non-existing stray arguments from Doxygen function documentation.

Modified:
   trunk/libavcodec/aacdec.c
   trunk/libavcodec/acelp_pitch_delay.h
   trunk/libavcodec/cook.c
   trunk/libavcodec/escape124.c
   trunk/libavcodec/fraps.c
   trunk/libavcodec/lsp.h
   trunk/libavcodec/qdm2.c
   trunk/libavdevice/x11grab.c
   trunk/libavformat/rtpdec_asf.h

Modified: trunk/libavcodec/aacdec.c
==============================================================================
--- trunk/libavcodec/aacdec.c	Fri Jul  2 13:13:23 2010	(r23975)
+++ trunk/libavcodec/aacdec.c	Fri Jul  2 13:19:29 2010	(r23976)
@@ -1453,8 +1453,6 @@ static void apply_intensity_stereo(Chann
 /**
  * Decode a channel_pair_element; reference: table 4.4.
  *
- * @param   elem_id Identifies the instance of a syntax element.
- *
  * @return  Returns error status. 0 - OK, !0 - error
  */
 static int decode_cpe(AACContext *ac, GetBitContext *gb, ChannelElement *cpe)
@@ -1496,8 +1494,6 @@ static int decode_cpe(AACContext *ac, Ge
 /**
  * Decode coupling_channel_element; reference: table 4.8.
  *
- * @param   elem_id Identifies the instance of a syntax element.
- *
  * @return  Returns error status. 0 - OK, !0 - error
  */
 static int decode_cce(AACContext *ac, GetBitContext *gb, ChannelElement *che)
@@ -1864,7 +1860,6 @@ static void apply_independent_coupling(A
 /**
  * channel coupling transformation interface
  *
- * @param   index   index into coupling gain array
  * @param   apply_coupling_method   pointer to (in)dependent coupling function
  */
 static void apply_channel_coupling(AACContext *ac, ChannelElement *cc,

Modified: trunk/libavcodec/acelp_pitch_delay.h
==============================================================================
--- trunk/libavcodec/acelp_pitch_delay.h	Fri Jul  2 13:13:23 2010	(r23975)
+++ trunk/libavcodec/acelp_pitch_delay.h	Fri Jul  2 13:19:29 2010	(r23976)
@@ -85,8 +85,6 @@ int ff_acelp_decode_4bit_to_2nd_delay3(
  * \brief Decode pitch delay of the first subframe encoded by 9 bits
  *        with 1/6 precision.
  * \param ac_index adaptive codebook index (9 bits)
- * \param pitch_delay_min lower bound (integer) of pitch delay interval for
- *                      second subframe
  *
  * \return pitch delay in 1/6 units
  *
@@ -147,7 +145,6 @@ void ff_acelp_update_past_gain(
  * \param mr_energy mean innovation energy and fixed-point correction (7.13)
  * \param quant_energy [in/out] past quantized energies (5.10)
  * \param subframe_size length of subframe
- * \param ma_pred_order MA prediction order
  *
  * \return quantized fixed-codebook gain (14.1)
  *

Modified: trunk/libavcodec/cook.c
==============================================================================
--- trunk/libavcodec/cook.c	Fri Jul  2 13:13:23 2010	(r23975)
+++ trunk/libavcodec/cook.c	Fri Jul  2 13:19:29 2010	(r23976)
@@ -945,11 +945,8 @@ mlt_compensate_output(COOKContext *q, fl
  *
  * @param q                 pointer to the COOKContext
  * @param inbuffer          pointer to the inbuffer
- * @param sub_packet_size   subpacket size
  * @param outbuffer         pointer to the outbuffer
  */
-
-
 static void decode_subpacket(COOKContext *q, COOKSubpacket* p, const uint8_t *inbuffer, int16_t *outbuffer) {
     int sub_packet_size = p->size;
     /* packet dump */

Modified: trunk/libavcodec/escape124.c
==============================================================================
--- trunk/libavcodec/escape124.c	Fri Jul  2 13:13:23 2010	(r23975)
+++ trunk/libavcodec/escape124.c	Fri Jul  2 13:19:29 2010	(r23976)
@@ -200,8 +200,6 @@ static const uint16_t mask_matrix[] = {0
  * @param avctx decoder context
  * @param data decoded frame
  * @param data_size size of the decoded frame
- * @param buf input buffer
- * @param buf_size input buffer size
  * @return 0 success, -1 on error
  */
 static int escape124_decode_frame(AVCodecContext *avctx,

Modified: trunk/libavcodec/fraps.c
==============================================================================
--- trunk/libavcodec/fraps.c	Fri Jul  2 13:13:23 2010	(r23975)
+++ trunk/libavcodec/fraps.c	Fri Jul  2 13:19:29 2010	(r23976)
@@ -123,8 +123,6 @@ static int fraps2_decode_plane(FrapsCont
  * @param avctx codec context
  * @param data output AVFrame
  * @param data_size size of output data or 0 if no picture is returned
- * @param buf input data frame
- * @param buf_size size of input data frame
  * @return number of consumed bytes on success or negative if decode fails
  */
 static int decode_frame(AVCodecContext *avctx,

Modified: trunk/libavcodec/lsp.h
==============================================================================
--- trunk/libavcodec/lsp.h	Fri Jul  2 13:13:23 2010	(r23975)
+++ trunk/libavcodec/lsp.h	Fri Jul  2 13:19:29 2010	(r23976)
@@ -48,7 +48,6 @@ void ff_acelp_reorder_lsf(int16_t* lsfq,
  *
  * @param[in,out] lsf    LSFs in Hertz
  * @param min_spacing    minimum distance between two consecutive lsf values
- * @param                size size of the lsf vector
  */
 void ff_set_min_dist_lsf(float *lsf, double min_spacing, int order);
 

Modified: trunk/libavcodec/qdm2.c
==============================================================================
--- trunk/libavcodec/qdm2.c	Fri Jul  2 13:13:23 2010	(r23975)
+++ trunk/libavcodec/qdm2.c	Fri Jul  2 13:19:29 2010	(r23976)
@@ -942,7 +942,6 @@ static void synthfilt_build_sb_samples (
  * This is similar to process_subpacket_9, but for a single channel and for element [0]
  * same VLC tables as process_subpacket_9 are used.
  *
- * @param q         context
  * @param quantized_coeffs    pointer to quantized_coeffs[ch][0]
  * @param gb        bitreader context
  * @param length    packet length in bits

Modified: trunk/libavdevice/x11grab.c
==============================================================================
--- trunk/libavdevice/x11grab.c	Fri Jul  2 13:13:23 2010	(r23975)
+++ trunk/libavdevice/x11grab.c	Fri Jul  2 13:19:29 2010	(r23976)
@@ -243,8 +243,6 @@ x11grab_read_header(AVFormatContext *s1,
  * @param image image to paint the mouse pointer to
  * @param s context used to retrieve original grabbing rectangle
  *          coordinates
- * @param x Mouse pointer coordinate
- * @param y Mouse pointer coordinate
  */
 static void
 paint_mouse_pointer(XImage *image, struct x11_grab *s)

Modified: trunk/libavformat/rtpdec_asf.h
==============================================================================
--- trunk/libavformat/rtpdec_asf.h	Fri Jul  2 13:13:23 2010	(r23975)
+++ trunk/libavformat/rtpdec_asf.h	Fri Jul  2 13:19:29 2010	(r23976)
@@ -29,7 +29,6 @@
  * Parse a Windows Media Server-specific SDP line
  *
  * @param s RTSP demux context
- * @param line the SDP line to be parsed
  */
 void ff_wms_parse_sdp_a_line(AVFormatContext *s, const char *p);
 



More information about the ffmpeg-cvslog mailing list