diff options
-rw-r--r-- | libavformat/rtsp.c | 2 | ||||
-rw-r--r-- | libavformat/rtsp.h | 2 | ||||
-rw-r--r-- | libavformat/udp.c | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/libavformat/rtsp.c b/libavformat/rtsp.c index f1bd870b50..e762f61e89 100644 --- a/libavformat/rtsp.c +++ b/libavformat/rtsp.c @@ -1617,7 +1617,7 @@ redirect: ff_http_set_chunked_transfer_encoding(rtsp_hd_out, 0); } else { - /* open the tcp connexion */ + /* open the tcp connection */ ff_url_join(tcpname, sizeof(tcpname), "tcp", NULL, host, port, NULL); if (url_open(&rtsp_hd, tcpname, URL_RDWR) < 0) { err = AVERROR(EIO); diff --git a/libavformat/rtsp.h b/libavformat/rtsp.h index d6460457a5..61b688d085 100644 --- a/libavformat/rtsp.h +++ b/libavformat/rtsp.h @@ -190,7 +190,7 @@ enum RTSPServerType { * @todo Use ByteIOContext instead of URLContext */ 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 */ int nb_rtsp_streams; diff --git a/libavformat/udp.c b/libavformat/udp.c index 0ec24cd4e5..fd6b5c19ba 100644 --- a/libavformat/udp.c +++ b/libavformat/udp.c @@ -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 * @return the local port number */ |