* #36737: switch back to svn repo, remove assert in sip_transaction.c
diff --git a/jni/pjproject-android/.svn/pristine/2d/2d963f55a41e937e50f9de833578933eb93a0d05.svn-base b/jni/pjproject-android/.svn/pristine/2d/2d963f55a41e937e50f9de833578933eb93a0d05.svn-base
new file mode 100644
index 0000000..c81d715
--- /dev/null
+++ b/jni/pjproject-android/.svn/pristine/2d/2d963f55a41e937e50f9de833578933eb93a0d05.svn-base
@@ -0,0 +1,32 @@
+#ifndef __RESAMPLESUBS_H__
+#define __RESAMPLESUBS_H__
+
+typedef char           RES_BOOL;
+typedef short          RES_HWORD;
+typedef int            RES_WORD;
+typedef unsigned short RES_UHWORD;
+typedef unsigned int   RES_UWORD;
+
+#ifdef _USRDLL
+#   define DECL(T)  __declspec(dllexport) T
+#else
+#   define DECL(T)  T
+#endif
+
+#ifdef __cplusplus
+extern "C"
+{
+#endif
+
+DECL(int) res_SrcLinear(const RES_HWORD X[], RES_HWORD Y[], 
+		        double pFactor, RES_UHWORD nx);
+DECL(int) res_Resample(const RES_HWORD X[], RES_HWORD Y[], double pFactor, 
+		       RES_UHWORD nx, RES_BOOL LargeF, RES_BOOL Interp);
+DECL(int) res_GetXOFF(double pFactor, RES_BOOL LargeF);
+
+#ifdef __cplusplus
+}
+#endif
+
+#endif
+