]> git.sesse.net Git - ffmpeg/blobdiff - libavformat/mmst.c
mp3probe: Detect mp3 stronger with just 200 frames, this should speed up detection
[ffmpeg] / libavformat / mmst.c
index a3db288b35932aa1f60e04bbcea87dd95b1887fc..0a728eb35f9e86a491c19b7d9a3f9d4a8912955b 100644 (file)
@@ -523,7 +523,8 @@ static int mms_open(URLContext *h, const char *uri, int flags)
 
     // establish tcp connection.
     ff_url_join(tcpname, sizeof(tcpname), "tcp", NULL, mmst->host, port, NULL);
-    err = ffurl_open(&mms->mms_hd, tcpname, AVIO_FLAG_READ_WRITE);
+    err = ffurl_open(&mms->mms_hd, tcpname, AVIO_FLAG_READ_WRITE,
+                     &h->interrupt_callback, NULL);
     if (err)
         goto fail;