Skip to content

Commit

Permalink
Fix a mis-match in encoder priority.
Browse files Browse the repository at this point in the history
PiperOrigin-RevId: 460500666
  • Loading branch information
claincly authored and rohitjoins committed Jul 13, 2022
1 parent 0f665fb commit fa55078
Showing 1 changed file with 6 additions and 4 deletions.
Expand Up @@ -44,10 +44,12 @@
@RunWith(Parameterized.class)
public class EncoderPerformanceAnalysisTest {

/** A non-realtime {@link MediaFormat#KEY_PRIORITY encoder priority}. */
private static final int MEDIA_CODEC_PRIORITY_NON_REALTIME = 0;
/** A realtime {@link MediaFormat#KEY_PRIORITY encoder priority}. */
private static final int MEDIA_CODEC_PRIORITY_REALTIME = 1;
/** A realtime {@linkplain MediaFormat#KEY_PRIORITY encoder priority}. */
private static final int MEDIA_CODEC_PRIORITY_REALTIME = 0;
/**
* A non-realtime (as fast as possible) {@linkplain MediaFormat#KEY_PRIORITY encoder priority}.
*/
private static final int MEDIA_CODEC_PRIORITY_NON_REALTIME = 1;

private static final ImmutableList<String> INPUT_FILES =
ImmutableList.of(
Expand Down

0 comments on commit fa55078

Please sign in to comment.