Replies: 1 comment
-
I have read if (params.progress_callback) {
const int progress_cur = (100*(seek - seek_start))/(seek_end - seek_start);
params.progress_callback(
ctx, state, progress_cur, params.progress_callback_user_data);
} |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
In the go binding, we have the progress callback to the
Process
function, documented as:What does the argument to the function represent? I'd like to show a progress bar but without knowing what the number is, I can't do so effectively
Beta Was this translation helpful? Give feedback.
All reactions