summaryrefslogtreecommitdiff
path: root/libavformat
diff options
context:
space:
mode:
authorDiego Biurrun <diego@biurrun.de>2010-07-02 10:49:29 +0000
committerDiego Biurrun <diego@biurrun.de>2010-07-02 10:49:29 +0000
commit9a58234feaae8b387b7a7e41b643ec619534d26a (patch)
treeeaba3937ef0f47cfc6e1fb471c6e17147fd1596a /libavformat
parent5298b070c294c211a8777c8c0d61c42bbfd4d1d3 (diff)
Fix misspelled parameter names in Doxygen documentation.
This fixes one Doxygen warning each. Originally committed as revision 23970 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat')
-rw-r--r--libavformat/avformat.h2
-rw-r--r--libavformat/gxf.c2
-rw-r--r--libavformat/rtmppkt.h2
-rw-r--r--libavformat/rtpproto.c8
-rw-r--r--libavformat/udp.c4
5 files changed, 9 insertions, 9 deletions
diff --git a/libavformat/avformat.h b/libavformat/avformat.h
index 49397cecce..828bb973a7 100644
--- a/libavformat/avformat.h
+++ b/libavformat/avformat.h
@@ -1259,7 +1259,7 @@ int av_interleaved_write_frame(AVFormatContext *s, AVPacket *pkt);
*
* @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,
diff --git a/libavformat/gxf.c b/libavformat/gxf.c
index 3798bb7e89..99d39e4207 100644
--- a/libavformat/gxf.c
+++ b/libavformat/gxf.c
@@ -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) {
diff --git a/libavformat/rtmppkt.h b/libavformat/rtmppkt.h
index 37e989101d..431095d399 100644
--- a/libavformat/rtmppkt.h
+++ b/libavformat/rtmppkt.h
@@ -131,7 +131,7 @@ int ff_rtmp_packet_write(URLContext *h, RTMPPacket *p,
/**
* 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);
diff --git a/libavformat/rtpproto.c b/libavformat/rtpproto.c
index 1875424a73..46511bab60 100644
--- a/libavformat/rtpproto.c
+++ b/libavformat/rtpproto.c
@@ -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
*/
diff --git a/libavformat/udp.c b/libavformat/udp.c
index 227c0d0bee..6bd5c9c395 100644
--- a/libavformat/udp.c
+++ b/libavformat/udp.c
@@ -256,7 +256,7 @@ static int udp_port(struct sockaddr_storage *addr, int addr_len)
* '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, const char *uri)
/**
* 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)