提交 0d6d0cf9 编写于 作者: M Michael Niedermayer

fopen "r" -> "rb"

Originally committed as revision 3772 to svn://svn.ffmpeg.org/ffmpeg/trunk
上级 6c55fd79
......@@ -106,8 +106,8 @@ int main(int argc,char* argv[]){
return -1;
}
f[0]= fopen(argv[1], "r");
f[1]= fopen(argv[2], "r");
f[0]= fopen(argv[1], "rb");
f[1]= fopen(argv[2], "rb");
for(i=0;;){
if( fread(buf[0], SIZE, 1, f[0]) != 1) break;
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册