Lines Matching refs:effectSelection
376 String effectSelection = pref.getString(KEY_VIDEO_EFFECT, "none"); in readEffectType() local
377 if (effectSelection.equals("none")) { in readEffectType()
379 } else if (effectSelection.startsWith("goofy_face")) { in readEffectType()
381 } else if (effectSelection.startsWith("backdropper")) { in readEffectType()
384 Log.e(TAG, "Invalid effect selection: " + effectSelection); in readEffectType()
389 String effectSelection = pref.getString(KEY_VIDEO_EFFECT, "none"); in readEffectParameter() local
390 if (effectSelection.equals("none")) { in readEffectParameter()
393 int separatorIndex = effectSelection.indexOf('/'); in readEffectParameter()
395 effectSelection.substring(separatorIndex + 1); in readEffectParameter()
396 if (effectSelection.startsWith("goofy_face")) { in readEffectParameter()
410 } else if (effectSelection.startsWith("backdropper")) { in readEffectParameter()
416 Log.e(TAG, "Invalid effect selection: " + effectSelection); in readEffectParameter()
483 String effectSelection = value.toString(); in initVideoEffect() local
484 if (!goofyFaceSupported && effectSelection.startsWith("goofy_face")) continue; in initVideoEffect()
485 if (!backdropperSupported && effectSelection.startsWith("backdropper")) continue; in initVideoEffect()
486 supported.add(effectSelection); in initVideoEffect()