Add missing VideoGraph javadoc param

PiperOrigin-RevId: 567621861
This commit is contained in:
claincly 2023-09-22 07:55:59 -07:00 committed by Copybara-Service
parent 742410d517
commit 42d9879d47

View file

@ -33,7 +33,11 @@ public interface VideoGraph {
*/
void onOutputSizeChanged(int width, int height);
/** Called after the {@link VideoGraph} has rendered its final output frame. */
/**
* Called after the {@link VideoGraph} has rendered its final output frame.
*
* @param finalFramePresentationTimeUs The timestamp of the last output frame, in microseconds.
*/
void onEnded(long finalFramePresentationTimeUs);
/**