Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
BC
public
liblinphone
Commits
33877398
Commit
33877398
authored
Oct 13, 2017
by
Sylvain Berfini
🐮
Browse files
Forgot to commit the helper's listener
parent
e31b995b
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
18 additions
and
0 deletions
+18
-0
wrappers/java/classes/tools/OpenH264DownloadHelperListener.java
...rs/java/classes/tools/OpenH264DownloadHelperListener.java
+18
-0
No files found.
wrappers/java/classes/tools/OpenH264DownloadHelperListener.java
0 → 100644
View file @
33877398
package
org.linphone.core.tools
;
public
interface
OpenH264DownloadHelperListener
{
/**
* Called at the beginning of download with current < max Called
* at each iteration of download Called at the ending of download
* with current > max
* @param current: Size of file already downloaded
* @param max: Size of file we want to download
*/
void
OnProgress
(
int
current
,
int
max
);
/**
* Called when we failed to download codec
* @param error: Error message
*/
void
OnError
(
String
error
);
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment