Sundong Ahn | 1fce092 | 2019-01-02 18:19:55 +0900 | [diff] [blame] | 1 | package audio.effects.V5_0 { |
| 2 | |
| 3 | public class Audioeffectsconf { |
| 4 | ctor public Audioeffectsconf(); |
| 5 | method public audio.effects.V5_0.EffectsType getEffects(); |
| 6 | method public audio.effects.V5_0.LibrariesType getLibraries(); |
| 7 | method public audio.effects.V5_0.Audioeffectsconf.Postprocess getPostprocess(); |
| 8 | method public audio.effects.V5_0.Audioeffectsconf.Preprocess getPreprocess(); |
| 9 | method public audio.effects.V5_0.VersionType getVersion(); |
| 10 | method public void setEffects(audio.effects.V5_0.EffectsType); |
| 11 | method public void setLibraries(audio.effects.V5_0.LibrariesType); |
| 12 | method public void setPostprocess(audio.effects.V5_0.Audioeffectsconf.Postprocess); |
| 13 | method public void setPreprocess(audio.effects.V5_0.Audioeffectsconf.Preprocess); |
| 14 | method public void setVersion(audio.effects.V5_0.VersionType); |
| 15 | } |
| 16 | |
| 17 | public static class Audioeffectsconf.Postprocess { |
| 18 | ctor public Audioeffectsconf.Postprocess(); |
| 19 | method public java.util.List<audio.effects.V5_0.StreamPostprocessType> getStream(); |
| 20 | } |
| 21 | |
| 22 | public static class Audioeffectsconf.Preprocess { |
| 23 | ctor public Audioeffectsconf.Preprocess(); |
| 24 | method public java.util.List<audio.effects.V5_0.StreamPreprocessType> getStream(); |
| 25 | } |
| 26 | |
| 27 | public class EffectImplType { |
| 28 | ctor public EffectImplType(); |
| 29 | method public java.lang.String getLibrary(); |
| 30 | method public java.lang.String getUuid(); |
| 31 | method public void setLibrary(java.lang.String); |
| 32 | method public void setUuid(java.lang.String); |
| 33 | } |
| 34 | |
| 35 | public class EffectProxyType extends audio.effects.V5_0.EffectType { |
| 36 | ctor public EffectProxyType(); |
| 37 | method public audio.effects.V5_0.EffectImplType getLibhw(); |
| 38 | method public audio.effects.V5_0.EffectImplType getLibsw(); |
| 39 | method public void setLibhw(audio.effects.V5_0.EffectImplType); |
| 40 | method public void setLibsw(audio.effects.V5_0.EffectImplType); |
| 41 | } |
| 42 | |
| 43 | public class EffectType extends audio.effects.V5_0.EffectImplType { |
| 44 | ctor public EffectType(); |
| 45 | method public java.lang.String getName(); |
| 46 | method public void setName(java.lang.String); |
| 47 | } |
| 48 | |
| 49 | public class EffectsType { |
| 50 | ctor public EffectsType(); |
| 51 | method public java.util.List<audio.effects.V5_0.EffectProxyType> getEffectProxy_optional(); |
| 52 | method public java.util.List<audio.effects.V5_0.EffectType> getEffect_optional(); |
| 53 | } |
| 54 | |
| 55 | public class LibrariesType { |
| 56 | ctor public LibrariesType(); |
| 57 | method public java.util.List<audio.effects.V5_0.LibrariesType.Library> getLibrary(); |
| 58 | } |
| 59 | |
| 60 | public static class LibrariesType.Library { |
| 61 | ctor public LibrariesType.Library(); |
| 62 | method public java.lang.String getName(); |
| 63 | method public java.lang.String getPath(); |
| 64 | method public void setName(java.lang.String); |
| 65 | method public void setPath(java.lang.String); |
| 66 | } |
| 67 | |
| 68 | public final class StreamInputType extends java.lang.Enum { |
| 69 | method public java.lang.String getRawName(); |
| 70 | method public static audio.effects.V5_0.StreamInputType valueOf(java.lang.String); |
| 71 | method public static final audio.effects.V5_0.StreamInputType[] values(); |
| 72 | enum_constant public static final audio.effects.V5_0.StreamInputType camcorder; |
| 73 | enum_constant public static final audio.effects.V5_0.StreamInputType mic; |
| 74 | enum_constant public static final audio.effects.V5_0.StreamInputType unprocessed; |
| 75 | enum_constant public static final audio.effects.V5_0.StreamInputType voice_call; |
| 76 | enum_constant public static final audio.effects.V5_0.StreamInputType voice_communication; |
| 77 | enum_constant public static final audio.effects.V5_0.StreamInputType voice_downlink; |
| 78 | enum_constant public static final audio.effects.V5_0.StreamInputType voice_recognition; |
| 79 | enum_constant public static final audio.effects.V5_0.StreamInputType voice_uplink; |
| 80 | } |
| 81 | |
| 82 | public final class StreamOutputType extends java.lang.Enum { |
| 83 | method public java.lang.String getRawName(); |
| 84 | method public static audio.effects.V5_0.StreamOutputType valueOf(java.lang.String); |
| 85 | method public static final audio.effects.V5_0.StreamOutputType[] values(); |
| 86 | enum_constant public static final audio.effects.V5_0.StreamOutputType alarm; |
| 87 | enum_constant public static final audio.effects.V5_0.StreamOutputType bluetooth_sco; |
| 88 | enum_constant public static final audio.effects.V5_0.StreamOutputType dtmf; |
| 89 | enum_constant public static final audio.effects.V5_0.StreamOutputType enforced_audible; |
| 90 | enum_constant public static final audio.effects.V5_0.StreamOutputType music; |
| 91 | enum_constant public static final audio.effects.V5_0.StreamOutputType notification; |
| 92 | enum_constant public static final audio.effects.V5_0.StreamOutputType ring; |
| 93 | enum_constant public static final audio.effects.V5_0.StreamOutputType system; |
| 94 | enum_constant public static final audio.effects.V5_0.StreamOutputType tts; |
| 95 | enum_constant public static final audio.effects.V5_0.StreamOutputType voice_call; |
| 96 | } |
| 97 | |
| 98 | public class StreamPostprocessType extends audio.effects.V5_0.StreamProcessingType { |
| 99 | ctor public StreamPostprocessType(); |
| 100 | method public audio.effects.V5_0.StreamOutputType getType(); |
| 101 | method public void setType(audio.effects.V5_0.StreamOutputType); |
| 102 | } |
| 103 | |
| 104 | public class StreamPreprocessType extends audio.effects.V5_0.StreamProcessingType { |
| 105 | ctor public StreamPreprocessType(); |
| 106 | method public audio.effects.V5_0.StreamInputType getType(); |
| 107 | method public void setType(audio.effects.V5_0.StreamInputType); |
| 108 | } |
| 109 | |
| 110 | public class StreamProcessingType { |
| 111 | ctor public StreamProcessingType(); |
| 112 | method public java.util.List<audio.effects.V5_0.StreamProcessingType.Apply> getApply(); |
| 113 | } |
| 114 | |
| 115 | public static class StreamProcessingType.Apply { |
| 116 | ctor public StreamProcessingType.Apply(); |
| 117 | method public java.lang.String getEffect(); |
| 118 | method public void setEffect(java.lang.String); |
| 119 | } |
| 120 | |
| 121 | public final class VersionType extends java.lang.Enum { |
| 122 | method public java.lang.String getRawName(); |
| 123 | method public static audio.effects.V5_0.VersionType valueOf(java.lang.String); |
| 124 | method public static final audio.effects.V5_0.VersionType[] values(); |
| 125 | enum_constant public static final audio.effects.V5_0.VersionType _2_0; |
| 126 | } |
| 127 | |
| 128 | public class XmlParser { |
| 129 | ctor public XmlParser(); |
| 130 | method public static audio.effects.V5_0.Audioeffectsconf read(java.io.InputStream) throws javax.xml.datatype.DatatypeConfigurationException, java.io.IOException, org.xmlpull.v1.XmlPullParserException; |
| 131 | method public static java.lang.String readText(org.xmlpull.v1.XmlPullParser) throws java.io.IOException, org.xmlpull.v1.XmlPullParserException; |
| 132 | method public static void skip(org.xmlpull.v1.XmlPullParser) throws java.io.IOException, org.xmlpull.v1.XmlPullParserException; |
| 133 | } |
| 134 | |
| 135 | } |
| 136 | |