document internal native methods that must not be called by applications
This commit is contained in:
parent
f52f6a1c56
commit
3f8ec5d2f7
|
@ -167,6 +167,9 @@ public class FFmpegSession extends AbstractSession implements Session {
|
|||
/**
|
||||
* Adds a new statistics entry for this session.
|
||||
*
|
||||
* It is invoked internally by <code>FFmpegKit</code> library methods. Must not be used by user
|
||||
* applications.
|
||||
*
|
||||
* @param statistics statistics entry
|
||||
*/
|
||||
public void addStatistics(final Statistics statistics) {
|
||||
|
|
|
@ -199,6 +199,9 @@ public interface Session {
|
|||
/**
|
||||
* Adds a new log entry for this session.
|
||||
*
|
||||
* It is invoked internally by <code>FFmpegKit</code> library methods. Must not be used by user
|
||||
* applications.
|
||||
*
|
||||
* @param log log entry
|
||||
*/
|
||||
void addLog(final Log log);
|
||||
|
|
|
@ -110,6 +110,9 @@
|
|||
/**
|
||||
* Adds a new statistics entry for this session.
|
||||
*
|
||||
* It is invoked internally by <code>FFmpegKit</code> library methods. Must not be used by user
|
||||
* applications.
|
||||
*
|
||||
* @param statistics statistics entry
|
||||
*/
|
||||
- (void)addStatistics:(Statistics*)statistics;
|
||||
|
|
|
@ -206,6 +206,9 @@
|
|||
/**
|
||||
* Adds a new log entry for this session.
|
||||
*
|
||||
* It is invoked internally by <code>FFmpegKit</code> library methods. Must not be used by user
|
||||
* applications.
|
||||
*
|
||||
* @param log log entry
|
||||
*/
|
||||
- (void)addLog:(Log*)log;
|
||||
|
|
Loading…
Reference in New Issue
Block a user