Skip to content

Commit

Permalink
Fix binary read flag
Browse files Browse the repository at this point in the history
  • Loading branch information
msg7086 committed Dec 28, 2018
1 parent 53a89e0 commit 463ede2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion gop_muxer.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,7 @@ void load_options_file(const char * opt_filename) {
}

void load_headers_file(const char * hdr_filename) {
auto fp = fopen(hdr_filename, "r");
auto fp = fopen(hdr_filename, "rb");
uint8_t* buffer[3];
uint32_t size[3] = {0};
int i = 0;
Expand Down

0 comments on commit 463ede2

Please sign in to comment.