提交 0b705fa4 编写于 作者: R Ramiro Polla

Compile network-related code conditionally.

Originally committed as revision 13076 to svn://svn.ffmpeg.org/ffmpeg/trunk
上级 b091aa44
......@@ -31,7 +31,9 @@
#include "cmdutils.h"
#include "avstring.h"
#include "version.h"
#ifdef CONFIG_NETWORK
#include "network.h"
#endif
#undef exit
......@@ -181,9 +183,11 @@ void print_error(const char *filename, int err)
case AVERROR(ENOENT):
fprintf(stderr, "%s: no such file or directory\n", filename);
break;
#ifdef CONFIG_NETWORK
case AVERROR(FF_NETERROR(EPROTONOSUPPORT)):
fprintf(stderr, "%s: Unsupported network protocol\n", filename);
break;
#endif
default:
fprintf(stderr, "%s: Error while opening file\n", filename);
break;
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册