]> git.sesse.net Git - ffmpeg/blobdiff - libavformat/mmst.c
utvideodec: Support ULY4 and ULH4
[ffmpeg] / libavformat / mmst.c
index 1489076ad3bb6d1aca2407d6088f55a7a1ba571e..f3a51577ca6cf29ddba37477b3627543c4cad480 100644 (file)
@@ -419,7 +419,7 @@ static int send_startup_packet(MMSTContext *mmst)
     char data_string[256];
     MMSContext *mms = &mmst->mms;
     // SubscriberName is defined in MS specification linked below.
-    // The guid value can be any valid value.
+    // The GUID value can be any valid value.
     // http://download.microsoft.com/
     // download/9/5/E/95EF66AF-9026-4BB0-A41D-A4F81802D92C/%5BMS-WMSP%5D.pdf
     snprintf(data_string, sizeof(data_string),
@@ -515,7 +515,7 @@ static int mms_open(URLContext *h, const char *uri, int flags)
             sizeof(mmst->path), uri);
 
     if(port<0)
-        port = 1755; // defaut mms protocol port
+        port = 1755; // default MMS protocol port
 
     // establish tcp connection.
     ff_url_join(tcpname, sizeof(tcpname), "tcp", NULL, mmst->host, port, NULL);