document internal native methods that must not be called by applications

pull/265/head
Taner Sener 4 years ago
parent f52f6a1c56
commit 3f8ec5d2f7
  1. 3
      android/ffmpeg-kit-android-lib/src/main/java/com/arthenica/ffmpegkit/FFmpegSession.java
  2. 3
      android/ffmpeg-kit-android-lib/src/main/java/com/arthenica/ffmpegkit/Session.java
  3. 3
      apple/src/FFmpegSession.h
  4. 3
      apple/src/Session.h

@ -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…
Cancel
Save