Home
last modified time | relevance | path

Searched refs:effectSelection (Results 1 – 1 of 1) sorted by relevance

/packages/apps/LegacyCamera/src/com/android/camera/
DCameraSettings.java376 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()
[all …]