From ea71aafd6881d7ce5cffec56feb45488e3ac5221 Mon Sep 17 00:00:00 2001 From: Luca Barbato Date: Sun, 20 Oct 2013 22:01:54 +0200 Subject: [PATCH] avio: Use AVERROR_PROTOCOL_NOT_FOUND When the protocol is missing ffurl_alloc() should return AVERROR_PROTOCOL_NOT_FOUND instead of AVERROR(ENOENT). Bug-Id: 577 CC: libav-stable@libav.org --- libavformat/avio.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavformat/avio.c b/libavformat/avio.c index ad39e6f..689d4a1 100644 --- a/libavformat/avio.c +++ b/libavformat/avio.c @@ -197,7 +197,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, -- 2.7.4