Skip to content

Commit

Permalink
document internal native methods that must not be called by applications
Browse files Browse the repository at this point in the history
  • Loading branch information
tanersener committed Nov 7, 2021
1 parent f52f6a1 commit 3f8ec5d
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -167,6 +167,9 @@ public Statistics getLastReceivedStatistics() {
/**
* 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) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down
3 changes: 3 additions & 0 deletions apple/src/FFmpegSession.h
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down
3 changes: 3 additions & 0 deletions apple/src/Session.h
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit 3f8ec5d

Please sign in to comment.