Exemple #1
0
 @Inject
 VideoManager(
     Context context, PhotoManager photoManager, PhotoProcessor photoProcessor, IOUtils ioUtils) {
   this.context = context;
   this.photoManager = photoManager;
   this.photoProcessor = photoProcessor;
   this.ioUtils = ioUtils;
   this.firstSetup =
       Pref.newBooleanPref(
           context, VideoManager.class.getName() + ".FIRST_SETUP", "first_setup", true);
   this.fFmpeg = FFmpeg.getInstance(context);
 }