Skip to content

Commit

Permalink
update several includes for recent changes
Browse files Browse the repository at this point in the history
  • Loading branch information
himwho committed Mar 15, 2024
1 parent 51dc4da commit a278a2a
Show file tree
Hide file tree
Showing 18 changed files with 55 additions and 101 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -189,18 +189,6 @@ static void* decode(void* v)
outputFormat=Mach1DecodeAlgoSpatial_14;
outputName="MACH1SPATIAL-14";
}else if(outputFormat==Mach1DecodeAlgoSpatial_14){
outputFormat=Mach1DecodeAlgoSpatial_32;
outputName="MACH1SPATIAL-32";
}else if(outputFormat==Mach1DecodeAlgoSpatial_32){
outputFormat=Mach1DecodeAlgoSpatial_36;
outputName="MACH1SPATIAL-36";
}else if(outputFormat==Mach1DecodeAlgoSpatial_36){
outputFormat=Mach1DecodeAlgoSpatial_48;
outputName="MACH1SPATIAL-48";
}else if(outputFormat==Mach1DecodeAlgoSpatial_48){
outputFormat=Mach1DecodeAlgoSpatial_60;
outputName="MACH1SPATIAL-60";
}else if(outputFormat==Mach1DecodeAlgoSpatial_60){
outputFormat=Mach1DecodeAlgoSpatial_8;
outputName="MACH1SPATIAL-8";
}else{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -226,18 +226,6 @@ void* encode(void* v)
outputMode=Mach1EncodeOutputModeM1Spatial_14;
outputName="MACH1SPATIAL-14";
}else if(outputMode==Mach1EncodeOutputModeM1Spatial_14){
outputMode=Mach1EncodeOutputModeM1Spatial_32;
outputName="MACH1SPATIAL-32";
}else if(outputMode==Mach1EncodeOutputModeM1Spatial_32){
outputMode=Mach1EncodeOutputModeM1Spatial_36;
outputName="MACH1SPATIAL-36";
}else if(outputMode==Mach1EncodeOutputModeM1Spatial_36){
outputMode=Mach1EncodeOutputModeM1Spatial_48;
outputName="MACH1SPATIAL-48";
}else if(outputMode==Mach1EncodeOutputModeM1Spatial_48){
outputMode=Mach1EncodeOutputModeM1Spatial_60;
outputName="MACH1SPATIAL-60";
}else if(outputMode==Mach1EncodeOutputModeM1Spatial_60){
outputMode=Mach1EncodeOutputModeM1Spatial_8;
outputName="MACH1SPATIAL-8";
}else{
Expand Down

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -42,11 +42,7 @@ enum Mach1DecodeAlgoType {
Mach1DecodeAlgoHorizon_4,
Mach1DecodeAlgoHorizonPairs,
Mach1DecodeAlgoSpatial_12,
Mach1DecodeAlgoSpatial_14,
Mach1DecodeAlgoSpatial_32,
Mach1DecodeAlgoSpatial_36,
Mach1DecodeAlgoSpatial_48,
Mach1DecodeAlgoSpatial_60
Mach1DecodeAlgoSpatial_14
};

#ifdef __cplusplus
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -49,10 +49,6 @@ enum Mach1EncodeOutputModeType {
Mach1EncodeOutputModeM1Horizon_4,
Mach1EncodeOutputModeM1Spatial_12,
Mach1EncodeOutputModeM1Spatial_14,
Mach1EncodeOutputModeM1Spatial_32,
Mach1EncodeOutputModeM1Spatial_36,
Mach1EncodeOutputModeM1Spatial_48,
Mach1EncodeOutputModeM1Spatial_60,
};

enum Mach1EncodePannerMode {
Expand All @@ -65,6 +61,7 @@ enum Mach1EncodePannerMode {
extern "C" {
#endif
M1_API void *Mach1EncodeCAPI_create();
M1_API void Mach1EncodeCAPI_copy(void *M1str, void *M1dst);
M1_API void Mach1EncodeCAPI_delete(void *M1obj);

M1_API void *Mach1EncodeCAPI_getPoints(void *M1obj);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@

#include "Mach1Point3D.h"
#include <stdbool.h>
#include <vector>
#include <string>

#if defined(Mach1DecodeCore_h) || defined(Mach1EncodeCore_h) || defined(Mach1PositionalCore_h) || defined(Mach1TranscodeCore_h) || defined(Mach1AudioTimelineCore_h)
# ifndef M1_API
Expand Down Expand Up @@ -43,7 +45,9 @@ M1_API void Mach1TranscodeCAPI_delete(void *M1obj);
M1_API int Mach1TranscodeCAPI_getInputNumChannels(void *M1obj);
M1_API int Mach1TranscodeCAPI_getOutputNumChannels(void *M1obj);
M1_API int Mach1TranscodeCAPI_getFormatFromString(void *M1obj, const char *str);
M1_API const char *Mach1TranscodeCAPI_getFormatName(void *M1obj, int fmt);
M1_API const char* Mach1TranscodeCAPI_getFormatName(void *M1obj, int fmt);
M1_API const char** Mach1TranscodeCAPI_getAllFormatNames(void *M1obj);
M1_API int Mach1TranscodeCAPI_getFormatsCount(void *M1obj);

M1_API float Mach1TranscodeCAPI_processNormalization(void *M1obj, float **bufs, int numSamples);
M1_API void Mach1TranscodeCAPI_processMasterGain(void *M1obj, float **bufs, int numSamples, float masterGain);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,10 +35,6 @@ Module["onRuntimeInitialized"] = function() {
"Mach1DecodeAlgoHorizonPairs": Module.Mach1DecodeAlgoType.Mach1DecodeAlgoHorizonPairs,
"Mach1DecodeAlgoSpatial_12": Module.Mach1DecodeAlgoType.Mach1DecodeAlgoSpatial_12,
"Mach1DecodeAlgoSpatial_14": Module.Mach1DecodeAlgoType.Mach1DecodeAlgoSpatial_14,
"Mach1DecodeAlgoSpatial_32": Module.Mach1DecodeAlgoType.Mach1DecodeAlgoSpatial_32,
"Mach1DecodeAlgoSpatial_36": Module.Mach1DecodeAlgoType.Mach1DecodeAlgoSpatial_36,
"Mach1DecodeAlgoSpatial_48": Module.Mach1DecodeAlgoType.Mach1DecodeAlgoSpatial_48,
"Mach1DecodeAlgoSpatial_60": Module.Mach1DecodeAlgoType.Mach1DecodeAlgoSpatial_60
};
this.delete = function() {
if (this._m1obj) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,10 +35,6 @@ Module["onRuntimeInitialized"] = function() {
"Mach1DecodeAlgoHorizonPairs": Module.Mach1DecodeAlgoType.Mach1DecodeAlgoHorizonPairs,
"Mach1DecodeAlgoSpatial_12": Module.Mach1DecodeAlgoType.Mach1DecodeAlgoSpatial_12,
"Mach1DecodeAlgoSpatial_14": Module.Mach1DecodeAlgoType.Mach1DecodeAlgoSpatial_14,
"Mach1DecodeAlgoSpatial_32": Module.Mach1DecodeAlgoType.Mach1DecodeAlgoSpatial_32,
"Mach1DecodeAlgoSpatial_36": Module.Mach1DecodeAlgoType.Mach1DecodeAlgoSpatial_36,
"Mach1DecodeAlgoSpatial_48": Module.Mach1DecodeAlgoType.Mach1DecodeAlgoSpatial_48,
"Mach1DecodeAlgoSpatial_60": Module.Mach1DecodeAlgoType.Mach1DecodeAlgoSpatial_60
};
this.delete = function() {
if (this._m1obj) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -41,21 +41,13 @@ Module["onRuntimeInitialized"] = function() {
"Mach1EncodeOutputModeM1Horizon_4": Module.Mach1EncodeOutputModeType.Mach1EncodeOutputModeM1Horizon_4,
"Mach1EncodeOutputModeM1Spatial_12": Module.Mach1EncodeOutputModeType.Mach1EncodeOutputModeM1Spatial_12,
"Mach1EncodeOutputModeM1Spatial_14": Module.Mach1EncodeOutputModeType.Mach1EncodeOutputModeM1Spatial_14,
"Mach1EncodeOutputModeM1Spatial_32": Module.Mach1EncodeOutputModeType.Mach1EncodeOutputModeM1Spatial_32,
"Mach1EncodeOutputModeM1Spatial_36": Module.Mach1EncodeOutputModeType.Mach1EncodeOutputModeM1Spatial_36,
"Mach1EncodeOutputModeM1Spatial_48": Module.Mach1EncodeOutputModeType.Mach1EncodeOutputModeM1Spatial_48,
"Mach1EncodeOutputModeM1Spatial_60": Module.Mach1EncodeOutputModeType.Mach1EncodeOutputModeM1Spatial_60
};
this.Mach1DecodeAlgoType = {
"Mach1DecodeAlgoSpatial_8": Module.Mach1DecodeAlgoType.Mach1DecodeAlgoSpatial_8,
"Mach1DecodeAlgoHorizon_4": Module.Mach1DecodeAlgoType.Mach1DecodeAlgoHorizon_4,
"Mach1DecodeAlgoHorizonPairs": Module.Mach1DecodeAlgoType.Mach1DecodeAlgoHorizonPairs,
"Mach1DecodeAlgoSpatial_12": Module.Mach1DecodeAlgoType.Mach1DecodeAlgoSpatial_12,
"Mach1DecodeAlgoSpatial_14": Module.Mach1DecodeAlgoType.Mach1DecodeAlgoSpatial_14,
"Mach1DecodeAlgoSpatial_32": Module.Mach1DecodeAlgoType.Mach1DecodeAlgoSpatial_32,
"Mach1DecodeAlgoSpatial_36": Module.Mach1DecodeAlgoType.Mach1DecodeAlgoSpatial_36,
"Mach1DecodeAlgoSpatial_48": Module.Mach1DecodeAlgoType.Mach1DecodeAlgoSpatial_48,
"Mach1DecodeAlgoSpatial_60": Module.Mach1DecodeAlgoType.Mach1DecodeAlgoSpatial_60
};
this.delete = function() {
if (this._m1obj) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,16 @@ Module["onRuntimeInitialized"] = function() {
return this._m1obj.getFormatName(fmt);
}
};
this.getAllFormatNames = function() {
if (this._m1obj) {
return this._m1obj.getAllFormatNames();
}
};
this.getFormatsCount = function() {
if (this._m1obj) {
return this._m1obj.getFormatsCount();
}
}
this.processNormalization = function(bufs) {
if (this._m1obj) {
return this._m1obj.processNormalization(bufs);
Expand Down
4 changes: 0 additions & 4 deletions examples/mach1spatial-web/js/Mach1Decode.js
Original file line number Diff line number Diff line change
Expand Up @@ -35,10 +35,6 @@ Module["onRuntimeInitialized"] = function() {
"Mach1DecodeAlgoHorizonPairs": Module.Mach1DecodeAlgoType.Mach1DecodeAlgoHorizonPairs,
"Mach1DecodeAlgoSpatial_12": Module.Mach1DecodeAlgoType.Mach1DecodeAlgoSpatial_12,
"Mach1DecodeAlgoSpatial_14": Module.Mach1DecodeAlgoType.Mach1DecodeAlgoSpatial_14,
"Mach1DecodeAlgoSpatial_32": Module.Mach1DecodeAlgoType.Mach1DecodeAlgoSpatial_32,
"Mach1DecodeAlgoSpatial_36": Module.Mach1DecodeAlgoType.Mach1DecodeAlgoSpatial_36,
"Mach1DecodeAlgoSpatial_48": Module.Mach1DecodeAlgoType.Mach1DecodeAlgoSpatial_48,
"Mach1DecodeAlgoSpatial_60": Module.Mach1DecodeAlgoType.Mach1DecodeAlgoSpatial_60
};
this.delete = function() {
if (this._m1obj) {
Expand Down
4 changes: 0 additions & 4 deletions examples/mach1spatial-web/js/Mach1DecodePositional.js
Original file line number Diff line number Diff line change
Expand Up @@ -35,10 +35,6 @@ Module["onRuntimeInitialized"] = function() {
"Mach1DecodeAlgoHorizonPairs": Module.Mach1DecodeAlgoType.Mach1DecodeAlgoHorizonPairs,
"Mach1DecodeAlgoSpatial_12": Module.Mach1DecodeAlgoType.Mach1DecodeAlgoSpatial_12,
"Mach1DecodeAlgoSpatial_14": Module.Mach1DecodeAlgoType.Mach1DecodeAlgoSpatial_14,
"Mach1DecodeAlgoSpatial_32": Module.Mach1DecodeAlgoType.Mach1DecodeAlgoSpatial_32,
"Mach1DecodeAlgoSpatial_36": Module.Mach1DecodeAlgoType.Mach1DecodeAlgoSpatial_36,
"Mach1DecodeAlgoSpatial_48": Module.Mach1DecodeAlgoType.Mach1DecodeAlgoSpatial_48,
"Mach1DecodeAlgoSpatial_60": Module.Mach1DecodeAlgoType.Mach1DecodeAlgoSpatial_60
};
this.delete = function() {
if (this._m1obj) {
Expand Down
8 changes: 0 additions & 8 deletions examples/mach1spatial-web/js/Mach1Encode.js
Original file line number Diff line number Diff line change
Expand Up @@ -41,21 +41,13 @@ Module["onRuntimeInitialized"] = function() {
"Mach1EncodeOutputModeM1Horizon_4": Module.Mach1EncodeOutputModeType.Mach1EncodeOutputModeM1Horizon_4,
"Mach1EncodeOutputModeM1Spatial_12": Module.Mach1EncodeOutputModeType.Mach1EncodeOutputModeM1Spatial_12,
"Mach1EncodeOutputModeM1Spatial_14": Module.Mach1EncodeOutputModeType.Mach1EncodeOutputModeM1Spatial_14,
"Mach1EncodeOutputModeM1Spatial_32": Module.Mach1EncodeOutputModeType.Mach1EncodeOutputModeM1Spatial_32,
"Mach1EncodeOutputModeM1Spatial_36": Module.Mach1EncodeOutputModeType.Mach1EncodeOutputModeM1Spatial_36,
"Mach1EncodeOutputModeM1Spatial_48": Module.Mach1EncodeOutputModeType.Mach1EncodeOutputModeM1Spatial_48,
"Mach1EncodeOutputModeM1Spatial_60": Module.Mach1EncodeOutputModeType.Mach1EncodeOutputModeM1Spatial_60
};
this.Mach1DecodeAlgoType = {
"Mach1DecodeAlgoSpatial_8": Module.Mach1DecodeAlgoType.Mach1DecodeAlgoSpatial_8,
"Mach1DecodeAlgoHorizon_4": Module.Mach1DecodeAlgoType.Mach1DecodeAlgoHorizon_4,
"Mach1DecodeAlgoHorizonPairs": Module.Mach1DecodeAlgoType.Mach1DecodeAlgoHorizonPairs,
"Mach1DecodeAlgoSpatial_12": Module.Mach1DecodeAlgoType.Mach1DecodeAlgoSpatial_12,
"Mach1DecodeAlgoSpatial_14": Module.Mach1DecodeAlgoType.Mach1DecodeAlgoSpatial_14,
"Mach1DecodeAlgoSpatial_32": Module.Mach1DecodeAlgoType.Mach1DecodeAlgoSpatial_32,
"Mach1DecodeAlgoSpatial_36": Module.Mach1DecodeAlgoType.Mach1DecodeAlgoSpatial_36,
"Mach1DecodeAlgoSpatial_48": Module.Mach1DecodeAlgoType.Mach1DecodeAlgoSpatial_48,
"Mach1DecodeAlgoSpatial_60": Module.Mach1DecodeAlgoType.Mach1DecodeAlgoSpatial_60
};
this.delete = function() {
if (this._m1obj) {
Expand Down
10 changes: 10 additions & 0 deletions examples/mach1spatial-web/js/Mach1Transcode.js
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,16 @@ Module["onRuntimeInitialized"] = function() {
return this._m1obj.getFormatName(fmt);
}
};
this.getAllFormatNames = function() {
if (this._m1obj) {
return this._m1obj.getAllFormatNames();
}
};
this.getFormatsCount = function() {
if (this._m1obj) {
return this._m1obj.getFormatsCount();
}
}
this.processNormalization = function(bufs) {
if (this._m1obj) {
return this._m1obj.processNormalization(bufs);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@
package com.mach1.spatiallibs;

public final class Mach1EncodePannerMode {
public final static Mach1EncodePannerMode Mach1EncodePannerModeIsotropicLinear = new Mach1EncodePannerMode("Mach1EncodePannerModeIsotropicLinear", Mach1EncodeModuleJNI.Mach1EncodePannerModeIsotropicLinear_get());
public final static Mach1EncodePannerMode Mach1EncodePannerModeIsotropicEqualPower = new Mach1EncodePannerMode("Mach1EncodePannerModeIsotropicEqualPower");
public final static Mach1EncodePannerMode Mach1EncodePannerModePeriphonicLinear = new Mach1EncodePannerMode("Mach1EncodePannerModePeriphonicLinear");
public final static Mach1EncodePannerMode Mach1EncodePannerModeIsotropicLinear = new Mach1EncodePannerModeType("Mach1EncodePannerModeIsotropicLinear", Mach1EncodeModuleJNI.Mach1EncodePannerModeIsotropicLinear_get());
public final static Mach1EncodePannerMode Mach1EncodePannerModeIsotropicEqualPower = new Mach1EncodePannerModeType("Mach1EncodePannerModeIsotropicEqualPower");
public final static Mach1EncodePannerMode Mach1EncodePannerModePeriphonicLinear = new Mach1EncodePannerModeType("Mach1EncodePannerModePeriphonicLinear");

public final int swigValue() {
return swigValue;
Expand All @@ -27,21 +27,21 @@ public static Mach1EncodePannerMode swigToEnum(int swigValue) {
for (int i = 0; i < swigValues.length; i++)
if (swigValues[i].swigValue == swigValue)
return swigValues[i];
throw new IllegalArgumentException("No enum " + Mach1EncodePannerMode.class + " with value " + swigValue);
throw new IllegalArgumentException("No enum " + Mach1EncodePannerModeType.class + " with value " + swigValue);
}

private Mach1EncodePannerMode(String swigName) {
private Mach1EncodePannerModeType(String swigName) {
this.swigName = swigName;
this.swigValue = swigNext++;
}

private Mach1EncodePannerMode(String swigName, int swigValue) {
private Mach1EncodePannerModeType(String swigName, int swigValue) {
this.swigName = swigName;
this.swigValue = swigValue;
swigNext = swigValue+1;
}

private Mach1EncodePannerMode(String swigName, Mach1EncodePannerMode swigEnum) {
private Mach1EncodePannerModeType(String swigName, Mach1EncodePannerMode swigEnum) {
this.swigName = swigName;
this.swigValue = swigEnum.swigValue;
swigNext = this.swigValue+1;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@
package com.mach1.spatiallibs;

public final class Mach1EncodePannerMode {
public final static Mach1EncodePannerMode Mach1EncodePannerModeIsotropicLinear = new Mach1EncodePannerMode("Mach1EncodePannerModeIsotropicLinear", Mach1EncodeModuleJNI.Mach1EncodePannerModeIsotropicLinear_get());
public final static Mach1EncodePannerMode Mach1EncodePannerModeIsotropicEqualPower = new Mach1EncodePannerMode("Mach1EncodePannerModeIsotropicEqualPower");
public final static Mach1EncodePannerMode Mach1EncodePannerModePeriphonicLinear = new Mach1EncodePannerMode("Mach1EncodePannerModePeriphonicLinear");
public final static Mach1EncodePannerMode Mach1EncodePannerModeIsotropicLinear = new Mach1EncodePannerModeType("Mach1EncodePannerModeIsotropicLinear", Mach1EncodeModuleJNI.Mach1EncodePannerModeIsotropicLinear_get());
public final static Mach1EncodePannerMode Mach1EncodePannerModeIsotropicEqualPower = new Mach1EncodePannerModeType("Mach1EncodePannerModeIsotropicEqualPower");
public final static Mach1EncodePannerMode Mach1EncodePannerModePeriphonicLinear = new Mach1EncodePannerModeType("Mach1EncodePannerModePeriphonicLinear");

public final int swigValue() {
return swigValue;
Expand All @@ -27,21 +27,21 @@ public static Mach1EncodePannerMode swigToEnum(int swigValue) {
for (int i = 0; i < swigValues.length; i++)
if (swigValues[i].swigValue == swigValue)
return swigValues[i];
throw new IllegalArgumentException("No enum " + Mach1EncodePannerMode.class + " with value " + swigValue);
throw new IllegalArgumentException("No enum " + Mach1EncodePannerModeType.class + " with value " + swigValue);
}

private Mach1EncodePannerMode(String swigName) {
private Mach1EncodePannerModeType(String swigName) {
this.swigName = swigName;
this.swigValue = swigNext++;
}

private Mach1EncodePannerMode(String swigName, int swigValue) {
private Mach1EncodePannerModeType(String swigName, int swigValue) {
this.swigName = swigName;
this.swigValue = swigValue;
swigNext = swigValue+1;
}

private Mach1EncodePannerMode(String swigName, Mach1EncodePannerMode swigEnum) {
private Mach1EncodePannerModeType(String swigName, Mach1EncodePannerMode swigEnum) {
this.swigName = swigName;
this.swigValue = swigEnum.swigValue;
swigNext = this.swigValue+1;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@
package com.mach1.spatiallibs;

public final class Mach1EncodePannerMode {
public final static Mach1EncodePannerMode Mach1EncodePannerModeIsotropicLinear = new Mach1EncodePannerMode("Mach1EncodePannerModeIsotropicLinear", Mach1EncodeModuleJNI.Mach1EncodePannerModeIsotropicLinear_get());
public final static Mach1EncodePannerMode Mach1EncodePannerModeIsotropicEqualPower = new Mach1EncodePannerMode("Mach1EncodePannerModeIsotropicEqualPower");
public final static Mach1EncodePannerMode Mach1EncodePannerModePeriphonicLinear = new Mach1EncodePannerMode("Mach1EncodePannerModePeriphonicLinear");
public final static Mach1EncodePannerMode Mach1EncodePannerModeIsotropicLinear = new Mach1EncodePannerModeType("Mach1EncodePannerModeIsotropicLinear", Mach1EncodeModuleJNI.Mach1EncodePannerModeIsotropicLinear_get());
public final static Mach1EncodePannerMode Mach1EncodePannerModeIsotropicEqualPower = new Mach1EncodePannerModeType("Mach1EncodePannerModeIsotropicEqualPower");
public final static Mach1EncodePannerMode Mach1EncodePannerModePeriphonicLinear = new Mach1EncodePannerModeType("Mach1EncodePannerModePeriphonicLinear");

public final int swigValue() {
return swigValue;
Expand All @@ -27,21 +27,21 @@ public static Mach1EncodePannerMode swigToEnum(int swigValue) {
for (int i = 0; i < swigValues.length; i++)
if (swigValues[i].swigValue == swigValue)
return swigValues[i];
throw new IllegalArgumentException("No enum " + Mach1EncodePannerMode.class + " with value " + swigValue);
throw new IllegalArgumentException("No enum " + Mach1EncodePannerModeType.class + " with value " + swigValue);
}

private Mach1EncodePannerMode(String swigName) {
private Mach1EncodePannerModeType(String swigName) {
this.swigName = swigName;
this.swigValue = swigNext++;
}

private Mach1EncodePannerMode(String swigName, int swigValue) {
private Mach1EncodePannerModeType(String swigName, int swigValue) {
this.swigName = swigName;
this.swigValue = swigValue;
swigNext = swigValue+1;
}

private Mach1EncodePannerMode(String swigName, Mach1EncodePannerMode swigEnum) {
private Mach1EncodePannerModeType(String swigName, Mach1EncodePannerMode swigEnum) {
this.swigName = swigName;
this.swigValue = swigEnum.swigValue;
swigNext = this.swigValue+1;
Expand Down
Loading

0 comments on commit a278a2a

Please sign in to comment.