Commit 008ef8dd authored by Tom Finegan's avatar Tom Finegan Committed by Gerrit Code Review
Browse files

Merge "Change dx_time data type in vpxdec.c"

Showing with 6 additions and 5 deletions
...@@ -298,10 +298,11 @@ int file_is_raw(struct VpxInputContext *input) { ...@@ -298,10 +298,11 @@ int file_is_raw(struct VpxInputContext *input) {
return is_raw; return is_raw;
} }
void show_progress(int frame_in, int frame_out, unsigned long dx_time) { void show_progress(int frame_in, int frame_out, uint64_t dx_time) {
fprintf(stderr, "%d decoded frames/%d showed frames in %lu us (%.2f fps)\r", fprintf(stderr,
"%d decoded frames/%d showed frames in %"PRId64" us (%.2f fps)\r",
frame_in, frame_out, dx_time, frame_in, frame_out, dx_time,
(float)frame_out * 1000000.0 / (float)dx_time); (double)frame_out * 1000000.0 / (double)dx_time);
} }
struct ExternalFrameBuffer { struct ExternalFrameBuffer {
...@@ -493,7 +494,7 @@ int main_loop(int argc, const char **argv_) { ...@@ -493,7 +494,7 @@ int main_loop(int argc, const char **argv_) {
int ec_enabled = 0; int ec_enabled = 0;
const VpxInterface *interface = NULL; const VpxInterface *interface = NULL;
const VpxInterface *fourcc_interface = NULL; const VpxInterface *fourcc_interface = NULL;
unsigned long dx_time = 0; uint64_t dx_time = 0;
struct arg arg; struct arg arg;
char **argv, **argi, **argj; char **argv, **argi, **argj;
...@@ -803,7 +804,7 @@ int main_loop(int argc, const char **argv_) { ...@@ -803,7 +804,7 @@ int main_loop(int argc, const char **argv_) {
} }
vpx_usec_timer_mark(&timer); vpx_usec_timer_mark(&timer);
dx_time += (unsigned int)vpx_usec_timer_elapsed(&timer); dx_time += vpx_usec_timer_elapsed(&timer);
} }
} }
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment