comparison rtpproto.c @ 6215:ccb05424c391 libavformat

Fix misspelled parameter names in Doxygen documentation. This fixes one Doxygen warning each.
author diego
date Fri, 02 Jul 2010 10:49:29 +0000
parents 4fc5e0e4e1cd
children 37944ce385a0
comparison
equal deleted inserted replaced
6214:23e04fb7656e 6215:ccb05424c391
50 /** 50 /**
51 * If no filename is given to av_open_input_file because you want to 51 * If no filename is given to av_open_input_file because you want to
52 * get the local port first, then you must call this function to set 52 * get the local port first, then you must call this function to set
53 * the remote server address. 53 * the remote server address.
54 * 54 *
55 * @param s1 media file context 55 * @param h media file context
56 * @param uri of the remote server 56 * @param uri of the remote server
57 * @return zero if no error. 57 * @return zero if no error.
58 */ 58 */
59 59
60 int rtp_set_remote_url(URLContext *h, const char *uri) 60 int rtp_set_remote_url(URLContext *h, const char *uri)
315 return 0; 315 return 0;
316 } 316 }
317 317
318 /** 318 /**
319 * Return the local rtp port used by the RTP connection 319 * Return the local rtp port used by the RTP connection
320 * @param s1 media file context 320 * @param h media file context
321 * @return the local port number 321 * @return the local port number
322 */ 322 */
323 323
324 int rtp_get_local_rtp_port(URLContext *h) 324 int rtp_get_local_rtp_port(URLContext *h)
325 { 325 {
327 return udp_get_local_port(s->rtp_hd); 327 return udp_get_local_port(s->rtp_hd);
328 } 328 }
329 329
330 /** 330 /**
331 * Return the local rtp port used by the RTP connection 331 * Return the local rtp port used by the RTP connection
332 * @param s1 media file context 332 * @param h media file context
333 * @return the local port number 333 * @return the local port number
334 */ 334 */
335 335
336 int rtp_get_local_port(URLContext *h) 336 int rtp_get_local_port(URLContext *h)
337 { 337 {
339 return udp_get_local_port(s->rtp_hd); 339 return udp_get_local_port(s->rtp_hd);
340 } 340 }
341 341
342 /** 342 /**
343 * Return the local rtcp port used by the RTP connection 343 * Return the local rtcp port used by the RTP connection
344 * @param s1 media file context 344 * @param h media file context
345 * @return the local port number 345 * @return the local port number
346 */ 346 */
347 347
348 int rtp_get_local_rtcp_port(URLContext *h) 348 int rtp_get_local_rtcp_port(URLContext *h)
349 { 349 {