diff options
author | Mole Shang <[email protected]> | 2023-08-10 14:15:00 +0800 |
---|---|---|
committer | Mole Shang <[email protected]> | 2023-08-10 14:15:00 +0800 |
commit | 6cbcaba2a80c47714e8aa45d021bdcd4965780b1 (patch) | |
tree | 0adcb9b088997689e18fad20a463ea681e4f50b7 /src/main.c | |
parent | ef4918ffeb326751fa17c2c8335963be4e43254f (diff) | |
download | hinata-6cbcaba2a80c47714e8aa45d021bdcd4965780b1.tar.gz hinata-6cbcaba2a80c47714e8aa45d021bdcd4965780b1.tar.bz2 hinata-6cbcaba2a80c47714e8aa45d021bdcd4965780b1.zip |
ui: show progress while remuxing
Diffstat (limited to 'src/main.c')
-rw-r--r-- | src/main.c | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -29,6 +29,7 @@ #include "style.h" #include "ui.h" #include "unifont.h" +#include "utils/ffmpeg.h" extern int win_width, win_height; static char *cookie; @@ -118,6 +119,7 @@ int main(void) { status_t stat = {0}; stat.is_done = true; ui.stat = &stat; + setup_stat(&stat); /* create context */ ui.ctx = nk_glfw3_init(&glfw, win, NK_GLFW3_INSTALL_CALLBACKS); |