Skip to content
Snippets Groups Projects
Commit 9346a036 authored by TimTim's avatar TimTim Committed by Jean-Marc Valin
Browse files

Access files in binary mode

parent 9acc1e5a
No related branches found
No related tags found
No related merge requests found
......@@ -41,8 +41,8 @@ int main(int argc, char **argv) {
fprintf(stderr, "usage: %s <noisy speech> <output denoised>\n", argv[0]);
return 1;
}
f1 = fopen(argv[1], "r");
fout = fopen(argv[2], "w");
f1 = fopen(argv[1], "rb");
fout = fopen(argv[2], "wb");
while (1) {
short tmp[FRAME_SIZE];
fread(tmp, sizeof(short), FRAME_SIZE, f1);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment