Effect: Clarify FrameProcessingException javadocs.

This is confusing, since the effect is used not only when applying an effect, but also when preparing an effect (ex. in a texture processor's constructor), so we should also mention that case.

PiperOrigin-RevId: 504843598
This commit is contained in:
huangdarwin 2023-01-26 16:03:24 +00:00 committed by christosts
parent 5b713704da
commit c53290373d

View File

@ -17,7 +17,10 @@ package com.google.android.exoplayer2.util;
import com.google.android.exoplayer2.C;
/** Thrown when an exception occurs while applying effects to video frames. */
/**
* Thrown when an exception occurs while preparing an {@link Effect}, or applying an {@link Effect}
* to video frames.
*/
public final class FrameProcessingException extends Exception {
/**