This website works better with JavaScript.
Home
Help
Sign In
falkTX
/
FFmpeg
mirror of
https://github.com/falkTX/FFmpeg.git
Watch
1
Star
0
Fork
0
Code
Issues
0
Releases
338
Wiki
Activity
Browse Source
fopen "r" -> "rb"
Originally committed as revision 3772 to svn://svn.ffmpeg.org/ffmpeg/trunk
tags/v0.5
Michael Niedermayer
21 years ago
parent
6c55fd7968
commit
0d6d0cf953
1 changed files
with
2 additions
and
2 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+2
-2
tests/tiny_psnr.c
+ 2
- 2
tests/tiny_psnr.c
View File
@@ -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], "r
b
");
f[1]= fopen(argv[2], "r
b
");
for(i=0;;){
if( fread(buf[0], SIZE, 1, f[0]) != 1) break;
Write
Preview
Loading…
Cancel
Save