document internal native methods that must not be called by applications

This commit is contained in:
Taner Sener 2021-11-07 14:06:20 +00:00
parent f52f6a1c56
commit 3f8ec5d2f7
4 changed files with 12 additions and 0 deletions

View File

@ -167,6 +167,9 @@ public class FFmpegSession extends AbstractSession implements Session {
/** /**
* Adds a new statistics entry for this 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 * @param statistics statistics entry
*/ */
public void addStatistics(final Statistics statistics) { public void addStatistics(final Statistics statistics) {

View File

@ -199,6 +199,9 @@ public interface Session {
/** /**
* Adds a new log entry for this 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 * @param log log entry
*/ */
void addLog(final Log log); void addLog(final Log log);

View File

@ -110,6 +110,9 @@
/** /**
* Adds a new statistics entry for this 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 * @param statistics statistics entry
*/ */
- (void)addStatistics:(Statistics*)statistics; - (void)addStatistics:(Statistics*)statistics;

View File

@ -206,6 +206,9 @@
/** /**
* Adds a new log entry for this 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 * @param log log entry
*/ */
- (void)addLog:(Log*)log; - (void)addLog:(Log*)log;