]> git.sesse.net Git - ffmpeg/commitdiff
avio: change ffurl_alloc return code.
authorNicolas George <nicolas.george@normalesup.org>
Sat, 28 Apr 2012 09:01:38 +0000 (11:01 +0200)
committerNicolas George <nicolas.george@normalesup.org>
Sat, 28 Apr 2012 14:39:54 +0000 (16:39 +0200)
If the designated protocol is not found, return
AVERROR_PROTOCOL_NOT_FOUND instead of AVERROR(ENOENT).

libavformat/avio.c

index afaa7e6e19a43358e41702614e0e8a59d9eb38ec..e732d1ad4a632b496b1940914b9b68d46167c43d 100644 (file)
@@ -229,7 +229,7 @@ int ffurl_alloc(URLContext **puc, const char *filename, int flags,
             return url_alloc_for_protocol (puc, up, filename, flags, int_cb);
     }
     *puc = NULL;
-    return AVERROR(ENOENT);
+    return AVERROR_PROTOCOL_NOT_FOUND;
 }
 
 int ffurl_open(URLContext **puc, const char *filename, int flags,