Commit db8d20df authored by mstorsjo's avatar mstorsjo

Cosmetics: Change connexion to connection in code comments


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@23601 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent b8a84f11
...@@ -1617,7 +1617,7 @@ redirect: ...@@ -1617,7 +1617,7 @@ redirect:
ff_http_set_chunked_transfer_encoding(rtsp_hd_out, 0); ff_http_set_chunked_transfer_encoding(rtsp_hd_out, 0);
} else { } else {
/* open the tcp connexion */ /* open the tcp connection */
ff_url_join(tcpname, sizeof(tcpname), "tcp", NULL, host, port, NULL); ff_url_join(tcpname, sizeof(tcpname), "tcp", NULL, host, port, NULL);
if (url_open(&rtsp_hd, tcpname, URL_RDWR) < 0) { if (url_open(&rtsp_hd, tcpname, URL_RDWR) < 0) {
err = AVERROR(EIO); err = AVERROR(EIO);
......
...@@ -190,7 +190,7 @@ enum RTSPServerType { ...@@ -190,7 +190,7 @@ enum RTSPServerType {
* @todo Use ByteIOContext instead of URLContext * @todo Use ByteIOContext instead of URLContext
*/ */
typedef struct RTSPState { typedef struct RTSPState {
URLContext *rtsp_hd; /* RTSP TCP connexion handle */ URLContext *rtsp_hd; /* RTSP TCP connection handle */
/** number of items in the 'rtsp_streams' variable */ /** number of items in the 'rtsp_streams' variable */
int nb_rtsp_streams; int nb_rtsp_streams;
......
...@@ -279,7 +279,7 @@ int udp_set_remote_url(URLContext *h, const char *uri) ...@@ -279,7 +279,7 @@ int udp_set_remote_url(URLContext *h, const char *uri)
} }
/** /**
* Return the local port used by the UDP connexion * Return the local port used by the UDP connection
* @param s1 media file context * @param s1 media file context
* @return the local port number * @return the local port number
*/ */
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment