Skip to content

Commit

Permalink
Fix incorrect class name for MediaPipe demo
Browse files Browse the repository at this point in the history
Issue: androidx#500

#minor-release

PiperOrigin-RevId: 545942450
  • Loading branch information
andrewlewis authored and rohitjoins committed Jul 13, 2023
1 parent 06a7916 commit bdbf3e2
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -429,7 +429,7 @@ private ImmutableList<Effect> createVideoEffectsFromBundle(Bundle bundle)
}
if (selectedEffects[ConfigurationActivity.EDGE_DETECTOR_INDEX]) {
try {
Class<?> clazz = Class.forName("androidx.media3.demo.transformer.MediaPipeProcessor");
Class<?> clazz = Class.forName("androidx.media3.demo.transformer.MediaPipeShaderProgram");
Constructor<?> constructor =
clazz.getConstructor(
Context.class,
Expand Down

0 comments on commit bdbf3e2

Please sign in to comment.