[FFmpeg-cvslog] r23970 - in trunk: libavcodec/atrac3.c libavcodec/cook.c libavcodec/elbg.c libavcodec/lzw.c libavcodec/mpegvideo.c libavcodec/mpegvideo_common.h libavcodec/rl2.c libavcodec/rle.h libavfilter/avfilt...

diego subversion
Fri Jul 2 12:49:29 CEST 2010


Author: diego
Date: Fri Jul  2 12:49:29 2010
New Revision: 23970

Log:
Fix misspelled parameter names in Doxygen documentation.
This fixes one Doxygen warning each.

Modified:
   trunk/libavcodec/atrac3.c
   trunk/libavcodec/cook.c
   trunk/libavcodec/elbg.c
   trunk/libavcodec/lzw.c
   trunk/libavcodec/mpegvideo.c
   trunk/libavcodec/mpegvideo_common.h
   trunk/libavcodec/rl2.c
   trunk/libavcodec/rle.h
   trunk/libavfilter/avfilter.h
   trunk/libavfilter/avfiltergraph.h
   trunk/libavformat/avformat.h
   trunk/libavformat/gxf.c
   trunk/libavformat/rtmppkt.h
   trunk/libavformat/rtpproto.c
   trunk/libavformat/udp.c
   trunk/libavutil/pixdesc.h

Modified: trunk/libavcodec/atrac3.c
==============================================================================
--- trunk/libavcodec/atrac3.c	Fri Jul  2 12:37:13 2010	(r23969)
+++ trunk/libavcodec/atrac3.c	Fri Jul  2 12:49:29 2010	(r23970)
@@ -166,9 +166,9 @@ static void IMLT(float *pInput, float *p
 /**
  * Atrac 3 indata descrambling, only used for data coming from the rm container
  *
- * @param in        pointer to 8 bit array of indata
- * @param bits      amount of bits
+ * @param inbuffer  pointer to 8 bit array of indata
  * @param out       pointer to 8 bit array of outdata
+ * @param bytes     amount of bytes
  */
 
 static int decode_bytes(const uint8_t* inbuffer, uint8_t* out, int bytes){

Modified: trunk/libavcodec/cook.c
==============================================================================
--- trunk/libavcodec/cook.c	Fri Jul  2 12:37:13 2010	(r23969)
+++ trunk/libavcodec/cook.c	Fri Jul  2 12:49:29 2010	(r23970)
@@ -708,7 +708,7 @@ static void interpolate_float(COOKContex
  * Apply transform window, overlap buffers.
  *
  * @param q                 pointer to the COOKContext
- * @param inbuffer          pointer to the mltcoefficients
+ * @param buffer1           pointer to the mltcoefficients
  * @param gains_ptr         current and previous gains
  * @param previous_buffer   pointer to the previous buffer to be used for overlapping
  */
@@ -877,7 +877,7 @@ static void joint_decode(COOKContext *q,
  *
  * @param q                 pointer to the COOKContext
  * @param inbuffer          pointer to raw stream data
- * @param gain_ptr          array of current/prev gain pointers
+ * @param gains_ptr         array of current/prev gain pointers
  */
 
 static inline void
@@ -923,7 +923,7 @@ saturate_output_float (COOKContext *q, i
  *
  * @param q                 pointer to the COOKContext
  * @param decode_buffer     pointer to the mlt coefficients
- * @param gain_ptr          array of current/prev gain pointers
+ * @param gains             array of current/prev gain pointers
  * @param previous_buffer   pointer to the previous buffer to be used for overlapping
  * @param out               pointer to the output buffer
  * @param chan              0: left or single channel, 1: right channel

Modified: trunk/libavcodec/elbg.c
==============================================================================
--- trunk/libavcodec/elbg.c	Fri Jul  2 12:37:13 2010	(r23969)
+++ trunk/libavcodec/elbg.c	Fri Jul  2 12:49:29 2010	(r23970)
@@ -249,7 +249,7 @@ static void update_utility_and_n_cb(elbg
  * and update elbg->error, elbg->utility and elbg->nearest_cb.
  *
  * @param elbg  Internal elbg data
- * @param indexes      {luc (low utility cell, huc (high utility cell), cluc (closest cell to low utility cell)}
+ * @param idx   {luc (low utility cell, huc (high utility cell), cluc (closest cell to low utility cell)}
  */
 static void try_shift_candidate(elbg_data *elbg, int idx[3])
 {

Modified: trunk/libavcodec/lzw.c
==============================================================================
--- trunk/libavcodec/lzw.c	Fri Jul  2 12:37:13 2010	(r23969)
+++ trunk/libavcodec/lzw.c	Fri Jul  2 12:49:29 2010	(r23970)
@@ -121,7 +121,7 @@ av_cold void ff_lzw_decode_close(LZWStat
 
 /**
  * Initialize LZW decoder
- * @param s LZW context
+ * @param p LZW context
  * @param csize initial code size in bits
  * @param buf input data
  * @param buf_size input data size
@@ -161,7 +161,7 @@ int ff_lzw_decode_init(LZWState *p, int 
  * NOTE: the algorithm here is inspired from the LZW GIF decoder
  *  written by Steven A. Bennett in 1987.
  *
- * @param s LZW context
+ * @param p LZW context
  * @param buf output buffer
  * @param len number of bytes to decode
  * @return number of bytes decoded

Modified: trunk/libavcodec/mpegvideo.c
==============================================================================
--- trunk/libavcodec/mpegvideo.c	Fri Jul  2 12:37:13 2010	(r23969)
+++ trunk/libavcodec/mpegvideo.c	Fri Jul  2 12:49:29 2010	(r23970)
@@ -1650,7 +1650,7 @@ static inline void chroma_4mv_motion_low
  * @param dest_cr chroma cr/v destination pointer
  * @param dir direction (0->forward, 1->backward)
  * @param ref_picture array[3] of pointers to the 3 planes of the reference picture
- * @param pic_op halfpel motion compensation function (average or put normally)
+ * @param pix_op halfpel motion compensation function (average or put normally)
  * the motion vectors are taken from s->mv and the MV type from s->mv_type
  */
 static inline void MPV_motion_lowres(MpegEncContext *s,

Modified: trunk/libavcodec/mpegvideo_common.h
==============================================================================
--- trunk/libavcodec/mpegvideo_common.h	Fri Jul  2 12:37:13 2010	(r23969)
+++ trunk/libavcodec/mpegvideo_common.h	Fri Jul  2 12:49:29 2010	(r23970)
@@ -631,8 +631,8 @@ static inline void prefetch_motion(MpegE
  * @param dest_cr chroma cr/v destination pointer
  * @param dir direction (0->forward, 1->backward)
  * @param ref_picture array[3] of pointers to the 3 planes of the reference picture
- * @param pic_op halfpel motion compensation function (average or put normally)
- * @param pic_op qpel motion compensation function (average or put normally)
+ * @param pix_op halfpel motion compensation function (average or put normally)
+ * @param qpix_op qpel motion compensation function (average or put normally)
  * the motion vectors are taken from s->mv and the MV type from s->mv_type
  */
 static av_always_inline void MPV_motion_internal(MpegEncContext *s,

Modified: trunk/libavcodec/rl2.c
==============================================================================
--- trunk/libavcodec/rl2.c	Fri Jul  2 12:37:13 2010	(r23969)
+++ trunk/libavcodec/rl2.c	Fri Jul  2 12:49:29 2010	(r23970)
@@ -50,7 +50,7 @@ typedef struct Rl2Context {
 /**
  * Run Length Decode a single 320x200 frame
  * @param s rl2 context
- * @param buf input buffer
+ * @param in input buffer
  * @param size input buffer size
  * @param out ouput buffer
  * @param stride stride of the output buffer

Modified: trunk/libavcodec/rle.h
==============================================================================
--- trunk/libavcodec/rle.h	Fri Jul  2 12:37:13 2010	(r23969)
+++ trunk/libavcodec/rle.h	Fri Jul  2 12:49:29 2010	(r23970)
@@ -28,7 +28,7 @@
  *                                                      Value before raw bytes is      (count ^ xor_raw) + add_raw.
  * @param outbuf Output buffer
  * @param out_size Maximum output size
- * @param ptr Input buffer
+ * @param inbuf Input buffer
  * @param bpp Bytes per pixel
  * @param w Image width
  * @return Size of output in bytes, or -1 if larger than out_size

Modified: trunk/libavfilter/avfilter.h
==============================================================================
--- trunk/libavfilter/avfilter.h	Fri Jul  2 12:37:13 2010	(r23969)
+++ trunk/libavfilter/avfilter.h	Fri Jul  2 12:49:29 2010	(r23970)
@@ -190,7 +190,7 @@ struct AVFilterFormats
 /**
  * Create a list of supported formats. This is intended for use in
  * AVFilter->query_formats().
- * @param pix_fmt list of pixel formats, terminated by PIX_FMT_NONE
+ * @param pix_fmts list of pixel formats, terminated by PIX_FMT_NONE
  * @return the format list, with no existing references
  */
 AVFilterFormats *avfilter_make_format_list(const enum PixelFormat *pix_fmts);

Modified: trunk/libavfilter/avfiltergraph.h
==============================================================================
--- trunk/libavfilter/avfiltergraph.h	Fri Jul  2 12:37:13 2010	(r23969)
+++ trunk/libavfilter/avfiltergraph.h	Fri Jul  2 12:49:29 2010	(r23970)
@@ -42,7 +42,7 @@ AVFilterContext *avfilter_graph_get_filt
 /**
  * Add an existing filter instance to a filter graph.
  *
- * @param graph  the filter graph
+ * @param graphctx  the filter graph
  * @param filter the filter to be added
  */
 int avfilter_graph_add_filter(AVFilterGraph *graphctx, AVFilterContext *filter);

Modified: trunk/libavformat/avformat.h
==============================================================================
--- trunk/libavformat/avformat.h	Fri Jul  2 12:37:13 2010	(r23969)
+++ trunk/libavformat/avformat.h	Fri Jul  2 12:49:29 2010	(r23970)
@@ -1259,7 +1259,7 @@ int av_interleaved_write_frame(AVFormatC
  *
  * @param s media file handle
  * @param out the interleaved packet will be output here
- * @param in the input packet
+ * @param pkt the input packet
  * @param flush 1 if no further packets are available as input and all
  *              remaining packets should be output
  * @return 1 if a packet was output, 0 if no packet could be output,

Modified: trunk/libavformat/gxf.c
==============================================================================
--- trunk/libavformat/gxf.c	Fri Jul  2 12:37:13 2010	(r23969)
+++ trunk/libavformat/gxf.c	Fri Jul  2 12:49:29 2010	(r23970)
@@ -71,7 +71,7 @@ static int gxf_probe(AVProbeData *p) {
 /**
  * \brief gets the stream index for the track with the specified id, creates new
  *        stream if not found
- * \param stream id of stream to find / add
+ * \param id     id of stream to find / add
  * \param format stream format identifier
  */
 static int get_sindex(AVFormatContext *s, int id, int format) {

Modified: trunk/libavformat/rtmppkt.h
==============================================================================
--- trunk/libavformat/rtmppkt.h	Fri Jul  2 12:37:13 2010	(r23969)
+++ trunk/libavformat/rtmppkt.h	Fri Jul  2 12:49:29 2010	(r23970)
@@ -131,7 +131,7 @@ int ff_rtmp_packet_write(URLContext *h, 
 /**
  * Print information and contents of RTMP packet.
  *
- * @param h          output context
+ * @param ctx        output context
  * @param p          packet to dump
  */
 void ff_rtmp_packet_dump(void *ctx, RTMPPacket *p);

Modified: trunk/libavformat/rtpproto.c
==============================================================================
--- trunk/libavformat/rtpproto.c	Fri Jul  2 12:37:13 2010	(r23969)
+++ trunk/libavformat/rtpproto.c	Fri Jul  2 12:49:29 2010	(r23970)
@@ -52,7 +52,7 @@ typedef struct RTPContext {
  * get the local port first, then you must call this function to set
  * the remote server address.
  *
- * @param s1 media file context
+ * @param h media file context
  * @param uri of the remote server
  * @return zero if no error.
  */
@@ -317,7 +317,7 @@ static int rtp_close(URLContext *h)
 
 /**
  * Return the local rtp port used by the RTP connection
- * @param s1 media file context
+ * @param h media file context
  * @return the local port number
  */
 
@@ -329,7 +329,7 @@ int rtp_get_local_rtp_port(URLContext *h
 
 /**
  * Return the local rtp port used by the RTP connection
- * @param s1 media file context
+ * @param h media file context
  * @return the local port number
  */
 
@@ -341,7 +341,7 @@ int rtp_get_local_port(URLContext *h)
 
 /**
  * Return the local rtcp port used by the RTP connection
- * @param s1 media file context
+ * @param h media file context
  * @return the local port number
  */
 

Modified: trunk/libavformat/udp.c
==============================================================================
--- trunk/libavformat/udp.c	Fri Jul  2 12:37:13 2010	(r23969)
+++ trunk/libavformat/udp.c	Fri Jul  2 12:49:29 2010	(r23970)
@@ -256,7 +256,7 @@ static int udp_port(struct sockaddr_stor
  *         'pkt_size=n'  : set max packet size
  *         'reuse=1'     : enable reusing the socket
  *
- * @param s1 media file context
+ * @param h media file context
  * @param uri of the remote server
  * @return zero if no error.
  */
@@ -280,7 +280,7 @@ int udp_set_remote_url(URLContext *h, co
 
 /**
  * Return the local port used by the UDP connection
- * @param s1 media file context
+ * @param h media file context
  * @return the local port number
  */
 int udp_get_local_port(URLContext *h)

Modified: trunk/libavutil/pixdesc.h
==============================================================================
--- trunk/libavutil/pixdesc.h	Fri Jul  2 12:37:13 2010	(r23969)
+++ trunk/libavutil/pixdesc.h	Fri Jul  2 12:49:29 2010	(r23970)
@@ -97,7 +97,7 @@ extern const AVPixFmtDescriptor av_pix_f
  * pixel format component c to dst.
  *
  * @param data the array containing the pointers to the planes of the image
- * @param linesizes the array containing the linesizes of the image
+ * @param linesize the array containing the linesizes of the image
  * @param desc the pixel format descriptor for the image
  * @param x the horizontal coordinate of the first pixel to read
  * @param y the vertical coordinate of the first pixel to read
@@ -118,7 +118,7 @@ void read_line(uint16_t *dst, const uint
  * @param src array containing the values to write
  * @param data the array containing the pointers to the planes of the
  * image to write into. It is supposed to be zeroed.
- * @param linesizes the array containing the linesizes of the image
+ * @param linesize the array containing the linesizes of the image
  * @param desc the pixel format descriptor for the image
  * @param x the horizontal coordinate of the first pixel to write
  * @param y the vertical coordinate of the first pixel to write



More information about the ffmpeg-cvslog mailing list