OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:EffectType
(Results
1 - 6
of
6
) sorted by null
/packages/apps/VideoEditor/src/com/android/videoeditor/
EffectType.java
24
public class
EffectType
{
43
public static
EffectType
[] getEffects(Context context, int category) {
44
final
EffectType
[] effects;
48
effects = new
EffectType
[4];
49
effects[0] = new
EffectType
(
51
effects[1] = new
EffectType
(
53
effects[2] = new
EffectType
(
55
effects[3] = new
EffectType
(
61
effects = new
EffectType
[3];
62
effects[0] = new
EffectType
(
[
all
...]
VideoEditorActivity.java
[
all
...]
/packages/apps/VideoEditor/src/com/android/videoeditor/service/
MovieEffect.java
19
import com.android.videoeditor.
EffectType
;
149
return
EffectType
.EFFECT_KEN_BURNS;
154
return
EffectType
.EFFECT_COLOR_GRADIENT;
158
return
EffectType
.EFFECT_COLOR_SEPIA;
162
return
EffectType
.EFFECT_COLOR_NEGATIVE;
/frameworks/av/media/libeffects/lvm/wrapper/Bundle/
EffectBundle.cpp
297
pContext->
EffectType
= LVM_BASS_BOOST;
305
pContext->
EffectType
= LVM_VIRTUALIZER;
313
pContext->
EffectType
= LVM_EQUALIZER;
320
pContext->
EffectType
= LVM_VOLUME;
360
if(pContext->
EffectType
== LVM_BASS_BOOST) {
367
} else if(pContext->
EffectType
== LVM_VIRTUALIZER) {
374
} else if(pContext->
EffectType
== LVM_EQUALIZER) {
381
} else if(pContext->
EffectType
== LVM_VOLUME) {
[
all
...]
EffectBundle.h
119
lvm_effect_en
EffectType
;
/packages/apps/VideoEditor/src/com/android/videoeditor/widgets/
MediaLinearLayout.java
51
import com.android.videoeditor.
EffectType
;
150
case
EffectType
.EFFECT_KEN_BURNS:
153
case
EffectType
.EFFECT_COLOR_GRADIENT:
156
case
EffectType
.EFFECT_COLOR_SEPIA:
159
case
EffectType
.EFFECT_COLOR_NEGATIVE:
283
addEffect(
EffectType
.EFFECT_COLOR_GRADIENT,
288
addEffect(
EffectType
.EFFECT_COLOR_SEPIA,
293
addEffect(
EffectType
.EFFECT_COLOR_NEGATIVE,
[
all
...]
Completed in 1010 milliseconds