diff --git a/linux/build b/linux/build index 2c2a6c35..2990bb9c 100755 --- a/linux/build +++ b/linux/build @@ -1,6 +1,6 @@ #!/bin/bash BLD_FLAGS="-std=gnu99 -Wno-write-strings -DGPAC_CONFIG_LINUX -D_FILE_OFFSET_BITS=64 -DVERSION_FILE_PRESENT -DENABLE_OCR" -BLD_INCLUDE="-I../src -I /usr/include/leptonica/ -I /usr/include/tesseract/ -I../src/lib_ccx/ -I../src/gpacmp4/ -I../src/libpng/ -I../src/zlib/ -I../src/zvbi -I../src/lib_hash -I../src/protobuf-c -I../src/utf8proc" +BLD_INCLUDE="-I /usr/include/python2.7/ -I../src -I /usr/include/leptonica/ -I /usr/include/tesseract/ -I../src/lib_ccx/ -I../src/gpacmp4/ -I../src/libpng/ -I../src/zlib/ -I../src/zvbi -I../src/lib_hash -I../src/protobuf-c -I../src/utf8proc" SRC_LIBPNG="$(find ../src/libpng/ -name '*.c')" SRC_ZLIB="$(find ../src/zlib/ -name '*.c')" SRC_ZVBI="$(find ../src/zvbi/ -name '*.c')" @@ -10,11 +10,11 @@ SRC_HASH="$(find ../src/lib_hash/ -name '*.c')" SRC_PROTOBUF="$(find ../src/protobuf-c/ -name '*.c')" SRC_UTF8PROC="../src/utf8proc/utf8proc.c" BLD_SOURCES="../src/ccextractor.c $SRC_CCX $SRC_GPAC $SRC_ZLIB $SRC_ZVBI $SRC_LIBPNG $SRC_HASH $SRC_PROTOBUF $SRC_UTF8PROC" -BLD_LINKER="-lm -zmuldefs -l tesseract -l lept" +BLD_LINKER="-lm -zmuldefs -l tesseract -l lept -l python2.7" ./pre-build.sh -out=$((LC_ALL=C gcc $BLD_FLAGS $BLD_INCLUDE -o ccextractor $BLD_SOURCES $BLD_LINKER) 2>&1) +out=$((LC_ALL=C gcc -fPIC $BLD_FLAGS $BLD_INCLUDE -o ccextractor.o $BLD_SOURCES $BLD_LINKER)2>&1) res=$? if [[ $out == *"gcc: command not found"* ]] then diff --git a/linux/build_api b/linux/build_api new file mode 100755 index 00000000..0a94b7d2 --- /dev/null +++ b/linux/build_api @@ -0,0 +1,44 @@ +#!/bin/bash +BLD_FLAGS="-std=gnu99 -Wno-write-strings -DGPAC_CONFIG_LINUX -D_FILE_OFFSET_BITS=64 -DVERSION_FILE_PRESENT -DENABLE_OCR" +BLD_INCLUDE="-I /usr/include/python2.7/ -I../src -I /usr/include/leptonica/ -I /usr/include/tesseract/ -I../src/lib_ccx/ -I../src/gpacmp4/ -I../src/libpng/ -I../src/zlib/ -I../src/zvbi -I../src/lib_hash -I../src/protobuf-c -I../src/utf8proc" +SRC_LIBPNG="$(find ../src/libpng/ -name '*.c')" +SRC_ZLIB="$(find ../src/zlib/ -name '*.c')" +SRC_ZVBI="$(find ../src/zvbi/ -name '*.c')" +SRC_CCX="$(find ../src/lib_ccx/ -name '*.c')" +SRC_GPAC="$(find ../src/gpacmp4/ -name '*.c')" +SRC_HASH="$(find ../src/lib_hash/ -name '*.c')" +SRC_PROTOBUF="$(find ../src/protobuf-c/ -name '*.c')" +SRC_UTF8PROC="../src/utf8proc/utf8proc.c" +BLD_SOURCES="../src/ccextractor.c ../src/ccextractorapi.c $SRC_CCX $SRC_GPAC $SRC_ZLIB $SRC_ZVBI $SRC_LIBPNG $SRC_HASH $SRC_PROTOBUF $SRC_UTF8PROC" + +./pre-build.sh + +out=$((LC_ALL=C gcc -fPIC -c $BLD_INCLUDE $BLD_SOURCES) 2>&1) +res=$? +if [[ $out == *"gcc: command not found"* ]] +then + echo "Error: please install gcc"; + exit 1 +fi +if [[ $out == *"curl.h: No such file or directory"* ]] +then + echo "Error: please install curl development library (libcurl4-gnutls-dev for Debian/Ubuntu)"; + exit 2 +fi +if [[ $out == *"capi.h: No such file or directory"* ]] +then + echo "Error: please install tesseract development library (tesseract-ocr-dev for Debian/Ubuntu)"; + exit 3 +fi +if [[ $out == *"allheaders.h: No such file or directory"* ]] +then + echo "Error: please install leptonica development library (libleptonica-dev for Debian/Ubuntu)"; + exit 4 +fi +if [[ $res -ne 0 ]] # Unknown error +then + echo "Compiled with errors" + >&2 echo "$out" + exit 5 +fi +echo "Compilation successful"; diff --git a/linux/build_wrapper b/linux/build_wrapper new file mode 100755 index 00000000..fc810200 --- /dev/null +++ b/linux/build_wrapper @@ -0,0 +1,44 @@ +#!/bin/bash +BLD_FLAGS="-std=gnu99 -Wno-write-strings -DGPAC_CONFIG_LINUX -D_FILE_OFFSET_BITS=64 -DVERSION_FILE_PRESENT -DENABLE_OCR" +BLD_INCLUDE="-I /usr/include/python2.7/ -I../src -I /usr/include/leptonica/ -I /usr/include/tesseract/ -I../src/lib_ccx/ -I../src/gpacmp4/ -I../src/libpng/ -I../src/zlib/ -I../src/zvbi -I../src/lib_hash -I../src/protobuf-c -I../src/utf8proc" +SRC_LIBPNG="$(find ../src/libpng/ -name '*.c')" +SRC_ZLIB="$(find ../src/zlib/ -name '*.c')" +SRC_ZVBI="$(find ../src/zvbi/ -name '*.c')" +SRC_CCX="$(find ../src/lib_ccx/ -name '*.c')" +SRC_GPAC="$(find ../src/gpacmp4/ -name '*.c')" +SRC_HASH="$(find ../src/lib_hash/ -name '*.c')" +SRC_PROTOBUF="$(find ../src/protobuf-c/ -name '*.c')" +SRC_UTF8PROC="../src/utf8proc/utf8proc.c" +BLD_SOURCES="../src/ccextractor.c ../src/ccextractorapi_wrap.c $SRC_CCX $SRC_GPAC $SRC_ZLIB $SRC_ZVBI $SRC_LIBPNG $SRC_HASH $SRC_PROTOBUF $SRC_UTF8PROC" + +./pre-build.sh + +out=$((LC_ALL=C gcc -fPIC -c $BLD_INCLUDE $BLD_SOURCES) 2>&1) +res=$? +if [[ $out == *"gcc: command not found"* ]] +then + echo "Error: please install gcc"; + exit 1 +fi +if [[ $out == *"curl.h: No such file or directory"* ]] +then + echo "Error: please install curl development library (libcurl4-gnutls-dev for Debian/Ubuntu)"; + exit 2 +fi +if [[ $out == *"capi.h: No such file or directory"* ]] +then + echo "Error: please install tesseract development library (tesseract-ocr-dev for Debian/Ubuntu)"; + exit 3 +fi +if [[ $out == *"allheaders.h: No such file or directory"* ]] +then + echo "Error: please install leptonica development library (libleptonica-dev for Debian/Ubuntu)"; + exit 4 +fi +if [[ $res -ne 0 ]] # Unknown error +then + echo "Compiled with errors" + >&2 echo "$out" + exit 5 +fi +echo "Compilation successful"; diff --git a/linux/ccextractorapi.i b/linux/ccextractorapi.i new file mode 100644 index 00000000..f429a8a0 --- /dev/null +++ b/linux/ccextractorapi.i @@ -0,0 +1,19 @@ +%module ccextractorapi + +%{ + #define SWIG_FILE_WITH_INIT + #include "../src/lib_ccx/lib_ccx.h" + #include "../src/lib_ccx/configuration.h" + #include "../src/lib_ccx/ccx_common_option.h" + #include "../src/lib_ccx/ccx_mp4.h" + #include "../src/lib_ccx/hardsubx.h" + #include "../src/lib_ccx/ccx_share.h" + #include "../src/ccextractorapi.h" +%} + %include "../src/lib_ccx/lib_ccx.h" + %include "../src/lib_ccx/configuration.h" + %include "../src/lib_ccx/ccx_common_option.h" + %include "../src/lib_ccx/ccx_mp4.h" + %include "../src/lib_ccx/hardsubx.h" + %include "../src/lib_ccx/ccx_share.h" + %include "../src/ccextractorapi.h" diff --git a/linux/ccextractorapi_wrap.c b/linux/ccextractorapi_wrap.c new file mode 100644 index 00000000..6c8b5408 --- /dev/null +++ b/linux/ccextractorapi_wrap.c @@ -0,0 +1,20702 @@ +/* ---------------------------------------------------------------------------- + * This file was automatically generated by SWIG (http://www.swig.org). + * Version 3.0.12 + * + * This file is not intended to be easily readable and contains a number of + * coding conventions designed to improve portability and efficiency. Do not make + * changes to this file unless you know what you are doing--modify the SWIG + * interface file instead. + * ----------------------------------------------------------------------------- */ + + +#ifndef SWIGPYTHON +#define SWIGPYTHON +#endif + +#define SWIG_PYTHON_DIRECTOR_NO_VTABLE + +/* ----------------------------------------------------------------------------- + * This section contains generic SWIG labels for method/variable + * declarations/attributes, and other compiler dependent labels. + * ----------------------------------------------------------------------------- */ + +/* template workaround for compilers that cannot correctly implement the C++ standard */ +#ifndef SWIGTEMPLATEDISAMBIGUATOR +# if defined(__SUNPRO_CC) && (__SUNPRO_CC <= 0x560) +# define SWIGTEMPLATEDISAMBIGUATOR template +# elif defined(__HP_aCC) +/* Needed even with `aCC -AA' when `aCC -V' reports HP ANSI C++ B3910B A.03.55 */ +/* If we find a maximum version that requires this, the test would be __HP_aCC <= 35500 for A.03.55 */ +# define SWIGTEMPLATEDISAMBIGUATOR template +# else +# define SWIGTEMPLATEDISAMBIGUATOR +# endif +#endif + +/* inline attribute */ +#ifndef SWIGINLINE +# if defined(__cplusplus) || (defined(__GNUC__) && !defined(__STRICT_ANSI__)) +# define SWIGINLINE inline +# else +# define SWIGINLINE +# endif +#endif + +/* attribute recognised by some compilers to avoid 'unused' warnings */ +#ifndef SWIGUNUSED +# if defined(__GNUC__) +# if !(defined(__cplusplus)) || (__GNUC__ > 3 || (__GNUC__ == 3 && __GNUC_MINOR__ >= 4)) +# define SWIGUNUSED __attribute__ ((__unused__)) +# else +# define SWIGUNUSED +# endif +# elif defined(__ICC) +# define SWIGUNUSED __attribute__ ((__unused__)) +# else +# define SWIGUNUSED +# endif +#endif + +#ifndef SWIG_MSC_UNSUPPRESS_4505 +# if defined(_MSC_VER) +# pragma warning(disable : 4505) /* unreferenced local function has been removed */ +# endif +#endif + +#ifndef SWIGUNUSEDPARM +# ifdef __cplusplus +# define SWIGUNUSEDPARM(p) +# else +# define SWIGUNUSEDPARM(p) p SWIGUNUSED +# endif +#endif + +/* internal SWIG method */ +#ifndef SWIGINTERN +# define SWIGINTERN static SWIGUNUSED +#endif + +/* internal inline SWIG method */ +#ifndef SWIGINTERNINLINE +# define SWIGINTERNINLINE SWIGINTERN SWIGINLINE +#endif + +/* exporting methods */ +#if defined(__GNUC__) +# if (__GNUC__ >= 4) || (__GNUC__ == 3 && __GNUC_MINOR__ >= 4) +# ifndef GCC_HASCLASSVISIBILITY +# define GCC_HASCLASSVISIBILITY +# endif +# endif +#endif + +#ifndef SWIGEXPORT +# if defined(_WIN32) || defined(__WIN32__) || defined(__CYGWIN__) +# if defined(STATIC_LINKED) +# define SWIGEXPORT +# else +# define SWIGEXPORT __declspec(dllexport) +# endif +# else +# if defined(__GNUC__) && defined(GCC_HASCLASSVISIBILITY) +# define SWIGEXPORT __attribute__ ((visibility("default"))) +# else +# define SWIGEXPORT +# endif +# endif +#endif + +/* calling conventions for Windows */ +#ifndef SWIGSTDCALL +# if defined(_WIN32) || defined(__WIN32__) || defined(__CYGWIN__) +# define SWIGSTDCALL __stdcall +# else +# define SWIGSTDCALL +# endif +#endif + +/* Deal with Microsoft's attempt at deprecating C standard runtime functions */ +#if !defined(SWIG_NO_CRT_SECURE_NO_DEPRECATE) && defined(_MSC_VER) && !defined(_CRT_SECURE_NO_DEPRECATE) +# define _CRT_SECURE_NO_DEPRECATE +#endif + +/* Deal with Microsoft's attempt at deprecating methods in the standard C++ library */ +#if !defined(SWIG_NO_SCL_SECURE_NO_DEPRECATE) && defined(_MSC_VER) && !defined(_SCL_SECURE_NO_DEPRECATE) +# define _SCL_SECURE_NO_DEPRECATE +#endif + +/* Deal with Apple's deprecated 'AssertMacros.h' from Carbon-framework */ +#if defined(__APPLE__) && !defined(__ASSERT_MACROS_DEFINE_VERSIONS_WITHOUT_UNDERSCORES) +# define __ASSERT_MACROS_DEFINE_VERSIONS_WITHOUT_UNDERSCORES 0 +#endif + +/* Intel's compiler complains if a variable which was never initialised is + * cast to void, which is a common idiom which we use to indicate that we + * are aware a variable isn't used. So we just silence that warning. + * See: https://github.com/swig/swig/issues/192 for more discussion. + */ +#ifdef __INTEL_COMPILER +# pragma warning disable 592 +#endif + + +#if defined(_DEBUG) && defined(SWIG_PYTHON_INTERPRETER_NO_DEBUG) +/* Use debug wrappers with the Python release dll */ +# undef _DEBUG +# include +# define _DEBUG +#else +# include +#endif + +/* ----------------------------------------------------------------------------- + * swigrun.swg + * + * This file contains generic C API SWIG runtime support for pointer + * type checking. + * ----------------------------------------------------------------------------- */ + +/* This should only be incremented when either the layout of swig_type_info changes, + or for whatever reason, the runtime changes incompatibly */ +#define SWIG_RUNTIME_VERSION "4" + +/* define SWIG_TYPE_TABLE_NAME as "SWIG_TYPE_TABLE" */ +#ifdef SWIG_TYPE_TABLE +# define SWIG_QUOTE_STRING(x) #x +# define SWIG_EXPAND_AND_QUOTE_STRING(x) SWIG_QUOTE_STRING(x) +# define SWIG_TYPE_TABLE_NAME SWIG_EXPAND_AND_QUOTE_STRING(SWIG_TYPE_TABLE) +#else +# define SWIG_TYPE_TABLE_NAME +#endif + +/* + You can use the SWIGRUNTIME and SWIGRUNTIMEINLINE macros for + creating a static or dynamic library from the SWIG runtime code. + In 99.9% of the cases, SWIG just needs to declare them as 'static'. + + But only do this if strictly necessary, ie, if you have problems + with your compiler or suchlike. +*/ + +#ifndef SWIGRUNTIME +# define SWIGRUNTIME SWIGINTERN +#endif + +#ifndef SWIGRUNTIMEINLINE +# define SWIGRUNTIMEINLINE SWIGRUNTIME SWIGINLINE +#endif + +/* Generic buffer size */ +#ifndef SWIG_BUFFER_SIZE +# define SWIG_BUFFER_SIZE 1024 +#endif + +/* Flags for pointer conversions */ +#define SWIG_POINTER_DISOWN 0x1 +#define SWIG_CAST_NEW_MEMORY 0x2 + +/* Flags for new pointer objects */ +#define SWIG_POINTER_OWN 0x1 + + +/* + Flags/methods for returning states. + + The SWIG conversion methods, as ConvertPtr, return an integer + that tells if the conversion was successful or not. And if not, + an error code can be returned (see swigerrors.swg for the codes). + + Use the following macros/flags to set or process the returning + states. + + In old versions of SWIG, code such as the following was usually written: + + if (SWIG_ConvertPtr(obj,vptr,ty.flags) != -1) { + // success code + } else { + //fail code + } + + Now you can be more explicit: + + int res = SWIG_ConvertPtr(obj,vptr,ty.flags); + if (SWIG_IsOK(res)) { + // success code + } else { + // fail code + } + + which is the same really, but now you can also do + + Type *ptr; + int res = SWIG_ConvertPtr(obj,(void **)(&ptr),ty.flags); + if (SWIG_IsOK(res)) { + // success code + if (SWIG_IsNewObj(res) { + ... + delete *ptr; + } else { + ... + } + } else { + // fail code + } + + I.e., now SWIG_ConvertPtr can return new objects and you can + identify the case and take care of the deallocation. Of course that + also requires SWIG_ConvertPtr to return new result values, such as + + int SWIG_ConvertPtr(obj, ptr,...) { + if () { + if () { + *ptr = ; + return SWIG_NEWOBJ; + } else { + *ptr = ; + return SWIG_OLDOBJ; + } + } else { + return SWIG_BADOBJ; + } + } + + Of course, returning the plain '0(success)/-1(fail)' still works, but you can be + more explicit by returning SWIG_BADOBJ, SWIG_ERROR or any of the + SWIG errors code. + + Finally, if the SWIG_CASTRANK_MODE is enabled, the result code + allows to return the 'cast rank', for example, if you have this + + int food(double) + int fooi(int); + + and you call + + food(1) // cast rank '1' (1 -> 1.0) + fooi(1) // cast rank '0' + + just use the SWIG_AddCast()/SWIG_CheckState() +*/ + +#define SWIG_OK (0) +#define SWIG_ERROR (-1) +#define SWIG_IsOK(r) (r >= 0) +#define SWIG_ArgError(r) ((r != SWIG_ERROR) ? r : SWIG_TypeError) + +/* The CastRankLimit says how many bits are used for the cast rank */ +#define SWIG_CASTRANKLIMIT (1 << 8) +/* The NewMask denotes the object was created (using new/malloc) */ +#define SWIG_NEWOBJMASK (SWIG_CASTRANKLIMIT << 1) +/* The TmpMask is for in/out typemaps that use temporal objects */ +#define SWIG_TMPOBJMASK (SWIG_NEWOBJMASK << 1) +/* Simple returning values */ +#define SWIG_BADOBJ (SWIG_ERROR) +#define SWIG_OLDOBJ (SWIG_OK) +#define SWIG_NEWOBJ (SWIG_OK | SWIG_NEWOBJMASK) +#define SWIG_TMPOBJ (SWIG_OK | SWIG_TMPOBJMASK) +/* Check, add and del mask methods */ +#define SWIG_AddNewMask(r) (SWIG_IsOK(r) ? (r | SWIG_NEWOBJMASK) : r) +#define SWIG_DelNewMask(r) (SWIG_IsOK(r) ? (r & ~SWIG_NEWOBJMASK) : r) +#define SWIG_IsNewObj(r) (SWIG_IsOK(r) && (r & SWIG_NEWOBJMASK)) +#define SWIG_AddTmpMask(r) (SWIG_IsOK(r) ? (r | SWIG_TMPOBJMASK) : r) +#define SWIG_DelTmpMask(r) (SWIG_IsOK(r) ? (r & ~SWIG_TMPOBJMASK) : r) +#define SWIG_IsTmpObj(r) (SWIG_IsOK(r) && (r & SWIG_TMPOBJMASK)) + +/* Cast-Rank Mode */ +#if defined(SWIG_CASTRANK_MODE) +# ifndef SWIG_TypeRank +# define SWIG_TypeRank unsigned long +# endif +# ifndef SWIG_MAXCASTRANK /* Default cast allowed */ +# define SWIG_MAXCASTRANK (2) +# endif +# define SWIG_CASTRANKMASK ((SWIG_CASTRANKLIMIT) -1) +# define SWIG_CastRank(r) (r & SWIG_CASTRANKMASK) +SWIGINTERNINLINE int SWIG_AddCast(int r) { + return SWIG_IsOK(r) ? ((SWIG_CastRank(r) < SWIG_MAXCASTRANK) ? (r + 1) : SWIG_ERROR) : r; +} +SWIGINTERNINLINE int SWIG_CheckState(int r) { + return SWIG_IsOK(r) ? SWIG_CastRank(r) + 1 : 0; +} +#else /* no cast-rank mode */ +# define SWIG_AddCast(r) (r) +# define SWIG_CheckState(r) (SWIG_IsOK(r) ? 1 : 0) +#endif + + +#include + +#ifdef __cplusplus +extern "C" { +#endif + +typedef void *(*swig_converter_func)(void *, int *); +typedef struct swig_type_info *(*swig_dycast_func)(void **); + +/* Structure to store information on one type */ +typedef struct swig_type_info { + const char *name; /* mangled name of this type */ + const char *str; /* human readable name of this type */ + swig_dycast_func dcast; /* dynamic cast function down a hierarchy */ + struct swig_cast_info *cast; /* linked list of types that can cast into this type */ + void *clientdata; /* language specific type data */ + int owndata; /* flag if the structure owns the clientdata */ +} swig_type_info; + +/* Structure to store a type and conversion function used for casting */ +typedef struct swig_cast_info { + swig_type_info *type; /* pointer to type that is equivalent to this type */ + swig_converter_func converter; /* function to cast the void pointers */ + struct swig_cast_info *next; /* pointer to next cast in linked list */ + struct swig_cast_info *prev; /* pointer to the previous cast */ +} swig_cast_info; + +/* Structure used to store module information + * Each module generates one structure like this, and the runtime collects + * all of these structures and stores them in a circularly linked list.*/ +typedef struct swig_module_info { + swig_type_info **types; /* Array of pointers to swig_type_info structures that are in this module */ + size_t size; /* Number of types in this module */ + struct swig_module_info *next; /* Pointer to next element in circularly linked list */ + swig_type_info **type_initial; /* Array of initially generated type structures */ + swig_cast_info **cast_initial; /* Array of initially generated casting structures */ + void *clientdata; /* Language specific module data */ +} swig_module_info; + +/* + Compare two type names skipping the space characters, therefore + "char*" == "char *" and "Class" == "Class", etc. + + Return 0 when the two name types are equivalent, as in + strncmp, but skipping ' '. +*/ +SWIGRUNTIME int +SWIG_TypeNameComp(const char *f1, const char *l1, + const char *f2, const char *l2) { + for (;(f1 != l1) && (f2 != l2); ++f1, ++f2) { + while ((*f1 == ' ') && (f1 != l1)) ++f1; + while ((*f2 == ' ') && (f2 != l2)) ++f2; + if (*f1 != *f2) return (*f1 > *f2) ? 1 : -1; + } + return (int)((l1 - f1) - (l2 - f2)); +} + +/* + Check type equivalence in a name list like ||... + Return 0 if equal, -1 if nb < tb, 1 if nb > tb +*/ +SWIGRUNTIME int +SWIG_TypeCmp(const char *nb, const char *tb) { + int equiv = 1; + const char* te = tb + strlen(tb); + const char* ne = nb; + while (equiv != 0 && *ne) { + for (nb = ne; *ne; ++ne) { + if (*ne == '|') break; + } + equiv = SWIG_TypeNameComp(nb, ne, tb, te); + if (*ne) ++ne; + } + return equiv; +} + +/* + Check type equivalence in a name list like ||... + Return 0 if not equal, 1 if equal +*/ +SWIGRUNTIME int +SWIG_TypeEquiv(const char *nb, const char *tb) { + return SWIG_TypeCmp(nb, tb) == 0 ? 1 : 0; +} + +/* + Check the typename +*/ +SWIGRUNTIME swig_cast_info * +SWIG_TypeCheck(const char *c, swig_type_info *ty) { + if (ty) { + swig_cast_info *iter = ty->cast; + while (iter) { + if (strcmp(iter->type->name, c) == 0) { + if (iter == ty->cast) + return iter; + /* Move iter to the top of the linked list */ + iter->prev->next = iter->next; + if (iter->next) + iter->next->prev = iter->prev; + iter->next = ty->cast; + iter->prev = 0; + if (ty->cast) ty->cast->prev = iter; + ty->cast = iter; + return iter; + } + iter = iter->next; + } + } + return 0; +} + +/* + Identical to SWIG_TypeCheck, except strcmp is replaced with a pointer comparison +*/ +SWIGRUNTIME swig_cast_info * +SWIG_TypeCheckStruct(swig_type_info *from, swig_type_info *ty) { + if (ty) { + swig_cast_info *iter = ty->cast; + while (iter) { + if (iter->type == from) { + if (iter == ty->cast) + return iter; + /* Move iter to the top of the linked list */ + iter->prev->next = iter->next; + if (iter->next) + iter->next->prev = iter->prev; + iter->next = ty->cast; + iter->prev = 0; + if (ty->cast) ty->cast->prev = iter; + ty->cast = iter; + return iter; + } + iter = iter->next; + } + } + return 0; +} + +/* + Cast a pointer up an inheritance hierarchy +*/ +SWIGRUNTIMEINLINE void * +SWIG_TypeCast(swig_cast_info *ty, void *ptr, int *newmemory) { + return ((!ty) || (!ty->converter)) ? ptr : (*ty->converter)(ptr, newmemory); +} + +/* + Dynamic pointer casting. Down an inheritance hierarchy +*/ +SWIGRUNTIME swig_type_info * +SWIG_TypeDynamicCast(swig_type_info *ty, void **ptr) { + swig_type_info *lastty = ty; + if (!ty || !ty->dcast) return ty; + while (ty && (ty->dcast)) { + ty = (*ty->dcast)(ptr); + if (ty) lastty = ty; + } + return lastty; +} + +/* + Return the name associated with this type +*/ +SWIGRUNTIMEINLINE const char * +SWIG_TypeName(const swig_type_info *ty) { + return ty->name; +} + +/* + Return the pretty name associated with this type, + that is an unmangled type name in a form presentable to the user. +*/ +SWIGRUNTIME const char * +SWIG_TypePrettyName(const swig_type_info *type) { + /* The "str" field contains the equivalent pretty names of the + type, separated by vertical-bar characters. We choose + to print the last name, as it is often (?) the most + specific. */ + if (!type) return NULL; + if (type->str != NULL) { + const char *last_name = type->str; + const char *s; + for (s = type->str; *s; s++) + if (*s == '|') last_name = s+1; + return last_name; + } + else + return type->name; +} + +/* + Set the clientdata field for a type +*/ +SWIGRUNTIME void +SWIG_TypeClientData(swig_type_info *ti, void *clientdata) { + swig_cast_info *cast = ti->cast; + /* if (ti->clientdata == clientdata) return; */ + ti->clientdata = clientdata; + + while (cast) { + if (!cast->converter) { + swig_type_info *tc = cast->type; + if (!tc->clientdata) { + SWIG_TypeClientData(tc, clientdata); + } + } + cast = cast->next; + } +} +SWIGRUNTIME void +SWIG_TypeNewClientData(swig_type_info *ti, void *clientdata) { + SWIG_TypeClientData(ti, clientdata); + ti->owndata = 1; +} + +/* + Search for a swig_type_info structure only by mangled name + Search is a O(log #types) + + We start searching at module start, and finish searching when start == end. + Note: if start == end at the beginning of the function, we go all the way around + the circular list. +*/ +SWIGRUNTIME swig_type_info * +SWIG_MangledTypeQueryModule(swig_module_info *start, + swig_module_info *end, + const char *name) { + swig_module_info *iter = start; + do { + if (iter->size) { + size_t l = 0; + size_t r = iter->size - 1; + do { + /* since l+r >= 0, we can (>> 1) instead (/ 2) */ + size_t i = (l + r) >> 1; + const char *iname = iter->types[i]->name; + if (iname) { + int compare = strcmp(name, iname); + if (compare == 0) { + return iter->types[i]; + } else if (compare < 0) { + if (i) { + r = i - 1; + } else { + break; + } + } else if (compare > 0) { + l = i + 1; + } + } else { + break; /* should never happen */ + } + } while (l <= r); + } + iter = iter->next; + } while (iter != end); + return 0; +} + +/* + Search for a swig_type_info structure for either a mangled name or a human readable name. + It first searches the mangled names of the types, which is a O(log #types) + If a type is not found it then searches the human readable names, which is O(#types). + + We start searching at module start, and finish searching when start == end. + Note: if start == end at the beginning of the function, we go all the way around + the circular list. +*/ +SWIGRUNTIME swig_type_info * +SWIG_TypeQueryModule(swig_module_info *start, + swig_module_info *end, + const char *name) { + /* STEP 1: Search the name field using binary search */ + swig_type_info *ret = SWIG_MangledTypeQueryModule(start, end, name); + if (ret) { + return ret; + } else { + /* STEP 2: If the type hasn't been found, do a complete search + of the str field (the human readable name) */ + swig_module_info *iter = start; + do { + size_t i = 0; + for (; i < iter->size; ++i) { + if (iter->types[i]->str && (SWIG_TypeEquiv(iter->types[i]->str, name))) + return iter->types[i]; + } + iter = iter->next; + } while (iter != end); + } + + /* neither found a match */ + return 0; +} + +/* + Pack binary data into a string +*/ +SWIGRUNTIME char * +SWIG_PackData(char *c, void *ptr, size_t sz) { + static const char hex[17] = "0123456789abcdef"; + const unsigned char *u = (unsigned char *) ptr; + const unsigned char *eu = u + sz; + for (; u != eu; ++u) { + unsigned char uu = *u; + *(c++) = hex[(uu & 0xf0) >> 4]; + *(c++) = hex[uu & 0xf]; + } + return c; +} + +/* + Unpack binary data from a string +*/ +SWIGRUNTIME const char * +SWIG_UnpackData(const char *c, void *ptr, size_t sz) { + unsigned char *u = (unsigned char *) ptr; + const unsigned char *eu = u + sz; + for (; u != eu; ++u) { + char d = *(c++); + unsigned char uu; + if ((d >= '0') && (d <= '9')) + uu = (unsigned char)((d - '0') << 4); + else if ((d >= 'a') && (d <= 'f')) + uu = (unsigned char)((d - ('a'-10)) << 4); + else + return (char *) 0; + d = *(c++); + if ((d >= '0') && (d <= '9')) + uu |= (unsigned char)(d - '0'); + else if ((d >= 'a') && (d <= 'f')) + uu |= (unsigned char)(d - ('a'-10)); + else + return (char *) 0; + *u = uu; + } + return c; +} + +/* + Pack 'void *' into a string buffer. +*/ +SWIGRUNTIME char * +SWIG_PackVoidPtr(char *buff, void *ptr, const char *name, size_t bsz) { + char *r = buff; + if ((2*sizeof(void *) + 2) > bsz) return 0; + *(r++) = '_'; + r = SWIG_PackData(r,&ptr,sizeof(void *)); + if (strlen(name) + 1 > (bsz - (r - buff))) return 0; + strcpy(r,name); + return buff; +} + +SWIGRUNTIME const char * +SWIG_UnpackVoidPtr(const char *c, void **ptr, const char *name) { + if (*c != '_') { + if (strcmp(c,"NULL") == 0) { + *ptr = (void *) 0; + return name; + } else { + return 0; + } + } + return SWIG_UnpackData(++c,ptr,sizeof(void *)); +} + +SWIGRUNTIME char * +SWIG_PackDataName(char *buff, void *ptr, size_t sz, const char *name, size_t bsz) { + char *r = buff; + size_t lname = (name ? strlen(name) : 0); + if ((2*sz + 2 + lname) > bsz) return 0; + *(r++) = '_'; + r = SWIG_PackData(r,ptr,sz); + if (lname) { + strncpy(r,name,lname+1); + } else { + *r = 0; + } + return buff; +} + +SWIGRUNTIME const char * +SWIG_UnpackDataName(const char *c, void *ptr, size_t sz, const char *name) { + if (*c != '_') { + if (strcmp(c,"NULL") == 0) { + memset(ptr,0,sz); + return name; + } else { + return 0; + } + } + return SWIG_UnpackData(++c,ptr,sz); +} + +#ifdef __cplusplus +} +#endif + +/* Errors in SWIG */ +#define SWIG_UnknownError -1 +#define SWIG_IOError -2 +#define SWIG_RuntimeError -3 +#define SWIG_IndexError -4 +#define SWIG_TypeError -5 +#define SWIG_DivisionByZero -6 +#define SWIG_OverflowError -7 +#define SWIG_SyntaxError -8 +#define SWIG_ValueError -9 +#define SWIG_SystemError -10 +#define SWIG_AttributeError -11 +#define SWIG_MemoryError -12 +#define SWIG_NullReferenceError -13 + + + +/* Compatibility macros for Python 3 */ +#if PY_VERSION_HEX >= 0x03000000 + +#define PyClass_Check(obj) PyObject_IsInstance(obj, (PyObject *)&PyType_Type) +#define PyInt_Check(x) PyLong_Check(x) +#define PyInt_AsLong(x) PyLong_AsLong(x) +#define PyInt_FromLong(x) PyLong_FromLong(x) +#define PyInt_FromSize_t(x) PyLong_FromSize_t(x) +#define PyString_Check(name) PyBytes_Check(name) +#define PyString_FromString(x) PyUnicode_FromString(x) +#define PyString_Format(fmt, args) PyUnicode_Format(fmt, args) +#define PyString_AsString(str) PyBytes_AsString(str) +#define PyString_Size(str) PyBytes_Size(str) +#define PyString_InternFromString(key) PyUnicode_InternFromString(key) +#define Py_TPFLAGS_HAVE_CLASS Py_TPFLAGS_BASETYPE +#define PyString_AS_STRING(x) PyUnicode_AS_STRING(x) +#define _PyLong_FromSsize_t(x) PyLong_FromSsize_t(x) + +#endif + +#ifndef Py_TYPE +# define Py_TYPE(op) ((op)->ob_type) +#endif + +/* SWIG APIs for compatibility of both Python 2 & 3 */ + +#if PY_VERSION_HEX >= 0x03000000 +# define SWIG_Python_str_FromFormat PyUnicode_FromFormat +#else +# define SWIG_Python_str_FromFormat PyString_FromFormat +#endif + + +/* Warning: This function will allocate a new string in Python 3, + * so please call SWIG_Python_str_DelForPy3(x) to free the space. + */ +SWIGINTERN char* +SWIG_Python_str_AsChar(PyObject *str) +{ +#if PY_VERSION_HEX >= 0x03000000 + char *cstr; + char *newstr; + Py_ssize_t len; + str = PyUnicode_AsUTF8String(str); + PyBytes_AsStringAndSize(str, &cstr, &len); + newstr = (char *) malloc(len+1); + memcpy(newstr, cstr, len+1); + Py_XDECREF(str); + return newstr; +#else + return PyString_AsString(str); +#endif +} + +#if PY_VERSION_HEX >= 0x03000000 +# define SWIG_Python_str_DelForPy3(x) free( (void*) (x) ) +#else +# define SWIG_Python_str_DelForPy3(x) +#endif + + +SWIGINTERN PyObject* +SWIG_Python_str_FromChar(const char *c) +{ +#if PY_VERSION_HEX >= 0x03000000 + return PyUnicode_FromString(c); +#else + return PyString_FromString(c); +#endif +} + +/* Add PyOS_snprintf for old Pythons */ +#if PY_VERSION_HEX < 0x02020000 +# if defined(_MSC_VER) || defined(__BORLANDC__) || defined(_WATCOM) +# define PyOS_snprintf _snprintf +# else +# define PyOS_snprintf snprintf +# endif +#endif + +/* A crude PyString_FromFormat implementation for old Pythons */ +#if PY_VERSION_HEX < 0x02020000 + +#ifndef SWIG_PYBUFFER_SIZE +# define SWIG_PYBUFFER_SIZE 1024 +#endif + +static PyObject * +PyString_FromFormat(const char *fmt, ...) { + va_list ap; + char buf[SWIG_PYBUFFER_SIZE * 2]; + int res; + va_start(ap, fmt); + res = vsnprintf(buf, sizeof(buf), fmt, ap); + va_end(ap); + return (res < 0 || res >= (int)sizeof(buf)) ? 0 : PyString_FromString(buf); +} +#endif + +#ifndef PyObject_DEL +# define PyObject_DEL PyObject_Del +#endif + +/* A crude PyExc_StopIteration exception for old Pythons */ +#if PY_VERSION_HEX < 0x02020000 +# ifndef PyExc_StopIteration +# define PyExc_StopIteration PyExc_RuntimeError +# endif +# ifndef PyObject_GenericGetAttr +# define PyObject_GenericGetAttr 0 +# endif +#endif + +/* Py_NotImplemented is defined in 2.1 and up. */ +#if PY_VERSION_HEX < 0x02010000 +# ifndef Py_NotImplemented +# define Py_NotImplemented PyExc_RuntimeError +# endif +#endif + +/* A crude PyString_AsStringAndSize implementation for old Pythons */ +#if PY_VERSION_HEX < 0x02010000 +# ifndef PyString_AsStringAndSize +# define PyString_AsStringAndSize(obj, s, len) {*s = PyString_AsString(obj); *len = *s ? strlen(*s) : 0;} +# endif +#endif + +/* PySequence_Size for old Pythons */ +#if PY_VERSION_HEX < 0x02000000 +# ifndef PySequence_Size +# define PySequence_Size PySequence_Length +# endif +#endif + +/* PyBool_FromLong for old Pythons */ +#if PY_VERSION_HEX < 0x02030000 +static +PyObject *PyBool_FromLong(long ok) +{ + PyObject *result = ok ? Py_True : Py_False; + Py_INCREF(result); + return result; +} +#endif + +/* Py_ssize_t for old Pythons */ +/* This code is as recommended by: */ +/* http://www.python.org/dev/peps/pep-0353/#conversion-guidelines */ +#if PY_VERSION_HEX < 0x02050000 && !defined(PY_SSIZE_T_MIN) +typedef int Py_ssize_t; +# define PY_SSIZE_T_MAX INT_MAX +# define PY_SSIZE_T_MIN INT_MIN +typedef inquiry lenfunc; +typedef intargfunc ssizeargfunc; +typedef intintargfunc ssizessizeargfunc; +typedef intobjargproc ssizeobjargproc; +typedef intintobjargproc ssizessizeobjargproc; +typedef getreadbufferproc readbufferproc; +typedef getwritebufferproc writebufferproc; +typedef getsegcountproc segcountproc; +typedef getcharbufferproc charbufferproc; +static long PyNumber_AsSsize_t (PyObject *x, void *SWIGUNUSEDPARM(exc)) +{ + long result = 0; + PyObject *i = PyNumber_Int(x); + if (i) { + result = PyInt_AsLong(i); + Py_DECREF(i); + } + return result; +} +#endif + +#if PY_VERSION_HEX < 0x02050000 +#define PyInt_FromSize_t(x) PyInt_FromLong((long)x) +#endif + +#if PY_VERSION_HEX < 0x02040000 +#define Py_VISIT(op) \ + do { \ + if (op) { \ + int vret = visit((op), arg); \ + if (vret) \ + return vret; \ + } \ + } while (0) +#endif + +#if PY_VERSION_HEX < 0x02030000 +typedef struct { + PyTypeObject type; + PyNumberMethods as_number; + PyMappingMethods as_mapping; + PySequenceMethods as_sequence; + PyBufferProcs as_buffer; + PyObject *name, *slots; +} PyHeapTypeObject; +#endif + +#if PY_VERSION_HEX < 0x02030000 +typedef destructor freefunc; +#endif + +#if ((PY_MAJOR_VERSION == 2 && PY_MINOR_VERSION > 6) || \ + (PY_MAJOR_VERSION == 3 && PY_MINOR_VERSION > 0) || \ + (PY_MAJOR_VERSION > 3)) +# define SWIGPY_USE_CAPSULE +# define SWIGPY_CAPSULE_NAME ((char*)"swig_runtime_data" SWIG_RUNTIME_VERSION ".type_pointer_capsule" SWIG_TYPE_TABLE_NAME) +#endif + +#if PY_VERSION_HEX < 0x03020000 +#define PyDescr_TYPE(x) (((PyDescrObject *)(x))->d_type) +#define PyDescr_NAME(x) (((PyDescrObject *)(x))->d_name) +#define Py_hash_t long +#endif + +/* ----------------------------------------------------------------------------- + * error manipulation + * ----------------------------------------------------------------------------- */ + +SWIGRUNTIME PyObject* +SWIG_Python_ErrorType(int code) { + PyObject* type = 0; + switch(code) { + case SWIG_MemoryError: + type = PyExc_MemoryError; + break; + case SWIG_IOError: + type = PyExc_IOError; + break; + case SWIG_RuntimeError: + type = PyExc_RuntimeError; + break; + case SWIG_IndexError: + type = PyExc_IndexError; + break; + case SWIG_TypeError: + type = PyExc_TypeError; + break; + case SWIG_DivisionByZero: + type = PyExc_ZeroDivisionError; + break; + case SWIG_OverflowError: + type = PyExc_OverflowError; + break; + case SWIG_SyntaxError: + type = PyExc_SyntaxError; + break; + case SWIG_ValueError: + type = PyExc_ValueError; + break; + case SWIG_SystemError: + type = PyExc_SystemError; + break; + case SWIG_AttributeError: + type = PyExc_AttributeError; + break; + default: + type = PyExc_RuntimeError; + } + return type; +} + + +SWIGRUNTIME void +SWIG_Python_AddErrorMsg(const char* mesg) +{ + PyObject *type = 0; + PyObject *value = 0; + PyObject *traceback = 0; + + if (PyErr_Occurred()) PyErr_Fetch(&type, &value, &traceback); + if (value) { + char *tmp; + PyObject *old_str = PyObject_Str(value); + PyErr_Clear(); + Py_XINCREF(type); + + PyErr_Format(type, "%s %s", tmp = SWIG_Python_str_AsChar(old_str), mesg); + SWIG_Python_str_DelForPy3(tmp); + Py_DECREF(old_str); + Py_DECREF(value); + } else { + PyErr_SetString(PyExc_RuntimeError, mesg); + } +} + +#if defined(SWIG_PYTHON_NO_THREADS) +# if defined(SWIG_PYTHON_THREADS) +# undef SWIG_PYTHON_THREADS +# endif +#endif +#if defined(SWIG_PYTHON_THREADS) /* Threading support is enabled */ +# if !defined(SWIG_PYTHON_USE_GIL) && !defined(SWIG_PYTHON_NO_USE_GIL) +# if (PY_VERSION_HEX >= 0x02030000) /* For 2.3 or later, use the PyGILState calls */ +# define SWIG_PYTHON_USE_GIL +# endif +# endif +# if defined(SWIG_PYTHON_USE_GIL) /* Use PyGILState threads calls */ +# ifndef SWIG_PYTHON_INITIALIZE_THREADS +# define SWIG_PYTHON_INITIALIZE_THREADS PyEval_InitThreads() +# endif +# ifdef __cplusplus /* C++ code */ + class SWIG_Python_Thread_Block { + bool status; + PyGILState_STATE state; + public: + void end() { if (status) { PyGILState_Release(state); status = false;} } + SWIG_Python_Thread_Block() : status(true), state(PyGILState_Ensure()) {} + ~SWIG_Python_Thread_Block() { end(); } + }; + class SWIG_Python_Thread_Allow { + bool status; + PyThreadState *save; + public: + void end() { if (status) { PyEval_RestoreThread(save); status = false; }} + SWIG_Python_Thread_Allow() : status(true), save(PyEval_SaveThread()) {} + ~SWIG_Python_Thread_Allow() { end(); } + }; +# define SWIG_PYTHON_THREAD_BEGIN_BLOCK SWIG_Python_Thread_Block _swig_thread_block +# define SWIG_PYTHON_THREAD_END_BLOCK _swig_thread_block.end() +# define SWIG_PYTHON_THREAD_BEGIN_ALLOW SWIG_Python_Thread_Allow _swig_thread_allow +# define SWIG_PYTHON_THREAD_END_ALLOW _swig_thread_allow.end() +# else /* C code */ +# define SWIG_PYTHON_THREAD_BEGIN_BLOCK PyGILState_STATE _swig_thread_block = PyGILState_Ensure() +# define SWIG_PYTHON_THREAD_END_BLOCK PyGILState_Release(_swig_thread_block) +# define SWIG_PYTHON_THREAD_BEGIN_ALLOW PyThreadState *_swig_thread_allow = PyEval_SaveThread() +# define SWIG_PYTHON_THREAD_END_ALLOW PyEval_RestoreThread(_swig_thread_allow) +# endif +# else /* Old thread way, not implemented, user must provide it */ +# if !defined(SWIG_PYTHON_INITIALIZE_THREADS) +# define SWIG_PYTHON_INITIALIZE_THREADS +# endif +# if !defined(SWIG_PYTHON_THREAD_BEGIN_BLOCK) +# define SWIG_PYTHON_THREAD_BEGIN_BLOCK +# endif +# if !defined(SWIG_PYTHON_THREAD_END_BLOCK) +# define SWIG_PYTHON_THREAD_END_BLOCK +# endif +# if !defined(SWIG_PYTHON_THREAD_BEGIN_ALLOW) +# define SWIG_PYTHON_THREAD_BEGIN_ALLOW +# endif +# if !defined(SWIG_PYTHON_THREAD_END_ALLOW) +# define SWIG_PYTHON_THREAD_END_ALLOW +# endif +# endif +#else /* No thread support */ +# define SWIG_PYTHON_INITIALIZE_THREADS +# define SWIG_PYTHON_THREAD_BEGIN_BLOCK +# define SWIG_PYTHON_THREAD_END_BLOCK +# define SWIG_PYTHON_THREAD_BEGIN_ALLOW +# define SWIG_PYTHON_THREAD_END_ALLOW +#endif + +/* ----------------------------------------------------------------------------- + * Python API portion that goes into the runtime + * ----------------------------------------------------------------------------- */ + +#ifdef __cplusplus +extern "C" { +#endif + +/* ----------------------------------------------------------------------------- + * Constant declarations + * ----------------------------------------------------------------------------- */ + +/* Constant Types */ +#define SWIG_PY_POINTER 4 +#define SWIG_PY_BINARY 5 + +/* Constant information structure */ +typedef struct swig_const_info { + int type; + char *name; + long lvalue; + double dvalue; + void *pvalue; + swig_type_info **ptype; +} swig_const_info; + + +/* ----------------------------------------------------------------------------- + * Wrapper of PyInstanceMethod_New() used in Python 3 + * It is exported to the generated module, used for -fastproxy + * ----------------------------------------------------------------------------- */ +#if PY_VERSION_HEX >= 0x03000000 +SWIGRUNTIME PyObject* SWIG_PyInstanceMethod_New(PyObject *SWIGUNUSEDPARM(self), PyObject *func) +{ + return PyInstanceMethod_New(func); +} +#else +SWIGRUNTIME PyObject* SWIG_PyInstanceMethod_New(PyObject *SWIGUNUSEDPARM(self), PyObject *SWIGUNUSEDPARM(func)) +{ + return NULL; +} +#endif + +#ifdef __cplusplus +} +#endif + + +/* ----------------------------------------------------------------------------- + * pyrun.swg + * + * This file contains the runtime support for Python modules + * and includes code for managing global variables and pointer + * type checking. + * + * ----------------------------------------------------------------------------- */ + +/* Common SWIG API */ + +/* for raw pointers */ +#define SWIG_Python_ConvertPtr(obj, pptr, type, flags) SWIG_Python_ConvertPtrAndOwn(obj, pptr, type, flags, 0) +#define SWIG_ConvertPtr(obj, pptr, type, flags) SWIG_Python_ConvertPtr(obj, pptr, type, flags) +#define SWIG_ConvertPtrAndOwn(obj,pptr,type,flags,own) SWIG_Python_ConvertPtrAndOwn(obj, pptr, type, flags, own) + +#ifdef SWIGPYTHON_BUILTIN +#define SWIG_NewPointerObj(ptr, type, flags) SWIG_Python_NewPointerObj(self, ptr, type, flags) +#else +#define SWIG_NewPointerObj(ptr, type, flags) SWIG_Python_NewPointerObj(NULL, ptr, type, flags) +#endif + +#define SWIG_InternalNewPointerObj(ptr, type, flags) SWIG_Python_NewPointerObj(NULL, ptr, type, flags) + +#define SWIG_CheckImplicit(ty) SWIG_Python_CheckImplicit(ty) +#define SWIG_AcquirePtr(ptr, src) SWIG_Python_AcquirePtr(ptr, src) +#define swig_owntype int + +/* for raw packed data */ +#define SWIG_ConvertPacked(obj, ptr, sz, ty) SWIG_Python_ConvertPacked(obj, ptr, sz, ty) +#define SWIG_NewPackedObj(ptr, sz, type) SWIG_Python_NewPackedObj(ptr, sz, type) + +/* for class or struct pointers */ +#define SWIG_ConvertInstance(obj, pptr, type, flags) SWIG_ConvertPtr(obj, pptr, type, flags) +#define SWIG_NewInstanceObj(ptr, type, flags) SWIG_NewPointerObj(ptr, type, flags) + +/* for C or C++ function pointers */ +#define SWIG_ConvertFunctionPtr(obj, pptr, type) SWIG_Python_ConvertFunctionPtr(obj, pptr, type) +#define SWIG_NewFunctionPtrObj(ptr, type) SWIG_Python_NewPointerObj(NULL, ptr, type, 0) + +/* for C++ member pointers, ie, member methods */ +#define SWIG_ConvertMember(obj, ptr, sz, ty) SWIG_Python_ConvertPacked(obj, ptr, sz, ty) +#define SWIG_NewMemberObj(ptr, sz, type) SWIG_Python_NewPackedObj(ptr, sz, type) + + +/* Runtime API */ + +#define SWIG_GetModule(clientdata) SWIG_Python_GetModule(clientdata) +#define SWIG_SetModule(clientdata, pointer) SWIG_Python_SetModule(pointer) +#define SWIG_NewClientData(obj) SwigPyClientData_New(obj) + +#define SWIG_SetErrorObj SWIG_Python_SetErrorObj +#define SWIG_SetErrorMsg SWIG_Python_SetErrorMsg +#define SWIG_ErrorType(code) SWIG_Python_ErrorType(code) +#define SWIG_Error(code, msg) SWIG_Python_SetErrorMsg(SWIG_ErrorType(code), msg) +#define SWIG_fail goto fail + + +/* Runtime API implementation */ + +/* Error manipulation */ + +SWIGINTERN void +SWIG_Python_SetErrorObj(PyObject *errtype, PyObject *obj) { + SWIG_PYTHON_THREAD_BEGIN_BLOCK; + PyErr_SetObject(errtype, obj); + Py_DECREF(obj); + SWIG_PYTHON_THREAD_END_BLOCK; +} + +SWIGINTERN void +SWIG_Python_SetErrorMsg(PyObject *errtype, const char *msg) { + SWIG_PYTHON_THREAD_BEGIN_BLOCK; + PyErr_SetString(errtype, msg); + SWIG_PYTHON_THREAD_END_BLOCK; +} + +#define SWIG_Python_Raise(obj, type, desc) SWIG_Python_SetErrorObj(SWIG_Python_ExceptionType(desc), obj) + +/* Set a constant value */ + +#if defined(SWIGPYTHON_BUILTIN) + +SWIGINTERN void +SwigPyBuiltin_AddPublicSymbol(PyObject *seq, const char *key) { + PyObject *s = PyString_InternFromString(key); + PyList_Append(seq, s); + Py_DECREF(s); +} + +SWIGINTERN void +SWIG_Python_SetConstant(PyObject *d, PyObject *public_interface, const char *name, PyObject *obj) { +#if PY_VERSION_HEX < 0x02030000 + PyDict_SetItemString(d, (char *)name, obj); +#else + PyDict_SetItemString(d, name, obj); +#endif + Py_DECREF(obj); + if (public_interface) + SwigPyBuiltin_AddPublicSymbol(public_interface, name); +} + +#else + +SWIGINTERN void +SWIG_Python_SetConstant(PyObject *d, const char *name, PyObject *obj) { +#if PY_VERSION_HEX < 0x02030000 + PyDict_SetItemString(d, (char *)name, obj); +#else + PyDict_SetItemString(d, name, obj); +#endif + Py_DECREF(obj); +} + +#endif + +/* Append a value to the result obj */ + +SWIGINTERN PyObject* +SWIG_Python_AppendOutput(PyObject* result, PyObject* obj) { +#if !defined(SWIG_PYTHON_OUTPUT_TUPLE) + if (!result) { + result = obj; + } else if (result == Py_None) { + Py_DECREF(result); + result = obj; + } else { + if (!PyList_Check(result)) { + PyObject *o2 = result; + result = PyList_New(1); + PyList_SetItem(result, 0, o2); + } + PyList_Append(result,obj); + Py_DECREF(obj); + } + return result; +#else + PyObject* o2; + PyObject* o3; + if (!result) { + result = obj; + } else if (result == Py_None) { + Py_DECREF(result); + result = obj; + } else { + if (!PyTuple_Check(result)) { + o2 = result; + result = PyTuple_New(1); + PyTuple_SET_ITEM(result, 0, o2); + } + o3 = PyTuple_New(1); + PyTuple_SET_ITEM(o3, 0, obj); + o2 = result; + result = PySequence_Concat(o2, o3); + Py_DECREF(o2); + Py_DECREF(o3); + } + return result; +#endif +} + +/* Unpack the argument tuple */ + +SWIGINTERN Py_ssize_t +SWIG_Python_UnpackTuple(PyObject *args, const char *name, Py_ssize_t min, Py_ssize_t max, PyObject **objs) +{ + if (!args) { + if (!min && !max) { + return 1; + } else { + PyErr_Format(PyExc_TypeError, "%s expected %s%d arguments, got none", + name, (min == max ? "" : "at least "), (int)min); + return 0; + } + } + if (!PyTuple_Check(args)) { + if (min <= 1 && max >= 1) { + Py_ssize_t i; + objs[0] = args; + for (i = 1; i < max; ++i) { + objs[i] = 0; + } + return 2; + } + PyErr_SetString(PyExc_SystemError, "UnpackTuple() argument list is not a tuple"); + return 0; + } else { + Py_ssize_t l = PyTuple_GET_SIZE(args); + if (l < min) { + PyErr_Format(PyExc_TypeError, "%s expected %s%d arguments, got %d", + name, (min == max ? "" : "at least "), (int)min, (int)l); + return 0; + } else if (l > max) { + PyErr_Format(PyExc_TypeError, "%s expected %s%d arguments, got %d", + name, (min == max ? "" : "at most "), (int)max, (int)l); + return 0; + } else { + Py_ssize_t i; + for (i = 0; i < l; ++i) { + objs[i] = PyTuple_GET_ITEM(args, i); + } + for (; l < max; ++l) { + objs[l] = 0; + } + return i + 1; + } + } +} + +/* A functor is a function object with one single object argument */ +#if PY_VERSION_HEX >= 0x02020000 +#define SWIG_Python_CallFunctor(functor, obj) PyObject_CallFunctionObjArgs(functor, obj, NULL); +#else +#define SWIG_Python_CallFunctor(functor, obj) PyObject_CallFunction(functor, "O", obj); +#endif + +/* + Helper for static pointer initialization for both C and C++ code, for example + static PyObject *SWIG_STATIC_POINTER(MyVar) = NewSomething(...); +*/ +#ifdef __cplusplus +#define SWIG_STATIC_POINTER(var) var +#else +#define SWIG_STATIC_POINTER(var) var = 0; if (!var) var +#endif + +/* ----------------------------------------------------------------------------- + * Pointer declarations + * ----------------------------------------------------------------------------- */ + +/* Flags for new pointer objects */ +#define SWIG_POINTER_NOSHADOW (SWIG_POINTER_OWN << 1) +#define SWIG_POINTER_NEW (SWIG_POINTER_NOSHADOW | SWIG_POINTER_OWN) + +#define SWIG_POINTER_IMPLICIT_CONV (SWIG_POINTER_DISOWN << 1) + +#define SWIG_BUILTIN_TP_INIT (SWIG_POINTER_OWN << 2) +#define SWIG_BUILTIN_INIT (SWIG_BUILTIN_TP_INIT | SWIG_POINTER_OWN) + +#ifdef __cplusplus +extern "C" { +#endif + +/* How to access Py_None */ +#if defined(_WIN32) || defined(__WIN32__) || defined(__CYGWIN__) +# ifndef SWIG_PYTHON_NO_BUILD_NONE +# ifndef SWIG_PYTHON_BUILD_NONE +# define SWIG_PYTHON_BUILD_NONE +# endif +# endif +#endif + +#ifdef SWIG_PYTHON_BUILD_NONE +# ifdef Py_None +# undef Py_None +# define Py_None SWIG_Py_None() +# endif +SWIGRUNTIMEINLINE PyObject * +_SWIG_Py_None(void) +{ + PyObject *none = Py_BuildValue((char*)""); + Py_DECREF(none); + return none; +} +SWIGRUNTIME PyObject * +SWIG_Py_None(void) +{ + static PyObject *SWIG_STATIC_POINTER(none) = _SWIG_Py_None(); + return none; +} +#endif + +/* The python void return value */ + +SWIGRUNTIMEINLINE PyObject * +SWIG_Py_Void(void) +{ + PyObject *none = Py_None; + Py_INCREF(none); + return none; +} + +/* SwigPyClientData */ + +typedef struct { + PyObject *klass; + PyObject *newraw; + PyObject *newargs; + PyObject *destroy; + int delargs; + int implicitconv; + PyTypeObject *pytype; +} SwigPyClientData; + +SWIGRUNTIMEINLINE int +SWIG_Python_CheckImplicit(swig_type_info *ty) +{ + SwigPyClientData *data = (SwigPyClientData *)ty->clientdata; + return data ? data->implicitconv : 0; +} + +SWIGRUNTIMEINLINE PyObject * +SWIG_Python_ExceptionType(swig_type_info *desc) { + SwigPyClientData *data = desc ? (SwigPyClientData *) desc->clientdata : 0; + PyObject *klass = data ? data->klass : 0; + return (klass ? klass : PyExc_RuntimeError); +} + + +SWIGRUNTIME SwigPyClientData * +SwigPyClientData_New(PyObject* obj) +{ + if (!obj) { + return 0; + } else { + SwigPyClientData *data = (SwigPyClientData *)malloc(sizeof(SwigPyClientData)); + /* the klass element */ + data->klass = obj; + Py_INCREF(data->klass); + /* the newraw method and newargs arguments used to create a new raw instance */ + if (PyClass_Check(obj)) { + data->newraw = 0; + data->newargs = obj; + Py_INCREF(obj); + } else { +#if (PY_VERSION_HEX < 0x02020000) + data->newraw = 0; +#else + data->newraw = PyObject_GetAttrString(data->klass, (char *)"__new__"); +#endif + if (data->newraw) { + Py_INCREF(data->newraw); + data->newargs = PyTuple_New(1); + PyTuple_SetItem(data->newargs, 0, obj); + } else { + data->newargs = obj; + } + Py_INCREF(data->newargs); + } + /* the destroy method, aka as the C++ delete method */ + data->destroy = PyObject_GetAttrString(data->klass, (char *)"__swig_destroy__"); + if (PyErr_Occurred()) { + PyErr_Clear(); + data->destroy = 0; + } + if (data->destroy) { + int flags; + Py_INCREF(data->destroy); + flags = PyCFunction_GET_FLAGS(data->destroy); +#ifdef METH_O + data->delargs = !(flags & (METH_O)); +#else + data->delargs = 0; +#endif + } else { + data->delargs = 0; + } + data->implicitconv = 0; + data->pytype = 0; + return data; + } +} + +SWIGRUNTIME void +SwigPyClientData_Del(SwigPyClientData *data) { + Py_XDECREF(data->newraw); + Py_XDECREF(data->newargs); + Py_XDECREF(data->destroy); +} + +/* =============== SwigPyObject =====================*/ + +typedef struct { + PyObject_HEAD + void *ptr; + swig_type_info *ty; + int own; + PyObject *next; +#ifdef SWIGPYTHON_BUILTIN + PyObject *dict; +#endif +} SwigPyObject; + + +#ifdef SWIGPYTHON_BUILTIN + +SWIGRUNTIME PyObject * +SwigPyObject_get___dict__(PyObject *v, PyObject *SWIGUNUSEDPARM(args)) +{ + SwigPyObject *sobj = (SwigPyObject *)v; + + if (!sobj->dict) + sobj->dict = PyDict_New(); + + Py_INCREF(sobj->dict); + return sobj->dict; +} + +#endif + +SWIGRUNTIME PyObject * +SwigPyObject_long(SwigPyObject *v) +{ + return PyLong_FromVoidPtr(v->ptr); +} + +SWIGRUNTIME PyObject * +SwigPyObject_format(const char* fmt, SwigPyObject *v) +{ + PyObject *res = NULL; + PyObject *args = PyTuple_New(1); + if (args) { + if (PyTuple_SetItem(args, 0, SwigPyObject_long(v)) == 0) { + PyObject *ofmt = SWIG_Python_str_FromChar(fmt); + if (ofmt) { +#if PY_VERSION_HEX >= 0x03000000 + res = PyUnicode_Format(ofmt,args); +#else + res = PyString_Format(ofmt,args); +#endif + Py_DECREF(ofmt); + } + Py_DECREF(args); + } + } + return res; +} + +SWIGRUNTIME PyObject * +SwigPyObject_oct(SwigPyObject *v) +{ + return SwigPyObject_format("%o",v); +} + +SWIGRUNTIME PyObject * +SwigPyObject_hex(SwigPyObject *v) +{ + return SwigPyObject_format("%x",v); +} + +SWIGRUNTIME PyObject * +#ifdef METH_NOARGS +SwigPyObject_repr(SwigPyObject *v) +#else +SwigPyObject_repr(SwigPyObject *v, PyObject *args) +#endif +{ + const char *name = SWIG_TypePrettyName(v->ty); + PyObject *repr = SWIG_Python_str_FromFormat("", (name ? name : "unknown"), (void *)v); + if (v->next) { +# ifdef METH_NOARGS + PyObject *nrep = SwigPyObject_repr((SwigPyObject *)v->next); +# else + PyObject *nrep = SwigPyObject_repr((SwigPyObject *)v->next, args); +# endif +# if PY_VERSION_HEX >= 0x03000000 + PyObject *joined = PyUnicode_Concat(repr, nrep); + Py_DecRef(repr); + Py_DecRef(nrep); + repr = joined; +# else + PyString_ConcatAndDel(&repr,nrep); +# endif + } + return repr; +} + +SWIGRUNTIME int +SwigPyObject_compare(SwigPyObject *v, SwigPyObject *w) +{ + void *i = v->ptr; + void *j = w->ptr; + return (i < j) ? -1 : ((i > j) ? 1 : 0); +} + +/* Added for Python 3.x, would it also be useful for Python 2.x? */ +SWIGRUNTIME PyObject* +SwigPyObject_richcompare(SwigPyObject *v, SwigPyObject *w, int op) +{ + PyObject* res; + if( op != Py_EQ && op != Py_NE ) { + Py_INCREF(Py_NotImplemented); + return Py_NotImplemented; + } + res = PyBool_FromLong( (SwigPyObject_compare(v, w)==0) == (op == Py_EQ) ? 1 : 0); + return res; +} + + +SWIGRUNTIME PyTypeObject* SwigPyObject_TypeOnce(void); + +#ifdef SWIGPYTHON_BUILTIN +static swig_type_info *SwigPyObject_stype = 0; +SWIGRUNTIME PyTypeObject* +SwigPyObject_type(void) { + SwigPyClientData *cd; + assert(SwigPyObject_stype); + cd = (SwigPyClientData*) SwigPyObject_stype->clientdata; + assert(cd); + assert(cd->pytype); + return cd->pytype; +} +#else +SWIGRUNTIME PyTypeObject* +SwigPyObject_type(void) { + static PyTypeObject *SWIG_STATIC_POINTER(type) = SwigPyObject_TypeOnce(); + return type; +} +#endif + +SWIGRUNTIMEINLINE int +SwigPyObject_Check(PyObject *op) { +#ifdef SWIGPYTHON_BUILTIN + PyTypeObject *target_tp = SwigPyObject_type(); + if (PyType_IsSubtype(op->ob_type, target_tp)) + return 1; + return (strcmp(op->ob_type->tp_name, "SwigPyObject") == 0); +#else + return (Py_TYPE(op) == SwigPyObject_type()) + || (strcmp(Py_TYPE(op)->tp_name,"SwigPyObject") == 0); +#endif +} + +SWIGRUNTIME PyObject * +SwigPyObject_New(void *ptr, swig_type_info *ty, int own); + +SWIGRUNTIME void +SwigPyObject_dealloc(PyObject *v) +{ + SwigPyObject *sobj = (SwigPyObject *) v; + PyObject *next = sobj->next; + if (sobj->own == SWIG_POINTER_OWN) { + swig_type_info *ty = sobj->ty; + SwigPyClientData *data = ty ? (SwigPyClientData *) ty->clientdata : 0; + PyObject *destroy = data ? data->destroy : 0; + if (destroy) { + /* destroy is always a VARARGS method */ + PyObject *res; + + /* PyObject_CallFunction() has the potential to silently drop + the active active exception. In cases of unnamed temporary + variable or where we just finished iterating over a generator + StopIteration will be active right now, and this needs to + remain true upon return from SwigPyObject_dealloc. So save + and restore. */ + + PyObject *val = NULL, *type = NULL, *tb = NULL; + PyErr_Fetch(&val, &type, &tb); + + if (data->delargs) { + /* we need to create a temporary object to carry the destroy operation */ + PyObject *tmp = SwigPyObject_New(sobj->ptr, ty, 0); + res = SWIG_Python_CallFunctor(destroy, tmp); + Py_DECREF(tmp); + } else { + PyCFunction meth = PyCFunction_GET_FUNCTION(destroy); + PyObject *mself = PyCFunction_GET_SELF(destroy); + res = ((*meth)(mself, v)); + } + if (!res) + PyErr_WriteUnraisable(destroy); + + PyErr_Restore(val, type, tb); + + Py_XDECREF(res); + } +#if !defined(SWIG_PYTHON_SILENT_MEMLEAK) + else { + const char *name = SWIG_TypePrettyName(ty); + printf("swig/python detected a memory leak of type '%s', no destructor found.\n", (name ? name : "unknown")); + } +#endif + } + Py_XDECREF(next); + PyObject_DEL(v); +} + +SWIGRUNTIME PyObject* +SwigPyObject_append(PyObject* v, PyObject* next) +{ + SwigPyObject *sobj = (SwigPyObject *) v; +#ifndef METH_O + PyObject *tmp = 0; + if (!PyArg_ParseTuple(next,(char *)"O:append", &tmp)) return NULL; + next = tmp; +#endif + if (!SwigPyObject_Check(next)) { + PyErr_SetString(PyExc_TypeError, "Attempt to append a non SwigPyObject"); + return NULL; + } + sobj->next = next; + Py_INCREF(next); + return SWIG_Py_Void(); +} + +SWIGRUNTIME PyObject* +#ifdef METH_NOARGS +SwigPyObject_next(PyObject* v) +#else +SwigPyObject_next(PyObject* v, PyObject *SWIGUNUSEDPARM(args)) +#endif +{ + SwigPyObject *sobj = (SwigPyObject *) v; + if (sobj->next) { + Py_INCREF(sobj->next); + return sobj->next; + } else { + return SWIG_Py_Void(); + } +} + +SWIGINTERN PyObject* +#ifdef METH_NOARGS +SwigPyObject_disown(PyObject *v) +#else +SwigPyObject_disown(PyObject* v, PyObject *SWIGUNUSEDPARM(args)) +#endif +{ + SwigPyObject *sobj = (SwigPyObject *)v; + sobj->own = 0; + return SWIG_Py_Void(); +} + +SWIGINTERN PyObject* +#ifdef METH_NOARGS +SwigPyObject_acquire(PyObject *v) +#else +SwigPyObject_acquire(PyObject* v, PyObject *SWIGUNUSEDPARM(args)) +#endif +{ + SwigPyObject *sobj = (SwigPyObject *)v; + sobj->own = SWIG_POINTER_OWN; + return SWIG_Py_Void(); +} + +SWIGINTERN PyObject* +SwigPyObject_own(PyObject *v, PyObject *args) +{ + PyObject *val = 0; +#if (PY_VERSION_HEX < 0x02020000) + if (!PyArg_ParseTuple(args,(char *)"|O:own",&val)) +#elif (PY_VERSION_HEX < 0x02050000) + if (!PyArg_UnpackTuple(args, (char *)"own", 0, 1, &val)) +#else + if (!PyArg_UnpackTuple(args, "own", 0, 1, &val)) +#endif + { + return NULL; + } + else + { + SwigPyObject *sobj = (SwigPyObject *)v; + PyObject *obj = PyBool_FromLong(sobj->own); + if (val) { +#ifdef METH_NOARGS + if (PyObject_IsTrue(val)) { + SwigPyObject_acquire(v); + } else { + SwigPyObject_disown(v); + } +#else + if (PyObject_IsTrue(val)) { + SwigPyObject_acquire(v,args); + } else { + SwigPyObject_disown(v,args); + } +#endif + } + return obj; + } +} + +#ifdef METH_O +static PyMethodDef +swigobject_methods[] = { + {(char *)"disown", (PyCFunction)SwigPyObject_disown, METH_NOARGS, (char *)"releases ownership of the pointer"}, + {(char *)"acquire", (PyCFunction)SwigPyObject_acquire, METH_NOARGS, (char *)"acquires ownership of the pointer"}, + {(char *)"own", (PyCFunction)SwigPyObject_own, METH_VARARGS, (char *)"returns/sets ownership of the pointer"}, + {(char *)"append", (PyCFunction)SwigPyObject_append, METH_O, (char *)"appends another 'this' object"}, + {(char *)"next", (PyCFunction)SwigPyObject_next, METH_NOARGS, (char *)"returns the next 'this' object"}, + {(char *)"__repr__",(PyCFunction)SwigPyObject_repr, METH_NOARGS, (char *)"returns object representation"}, + {0, 0, 0, 0} +}; +#else +static PyMethodDef +swigobject_methods[] = { + {(char *)"disown", (PyCFunction)SwigPyObject_disown, METH_VARARGS, (char *)"releases ownership of the pointer"}, + {(char *)"acquire", (PyCFunction)SwigPyObject_acquire, METH_VARARGS, (char *)"acquires ownership of the pointer"}, + {(char *)"own", (PyCFunction)SwigPyObject_own, METH_VARARGS, (char *)"returns/sets ownership of the pointer"}, + {(char *)"append", (PyCFunction)SwigPyObject_append, METH_VARARGS, (char *)"appends another 'this' object"}, + {(char *)"next", (PyCFunction)SwigPyObject_next, METH_VARARGS, (char *)"returns the next 'this' object"}, + {(char *)"__repr__",(PyCFunction)SwigPyObject_repr, METH_VARARGS, (char *)"returns object representation"}, + {0, 0, 0, 0} +}; +#endif + +#if PY_VERSION_HEX < 0x02020000 +SWIGINTERN PyObject * +SwigPyObject_getattr(SwigPyObject *sobj,char *name) +{ + return Py_FindMethod(swigobject_methods, (PyObject *)sobj, name); +} +#endif + +SWIGRUNTIME PyTypeObject* +SwigPyObject_TypeOnce(void) { + static char swigobject_doc[] = "Swig object carries a C/C++ instance pointer"; + + static PyNumberMethods SwigPyObject_as_number = { + (binaryfunc)0, /*nb_add*/ + (binaryfunc)0, /*nb_subtract*/ + (binaryfunc)0, /*nb_multiply*/ + /* nb_divide removed in Python 3 */ +#if PY_VERSION_HEX < 0x03000000 + (binaryfunc)0, /*nb_divide*/ +#endif + (binaryfunc)0, /*nb_remainder*/ + (binaryfunc)0, /*nb_divmod*/ + (ternaryfunc)0,/*nb_power*/ + (unaryfunc)0, /*nb_negative*/ + (unaryfunc)0, /*nb_positive*/ + (unaryfunc)0, /*nb_absolute*/ + (inquiry)0, /*nb_nonzero*/ + 0, /*nb_invert*/ + 0, /*nb_lshift*/ + 0, /*nb_rshift*/ + 0, /*nb_and*/ + 0, /*nb_xor*/ + 0, /*nb_or*/ +#if PY_VERSION_HEX < 0x03000000 + 0, /*nb_coerce*/ +#endif + (unaryfunc)SwigPyObject_long, /*nb_int*/ +#if PY_VERSION_HEX < 0x03000000 + (unaryfunc)SwigPyObject_long, /*nb_long*/ +#else + 0, /*nb_reserved*/ +#endif + (unaryfunc)0, /*nb_float*/ +#if PY_VERSION_HEX < 0x03000000 + (unaryfunc)SwigPyObject_oct, /*nb_oct*/ + (unaryfunc)SwigPyObject_hex, /*nb_hex*/ +#endif +#if PY_VERSION_HEX >= 0x03050000 /* 3.5 */ + 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 /* nb_inplace_add -> nb_inplace_matrix_multiply */ +#elif PY_VERSION_HEX >= 0x03000000 /* 3.0 */ + 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 /* nb_inplace_add -> nb_index, nb_inplace_divide removed */ +#elif PY_VERSION_HEX >= 0x02050000 /* 2.5.0 */ + 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 /* nb_inplace_add -> nb_index */ +#elif PY_VERSION_HEX >= 0x02020000 /* 2.2.0 */ + 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 /* nb_inplace_add -> nb_inplace_true_divide */ +#elif PY_VERSION_HEX >= 0x02000000 /* 2.0.0 */ + 0,0,0,0,0,0,0,0,0,0,0 /* nb_inplace_add -> nb_inplace_or */ +#endif + }; + + static PyTypeObject swigpyobject_type; + static int type_init = 0; + if (!type_init) { + const PyTypeObject tmp = { +#if PY_VERSION_HEX >= 0x03000000 + PyVarObject_HEAD_INIT(NULL, 0) +#else + PyObject_HEAD_INIT(NULL) + 0, /* ob_size */ +#endif + (char *)"SwigPyObject", /* tp_name */ + sizeof(SwigPyObject), /* tp_basicsize */ + 0, /* tp_itemsize */ + (destructor)SwigPyObject_dealloc, /* tp_dealloc */ + 0, /* tp_print */ +#if PY_VERSION_HEX < 0x02020000 + (getattrfunc)SwigPyObject_getattr, /* tp_getattr */ +#else + (getattrfunc)0, /* tp_getattr */ +#endif + (setattrfunc)0, /* tp_setattr */ +#if PY_VERSION_HEX >= 0x03000000 + 0, /* tp_reserved in 3.0.1, tp_compare in 3.0.0 but not used */ +#else + (cmpfunc)SwigPyObject_compare, /* tp_compare */ +#endif + (reprfunc)SwigPyObject_repr, /* tp_repr */ + &SwigPyObject_as_number, /* tp_as_number */ + 0, /* tp_as_sequence */ + 0, /* tp_as_mapping */ + (hashfunc)0, /* tp_hash */ + (ternaryfunc)0, /* tp_call */ + 0, /* tp_str */ + PyObject_GenericGetAttr, /* tp_getattro */ + 0, /* tp_setattro */ + 0, /* tp_as_buffer */ + Py_TPFLAGS_DEFAULT, /* tp_flags */ + swigobject_doc, /* tp_doc */ + 0, /* tp_traverse */ + 0, /* tp_clear */ + (richcmpfunc)SwigPyObject_richcompare,/* tp_richcompare */ + 0, /* tp_weaklistoffset */ +#if PY_VERSION_HEX >= 0x02020000 + 0, /* tp_iter */ + 0, /* tp_iternext */ + swigobject_methods, /* tp_methods */ + 0, /* tp_members */ + 0, /* tp_getset */ + 0, /* tp_base */ + 0, /* tp_dict */ + 0, /* tp_descr_get */ + 0, /* tp_descr_set */ + 0, /* tp_dictoffset */ + 0, /* tp_init */ + 0, /* tp_alloc */ + 0, /* tp_new */ + 0, /* tp_free */ + 0, /* tp_is_gc */ + 0, /* tp_bases */ + 0, /* tp_mro */ + 0, /* tp_cache */ + 0, /* tp_subclasses */ + 0, /* tp_weaklist */ +#endif +#if PY_VERSION_HEX >= 0x02030000 + 0, /* tp_del */ +#endif +#if PY_VERSION_HEX >= 0x02060000 + 0, /* tp_version_tag */ +#endif +#if PY_VERSION_HEX >= 0x03040000 + 0, /* tp_finalize */ +#endif +#ifdef COUNT_ALLOCS + 0, /* tp_allocs */ + 0, /* tp_frees */ + 0, /* tp_maxalloc */ +#if PY_VERSION_HEX >= 0x02050000 + 0, /* tp_prev */ +#endif + 0 /* tp_next */ +#endif + }; + swigpyobject_type = tmp; + type_init = 1; +#if PY_VERSION_HEX < 0x02020000 + swigpyobject_type.ob_type = &PyType_Type; +#else + if (PyType_Ready(&swigpyobject_type) < 0) + return NULL; +#endif + } + return &swigpyobject_type; +} + +SWIGRUNTIME PyObject * +SwigPyObject_New(void *ptr, swig_type_info *ty, int own) +{ + SwigPyObject *sobj = PyObject_NEW(SwigPyObject, SwigPyObject_type()); + if (sobj) { + sobj->ptr = ptr; + sobj->ty = ty; + sobj->own = own; + sobj->next = 0; + } + return (PyObject *)sobj; +} + +/* ----------------------------------------------------------------------------- + * Implements a simple Swig Packed type, and use it instead of string + * ----------------------------------------------------------------------------- */ + +typedef struct { + PyObject_HEAD + void *pack; + swig_type_info *ty; + size_t size; +} SwigPyPacked; + +SWIGRUNTIME int +SwigPyPacked_print(SwigPyPacked *v, FILE *fp, int SWIGUNUSEDPARM(flags)) +{ + char result[SWIG_BUFFER_SIZE]; + fputs("pack, v->size, 0, sizeof(result))) { + fputs("at ", fp); + fputs(result, fp); + } + fputs(v->ty->name,fp); + fputs(">", fp); + return 0; +} + +SWIGRUNTIME PyObject * +SwigPyPacked_repr(SwigPyPacked *v) +{ + char result[SWIG_BUFFER_SIZE]; + if (SWIG_PackDataName(result, v->pack, v->size, 0, sizeof(result))) { + return SWIG_Python_str_FromFormat("", result, v->ty->name); + } else { + return SWIG_Python_str_FromFormat("", v->ty->name); + } +} + +SWIGRUNTIME PyObject * +SwigPyPacked_str(SwigPyPacked *v) +{ + char result[SWIG_BUFFER_SIZE]; + if (SWIG_PackDataName(result, v->pack, v->size, 0, sizeof(result))){ + return SWIG_Python_str_FromFormat("%s%s", result, v->ty->name); + } else { + return SWIG_Python_str_FromChar(v->ty->name); + } +} + +SWIGRUNTIME int +SwigPyPacked_compare(SwigPyPacked *v, SwigPyPacked *w) +{ + size_t i = v->size; + size_t j = w->size; + int s = (i < j) ? -1 : ((i > j) ? 1 : 0); + return s ? s : strncmp((char *)v->pack, (char *)w->pack, 2*v->size); +} + +SWIGRUNTIME PyTypeObject* SwigPyPacked_TypeOnce(void); + +SWIGRUNTIME PyTypeObject* +SwigPyPacked_type(void) { + static PyTypeObject *SWIG_STATIC_POINTER(type) = SwigPyPacked_TypeOnce(); + return type; +} + +SWIGRUNTIMEINLINE int +SwigPyPacked_Check(PyObject *op) { + return ((op)->ob_type == SwigPyPacked_TypeOnce()) + || (strcmp((op)->ob_type->tp_name,"SwigPyPacked") == 0); +} + +SWIGRUNTIME void +SwigPyPacked_dealloc(PyObject *v) +{ + if (SwigPyPacked_Check(v)) { + SwigPyPacked *sobj = (SwigPyPacked *) v; + free(sobj->pack); + } + PyObject_DEL(v); +} + +SWIGRUNTIME PyTypeObject* +SwigPyPacked_TypeOnce(void) { + static char swigpacked_doc[] = "Swig object carries a C/C++ instance pointer"; + static PyTypeObject swigpypacked_type; + static int type_init = 0; + if (!type_init) { + const PyTypeObject tmp = { +#if PY_VERSION_HEX>=0x03000000 + PyVarObject_HEAD_INIT(NULL, 0) +#else + PyObject_HEAD_INIT(NULL) + 0, /* ob_size */ +#endif + (char *)"SwigPyPacked", /* tp_name */ + sizeof(SwigPyPacked), /* tp_basicsize */ + 0, /* tp_itemsize */ + (destructor)SwigPyPacked_dealloc, /* tp_dealloc */ + (printfunc)SwigPyPacked_print, /* tp_print */ + (getattrfunc)0, /* tp_getattr */ + (setattrfunc)0, /* tp_setattr */ +#if PY_VERSION_HEX>=0x03000000 + 0, /* tp_reserved in 3.0.1 */ +#else + (cmpfunc)SwigPyPacked_compare, /* tp_compare */ +#endif + (reprfunc)SwigPyPacked_repr, /* tp_repr */ + 0, /* tp_as_number */ + 0, /* tp_as_sequence */ + 0, /* tp_as_mapping */ + (hashfunc)0, /* tp_hash */ + (ternaryfunc)0, /* tp_call */ + (reprfunc)SwigPyPacked_str, /* tp_str */ + PyObject_GenericGetAttr, /* tp_getattro */ + 0, /* tp_setattro */ + 0, /* tp_as_buffer */ + Py_TPFLAGS_DEFAULT, /* tp_flags */ + swigpacked_doc, /* tp_doc */ + 0, /* tp_traverse */ + 0, /* tp_clear */ + 0, /* tp_richcompare */ + 0, /* tp_weaklistoffset */ +#if PY_VERSION_HEX >= 0x02020000 + 0, /* tp_iter */ + 0, /* tp_iternext */ + 0, /* tp_methods */ + 0, /* tp_members */ + 0, /* tp_getset */ + 0, /* tp_base */ + 0, /* tp_dict */ + 0, /* tp_descr_get */ + 0, /* tp_descr_set */ + 0, /* tp_dictoffset */ + 0, /* tp_init */ + 0, /* tp_alloc */ + 0, /* tp_new */ + 0, /* tp_free */ + 0, /* tp_is_gc */ + 0, /* tp_bases */ + 0, /* tp_mro */ + 0, /* tp_cache */ + 0, /* tp_subclasses */ + 0, /* tp_weaklist */ +#endif +#if PY_VERSION_HEX >= 0x02030000 + 0, /* tp_del */ +#endif +#if PY_VERSION_HEX >= 0x02060000 + 0, /* tp_version_tag */ +#endif +#if PY_VERSION_HEX >= 0x03040000 + 0, /* tp_finalize */ +#endif +#ifdef COUNT_ALLOCS + 0, /* tp_allocs */ + 0, /* tp_frees */ + 0, /* tp_maxalloc */ +#if PY_VERSION_HEX >= 0x02050000 + 0, /* tp_prev */ +#endif + 0 /* tp_next */ +#endif + }; + swigpypacked_type = tmp; + type_init = 1; +#if PY_VERSION_HEX < 0x02020000 + swigpypacked_type.ob_type = &PyType_Type; +#else + if (PyType_Ready(&swigpypacked_type) < 0) + return NULL; +#endif + } + return &swigpypacked_type; +} + +SWIGRUNTIME PyObject * +SwigPyPacked_New(void *ptr, size_t size, swig_type_info *ty) +{ + SwigPyPacked *sobj = PyObject_NEW(SwigPyPacked, SwigPyPacked_type()); + if (sobj) { + void *pack = malloc(size); + if (pack) { + memcpy(pack, ptr, size); + sobj->pack = pack; + sobj->ty = ty; + sobj->size = size; + } else { + PyObject_DEL((PyObject *) sobj); + sobj = 0; + } + } + return (PyObject *) sobj; +} + +SWIGRUNTIME swig_type_info * +SwigPyPacked_UnpackData(PyObject *obj, void *ptr, size_t size) +{ + if (SwigPyPacked_Check(obj)) { + SwigPyPacked *sobj = (SwigPyPacked *)obj; + if (sobj->size != size) return 0; + memcpy(ptr, sobj->pack, size); + return sobj->ty; + } else { + return 0; + } +} + +/* ----------------------------------------------------------------------------- + * pointers/data manipulation + * ----------------------------------------------------------------------------- */ + +SWIGRUNTIMEINLINE PyObject * +_SWIG_This(void) +{ + return SWIG_Python_str_FromChar("this"); +} + +static PyObject *swig_this = NULL; + +SWIGRUNTIME PyObject * +SWIG_This(void) +{ + if (swig_this == NULL) + swig_this = _SWIG_This(); + return swig_this; +} + +/* #define SWIG_PYTHON_SLOW_GETSET_THIS */ + +/* TODO: I don't know how to implement the fast getset in Python 3 right now */ +#if PY_VERSION_HEX>=0x03000000 +#define SWIG_PYTHON_SLOW_GETSET_THIS +#endif + +SWIGRUNTIME SwigPyObject * +SWIG_Python_GetSwigThis(PyObject *pyobj) +{ + PyObject *obj; + + if (SwigPyObject_Check(pyobj)) + return (SwigPyObject *) pyobj; + +#ifdef SWIGPYTHON_BUILTIN + (void)obj; +# ifdef PyWeakref_CheckProxy + if (PyWeakref_CheckProxy(pyobj)) { + pyobj = PyWeakref_GET_OBJECT(pyobj); + if (pyobj && SwigPyObject_Check(pyobj)) + return (SwigPyObject*) pyobj; + } +# endif + return NULL; +#else + + obj = 0; + +#if (!defined(SWIG_PYTHON_SLOW_GETSET_THIS) && (PY_VERSION_HEX >= 0x02030000)) + if (PyInstance_Check(pyobj)) { + obj = _PyInstance_Lookup(pyobj, SWIG_This()); + } else { + PyObject **dictptr = _PyObject_GetDictPtr(pyobj); + if (dictptr != NULL) { + PyObject *dict = *dictptr; + obj = dict ? PyDict_GetItem(dict, SWIG_This()) : 0; + } else { +#ifdef PyWeakref_CheckProxy + if (PyWeakref_CheckProxy(pyobj)) { + PyObject *wobj = PyWeakref_GET_OBJECT(pyobj); + return wobj ? SWIG_Python_GetSwigThis(wobj) : 0; + } +#endif + obj = PyObject_GetAttr(pyobj,SWIG_This()); + if (obj) { + Py_DECREF(obj); + } else { + if (PyErr_Occurred()) PyErr_Clear(); + return 0; + } + } + } +#else + obj = PyObject_GetAttr(pyobj,SWIG_This()); + if (obj) { + Py_DECREF(obj); + } else { + if (PyErr_Occurred()) PyErr_Clear(); + return 0; + } +#endif + if (obj && !SwigPyObject_Check(obj)) { + /* a PyObject is called 'this', try to get the 'real this' + SwigPyObject from it */ + return SWIG_Python_GetSwigThis(obj); + } + return (SwigPyObject *)obj; +#endif +} + +/* Acquire a pointer value */ + +SWIGRUNTIME int +SWIG_Python_AcquirePtr(PyObject *obj, int own) { + if (own == SWIG_POINTER_OWN) { + SwigPyObject *sobj = SWIG_Python_GetSwigThis(obj); + if (sobj) { + int oldown = sobj->own; + sobj->own = own; + return oldown; + } + } + return 0; +} + +/* Convert a pointer value */ + +SWIGRUNTIME int +SWIG_Python_ConvertPtrAndOwn(PyObject *obj, void **ptr, swig_type_info *ty, int flags, int *own) { + int res; + SwigPyObject *sobj; + int implicit_conv = (flags & SWIG_POINTER_IMPLICIT_CONV) != 0; + + if (!obj) + return SWIG_ERROR; + if (obj == Py_None && !implicit_conv) { + if (ptr) + *ptr = 0; + return SWIG_OK; + } + + res = SWIG_ERROR; + + sobj = SWIG_Python_GetSwigThis(obj); + if (own) + *own = 0; + while (sobj) { + void *vptr = sobj->ptr; + if (ty) { + swig_type_info *to = sobj->ty; + if (to == ty) { + /* no type cast needed */ + if (ptr) *ptr = vptr; + break; + } else { + swig_cast_info *tc = SWIG_TypeCheck(to->name,ty); + if (!tc) { + sobj = (SwigPyObject *)sobj->next; + } else { + if (ptr) { + int newmemory = 0; + *ptr = SWIG_TypeCast(tc,vptr,&newmemory); + if (newmemory == SWIG_CAST_NEW_MEMORY) { + assert(own); /* badly formed typemap which will lead to a memory leak - it must set and use own to delete *ptr */ + if (own) + *own = *own | SWIG_CAST_NEW_MEMORY; + } + } + break; + } + } + } else { + if (ptr) *ptr = vptr; + break; + } + } + if (sobj) { + if (own) + *own = *own | sobj->own; + if (flags & SWIG_POINTER_DISOWN) { + sobj->own = 0; + } + res = SWIG_OK; + } else { + if (implicit_conv) { + SwigPyClientData *data = ty ? (SwigPyClientData *) ty->clientdata : 0; + if (data && !data->implicitconv) { + PyObject *klass = data->klass; + if (klass) { + PyObject *impconv; + data->implicitconv = 1; /* avoid recursion and call 'explicit' constructors*/ + impconv = SWIG_Python_CallFunctor(klass, obj); + data->implicitconv = 0; + if (PyErr_Occurred()) { + PyErr_Clear(); + impconv = 0; + } + if (impconv) { + SwigPyObject *iobj = SWIG_Python_GetSwigThis(impconv); + if (iobj) { + void *vptr; + res = SWIG_Python_ConvertPtrAndOwn((PyObject*)iobj, &vptr, ty, 0, 0); + if (SWIG_IsOK(res)) { + if (ptr) { + *ptr = vptr; + /* transfer the ownership to 'ptr' */ + iobj->own = 0; + res = SWIG_AddCast(res); + res = SWIG_AddNewMask(res); + } else { + res = SWIG_AddCast(res); + } + } + } + Py_DECREF(impconv); + } + } + } + } + if (!SWIG_IsOK(res) && obj == Py_None) { + if (ptr) + *ptr = 0; + if (PyErr_Occurred()) + PyErr_Clear(); + res = SWIG_OK; + } + } + return res; +} + +/* Convert a function ptr value */ + +SWIGRUNTIME int +SWIG_Python_ConvertFunctionPtr(PyObject *obj, void **ptr, swig_type_info *ty) { + if (!PyCFunction_Check(obj)) { + return SWIG_ConvertPtr(obj, ptr, ty, 0); + } else { + void *vptr = 0; + + /* here we get the method pointer for callbacks */ + const char *doc = (((PyCFunctionObject *)obj) -> m_ml -> ml_doc); + const char *desc = doc ? strstr(doc, "swig_ptr: ") : 0; + if (desc) + desc = ty ? SWIG_UnpackVoidPtr(desc + 10, &vptr, ty->name) : 0; + if (!desc) + return SWIG_ERROR; + if (ty) { + swig_cast_info *tc = SWIG_TypeCheck(desc,ty); + if (tc) { + int newmemory = 0; + *ptr = SWIG_TypeCast(tc,vptr,&newmemory); + assert(!newmemory); /* newmemory handling not yet implemented */ + } else { + return SWIG_ERROR; + } + } else { + *ptr = vptr; + } + return SWIG_OK; + } +} + +/* Convert a packed value value */ + +SWIGRUNTIME int +SWIG_Python_ConvertPacked(PyObject *obj, void *ptr, size_t sz, swig_type_info *ty) { + swig_type_info *to = SwigPyPacked_UnpackData(obj, ptr, sz); + if (!to) return SWIG_ERROR; + if (ty) { + if (to != ty) { + /* check type cast? */ + swig_cast_info *tc = SWIG_TypeCheck(to->name,ty); + if (!tc) return SWIG_ERROR; + } + } + return SWIG_OK; +} + +/* ----------------------------------------------------------------------------- + * Create a new pointer object + * ----------------------------------------------------------------------------- */ + +/* + Create a new instance object, without calling __init__, and set the + 'this' attribute. +*/ + +SWIGRUNTIME PyObject* +SWIG_Python_NewShadowInstance(SwigPyClientData *data, PyObject *swig_this) +{ +#if (PY_VERSION_HEX >= 0x02020000) + PyObject *inst = 0; + PyObject *newraw = data->newraw; + if (newraw) { + inst = PyObject_Call(newraw, data->newargs, NULL); + if (inst) { +#if !defined(SWIG_PYTHON_SLOW_GETSET_THIS) + PyObject **dictptr = _PyObject_GetDictPtr(inst); + if (dictptr != NULL) { + PyObject *dict = *dictptr; + if (dict == NULL) { + dict = PyDict_New(); + *dictptr = dict; + PyDict_SetItem(dict, SWIG_This(), swig_this); + } + } +#else + PyObject *key = SWIG_This(); + PyObject_SetAttr(inst, key, swig_this); +#endif + } + } else { +#if PY_VERSION_HEX >= 0x03000000 + inst = ((PyTypeObject*) data->newargs)->tp_new((PyTypeObject*) data->newargs, Py_None, Py_None); + if (inst) { + PyObject_SetAttr(inst, SWIG_This(), swig_this); + Py_TYPE(inst)->tp_flags &= ~Py_TPFLAGS_VALID_VERSION_TAG; + } +#else + PyObject *dict = PyDict_New(); + if (dict) { + PyDict_SetItem(dict, SWIG_This(), swig_this); + inst = PyInstance_NewRaw(data->newargs, dict); + Py_DECREF(dict); + } +#endif + } + return inst; +#else +#if (PY_VERSION_HEX >= 0x02010000) + PyObject *inst = 0; + PyObject *dict = PyDict_New(); + if (dict) { + PyDict_SetItem(dict, SWIG_This(), swig_this); + inst = PyInstance_NewRaw(data->newargs, dict); + Py_DECREF(dict); + } + return (PyObject *) inst; +#else + PyInstanceObject *inst = PyObject_NEW(PyInstanceObject, &PyInstance_Type); + if (inst == NULL) { + return NULL; + } + inst->in_class = (PyClassObject *)data->newargs; + Py_INCREF(inst->in_class); + inst->in_dict = PyDict_New(); + if (inst->in_dict == NULL) { + Py_DECREF(inst); + return NULL; + } +#ifdef Py_TPFLAGS_HAVE_WEAKREFS + inst->in_weakreflist = NULL; +#endif +#ifdef Py_TPFLAGS_GC + PyObject_GC_Init(inst); +#endif + PyDict_SetItem(inst->in_dict, SWIG_This(), swig_this); + return (PyObject *) inst; +#endif +#endif +} + +SWIGRUNTIME void +SWIG_Python_SetSwigThis(PyObject *inst, PyObject *swig_this) +{ + PyObject *dict; +#if (PY_VERSION_HEX >= 0x02020000) && !defined(SWIG_PYTHON_SLOW_GETSET_THIS) + PyObject **dictptr = _PyObject_GetDictPtr(inst); + if (dictptr != NULL) { + dict = *dictptr; + if (dict == NULL) { + dict = PyDict_New(); + *dictptr = dict; + } + PyDict_SetItem(dict, SWIG_This(), swig_this); + return; + } +#endif + dict = PyObject_GetAttrString(inst, (char*)"__dict__"); + PyDict_SetItem(dict, SWIG_This(), swig_this); + Py_DECREF(dict); +} + + +SWIGINTERN PyObject * +SWIG_Python_InitShadowInstance(PyObject *args) { + PyObject *obj[2]; + if (!SWIG_Python_UnpackTuple(args, "swiginit", 2, 2, obj)) { + return NULL; + } else { + SwigPyObject *sthis = SWIG_Python_GetSwigThis(obj[0]); + if (sthis) { + SwigPyObject_append((PyObject*) sthis, obj[1]); + } else { + SWIG_Python_SetSwigThis(obj[0], obj[1]); + } + return SWIG_Py_Void(); + } +} + +/* Create a new pointer object */ + +SWIGRUNTIME PyObject * +SWIG_Python_NewPointerObj(PyObject *self, void *ptr, swig_type_info *type, int flags) { + SwigPyClientData *clientdata; + PyObject * robj; + int own; + + if (!ptr) + return SWIG_Py_Void(); + + clientdata = type ? (SwigPyClientData *)(type->clientdata) : 0; + own = (flags & SWIG_POINTER_OWN) ? SWIG_POINTER_OWN : 0; + if (clientdata && clientdata->pytype) { + SwigPyObject *newobj; + if (flags & SWIG_BUILTIN_TP_INIT) { + newobj = (SwigPyObject*) self; + if (newobj->ptr) { + PyObject *next_self = clientdata->pytype->tp_alloc(clientdata->pytype, 0); + while (newobj->next) + newobj = (SwigPyObject *) newobj->next; + newobj->next = next_self; + newobj = (SwigPyObject *)next_self; +#ifdef SWIGPYTHON_BUILTIN + newobj->dict = 0; +#endif + } + } else { + newobj = PyObject_New(SwigPyObject, clientdata->pytype); +#ifdef SWIGPYTHON_BUILTIN + newobj->dict = 0; +#endif + } + if (newobj) { + newobj->ptr = ptr; + newobj->ty = type; + newobj->own = own; + newobj->next = 0; + return (PyObject*) newobj; + } + return SWIG_Py_Void(); + } + + assert(!(flags & SWIG_BUILTIN_TP_INIT)); + + robj = SwigPyObject_New(ptr, type, own); + if (robj && clientdata && !(flags & SWIG_POINTER_NOSHADOW)) { + PyObject *inst = SWIG_Python_NewShadowInstance(clientdata, robj); + Py_DECREF(robj); + robj = inst; + } + return robj; +} + +/* Create a new packed object */ + +SWIGRUNTIMEINLINE PyObject * +SWIG_Python_NewPackedObj(void *ptr, size_t sz, swig_type_info *type) { + return ptr ? SwigPyPacked_New((void *) ptr, sz, type) : SWIG_Py_Void(); +} + +/* -----------------------------------------------------------------------------* + * Get type list + * -----------------------------------------------------------------------------*/ + +#ifdef SWIG_LINK_RUNTIME +void *SWIG_ReturnGlobalTypeList(void *); +#endif + +SWIGRUNTIME swig_module_info * +SWIG_Python_GetModule(void *SWIGUNUSEDPARM(clientdata)) { + static void *type_pointer = (void *)0; + /* first check if module already created */ + if (!type_pointer) { +#ifdef SWIG_LINK_RUNTIME + type_pointer = SWIG_ReturnGlobalTypeList((void *)0); +#else +# ifdef SWIGPY_USE_CAPSULE + type_pointer = PyCapsule_Import(SWIGPY_CAPSULE_NAME, 0); +# else + type_pointer = PyCObject_Import((char*)"swig_runtime_data" SWIG_RUNTIME_VERSION, + (char*)"type_pointer" SWIG_TYPE_TABLE_NAME); +# endif + if (PyErr_Occurred()) { + PyErr_Clear(); + type_pointer = (void *)0; + } +#endif + } + return (swig_module_info *) type_pointer; +} + +#if PY_MAJOR_VERSION < 2 +/* PyModule_AddObject function was introduced in Python 2.0. The following function + is copied out of Python/modsupport.c in python version 2.3.4 */ +SWIGINTERN int +PyModule_AddObject(PyObject *m, char *name, PyObject *o) +{ + PyObject *dict; + if (!PyModule_Check(m)) { + PyErr_SetString(PyExc_TypeError, "PyModule_AddObject() needs module as first arg"); + return SWIG_ERROR; + } + if (!o) { + PyErr_SetString(PyExc_TypeError, "PyModule_AddObject() needs non-NULL value"); + return SWIG_ERROR; + } + + dict = PyModule_GetDict(m); + if (dict == NULL) { + /* Internal error -- modules must have a dict! */ + PyErr_Format(PyExc_SystemError, "module '%s' has no __dict__", + PyModule_GetName(m)); + return SWIG_ERROR; + } + if (PyDict_SetItemString(dict, name, o)) + return SWIG_ERROR; + Py_DECREF(o); + return SWIG_OK; +} +#endif + +SWIGRUNTIME void +#ifdef SWIGPY_USE_CAPSULE +SWIG_Python_DestroyModule(PyObject *obj) +#else +SWIG_Python_DestroyModule(void *vptr) +#endif +{ +#ifdef SWIGPY_USE_CAPSULE + swig_module_info *swig_module = (swig_module_info *) PyCapsule_GetPointer(obj, SWIGPY_CAPSULE_NAME); +#else + swig_module_info *swig_module = (swig_module_info *) vptr; +#endif + swig_type_info **types = swig_module->types; + size_t i; + for (i =0; i < swig_module->size; ++i) { + swig_type_info *ty = types[i]; + if (ty->owndata) { + SwigPyClientData *data = (SwigPyClientData *) ty->clientdata; + if (data) SwigPyClientData_Del(data); + } + } + Py_DECREF(SWIG_This()); + swig_this = NULL; +} + +SWIGRUNTIME void +SWIG_Python_SetModule(swig_module_info *swig_module) { +#if PY_VERSION_HEX >= 0x03000000 + /* Add a dummy module object into sys.modules */ + PyObject *module = PyImport_AddModule((char*)"swig_runtime_data" SWIG_RUNTIME_VERSION); +#else + static PyMethodDef swig_empty_runtime_method_table[] = { {NULL, NULL, 0, NULL} }; /* Sentinel */ + PyObject *module = Py_InitModule((char*)"swig_runtime_data" SWIG_RUNTIME_VERSION, swig_empty_runtime_method_table); +#endif +#ifdef SWIGPY_USE_CAPSULE + PyObject *pointer = PyCapsule_New((void *) swig_module, SWIGPY_CAPSULE_NAME, SWIG_Python_DestroyModule); + if (pointer && module) { + PyModule_AddObject(module, (char*)"type_pointer_capsule" SWIG_TYPE_TABLE_NAME, pointer); + } else { + Py_XDECREF(pointer); + } +#else + PyObject *pointer = PyCObject_FromVoidPtr((void *) swig_module, SWIG_Python_DestroyModule); + if (pointer && module) { + PyModule_AddObject(module, (char*)"type_pointer" SWIG_TYPE_TABLE_NAME, pointer); + } else { + Py_XDECREF(pointer); + } +#endif +} + +/* The python cached type query */ +SWIGRUNTIME PyObject * +SWIG_Python_TypeCache(void) { + static PyObject *SWIG_STATIC_POINTER(cache) = PyDict_New(); + return cache; +} + +SWIGRUNTIME swig_type_info * +SWIG_Python_TypeQuery(const char *type) +{ + PyObject *cache = SWIG_Python_TypeCache(); + PyObject *key = SWIG_Python_str_FromChar(type); + PyObject *obj = PyDict_GetItem(cache, key); + swig_type_info *descriptor; + if (obj) { +#ifdef SWIGPY_USE_CAPSULE + descriptor = (swig_type_info *) PyCapsule_GetPointer(obj, NULL); +#else + descriptor = (swig_type_info *) PyCObject_AsVoidPtr(obj); +#endif + } else { + swig_module_info *swig_module = SWIG_GetModule(0); + descriptor = SWIG_TypeQueryModule(swig_module, swig_module, type); + if (descriptor) { +#ifdef SWIGPY_USE_CAPSULE + obj = PyCapsule_New((void*) descriptor, NULL, NULL); +#else + obj = PyCObject_FromVoidPtr(descriptor, NULL); +#endif + PyDict_SetItem(cache, key, obj); + Py_DECREF(obj); + } + } + Py_DECREF(key); + return descriptor; +} + +/* + For backward compatibility only +*/ +#define SWIG_POINTER_EXCEPTION 0 +#define SWIG_arg_fail(arg) SWIG_Python_ArgFail(arg) +#define SWIG_MustGetPtr(p, type, argnum, flags) SWIG_Python_MustGetPtr(p, type, argnum, flags) + +SWIGRUNTIME int +SWIG_Python_AddErrMesg(const char* mesg, int infront) +{ + if (PyErr_Occurred()) { + PyObject *type = 0; + PyObject *value = 0; + PyObject *traceback = 0; + PyErr_Fetch(&type, &value, &traceback); + if (value) { + char *tmp; + PyObject *old_str = PyObject_Str(value); + Py_XINCREF(type); + PyErr_Clear(); + if (infront) { + PyErr_Format(type, "%s %s", mesg, tmp = SWIG_Python_str_AsChar(old_str)); + } else { + PyErr_Format(type, "%s %s", tmp = SWIG_Python_str_AsChar(old_str), mesg); + } + SWIG_Python_str_DelForPy3(tmp); + Py_DECREF(old_str); + } + return 1; + } else { + return 0; + } +} + +SWIGRUNTIME int +SWIG_Python_ArgFail(int argnum) +{ + if (PyErr_Occurred()) { + /* add information about failing argument */ + char mesg[256]; + PyOS_snprintf(mesg, sizeof(mesg), "argument number %d:", argnum); + return SWIG_Python_AddErrMesg(mesg, 1); + } else { + return 0; + } +} + +SWIGRUNTIMEINLINE const char * +SwigPyObject_GetDesc(PyObject *self) +{ + SwigPyObject *v = (SwigPyObject *)self; + swig_type_info *ty = v ? v->ty : 0; + return ty ? ty->str : ""; +} + +SWIGRUNTIME void +SWIG_Python_TypeError(const char *type, PyObject *obj) +{ + if (type) { +#if defined(SWIG_COBJECT_TYPES) + if (obj && SwigPyObject_Check(obj)) { + const char *otype = (const char *) SwigPyObject_GetDesc(obj); + if (otype) { + PyErr_Format(PyExc_TypeError, "a '%s' is expected, 'SwigPyObject(%s)' is received", + type, otype); + return; + } + } else +#endif + { + const char *otype = (obj ? obj->ob_type->tp_name : 0); + if (otype) { + PyObject *str = PyObject_Str(obj); + const char *cstr = str ? SWIG_Python_str_AsChar(str) : 0; + if (cstr) { + PyErr_Format(PyExc_TypeError, "a '%s' is expected, '%s(%s)' is received", + type, otype, cstr); + SWIG_Python_str_DelForPy3(cstr); + } else { + PyErr_Format(PyExc_TypeError, "a '%s' is expected, '%s' is received", + type, otype); + } + Py_XDECREF(str); + return; + } + } + PyErr_Format(PyExc_TypeError, "a '%s' is expected", type); + } else { + PyErr_Format(PyExc_TypeError, "unexpected type is received"); + } +} + + +/* Convert a pointer value, signal an exception on a type mismatch */ +SWIGRUNTIME void * +SWIG_Python_MustGetPtr(PyObject *obj, swig_type_info *ty, int SWIGUNUSEDPARM(argnum), int flags) { + void *result; + if (SWIG_Python_ConvertPtr(obj, &result, ty, flags) == -1) { + PyErr_Clear(); +#if SWIG_POINTER_EXCEPTION + if (flags) { + SWIG_Python_TypeError(SWIG_TypePrettyName(ty), obj); + SWIG_Python_ArgFail(argnum); + } +#endif + } + return result; +} + +#ifdef SWIGPYTHON_BUILTIN +SWIGRUNTIME int +SWIG_Python_NonDynamicSetAttr(PyObject *obj, PyObject *name, PyObject *value) { + PyTypeObject *tp = obj->ob_type; + PyObject *descr; + PyObject *encoded_name; + descrsetfunc f; + int res = -1; + +# ifdef Py_USING_UNICODE + if (PyString_Check(name)) { + name = PyUnicode_Decode(PyString_AsString(name), PyString_Size(name), NULL, NULL); + if (!name) + return -1; + } else if (!PyUnicode_Check(name)) +# else + if (!PyString_Check(name)) +# endif + { + PyErr_Format(PyExc_TypeError, "attribute name must be string, not '%.200s'", name->ob_type->tp_name); + return -1; + } else { + Py_INCREF(name); + } + + if (!tp->tp_dict) { + if (PyType_Ready(tp) < 0) + goto done; + } + + descr = _PyType_Lookup(tp, name); + f = NULL; + if (descr != NULL) + f = descr->ob_type->tp_descr_set; + if (!f) { + if (PyString_Check(name)) { + encoded_name = name; + Py_INCREF(name); + } else { + encoded_name = PyUnicode_AsUTF8String(name); + } + PyErr_Format(PyExc_AttributeError, "'%.100s' object has no attribute '%.200s'", tp->tp_name, PyString_AsString(encoded_name)); + Py_DECREF(encoded_name); + } else { + res = f(descr, obj, value); + } + + done: + Py_DECREF(name); + return res; +} +#endif + + +#ifdef __cplusplus +} +#endif + + + +#define SWIG_exception_fail(code, msg) do { SWIG_Error(code, msg); SWIG_fail; } while(0) + +#define SWIG_contract_assert(expr, msg) if (!(expr)) { SWIG_Error(SWIG_RuntimeError, msg); SWIG_fail; } else + + + +/* -------- TYPES TABLE (BEGIN) -------- */ + +#define SWIGTYPE_p_EIT_program swig_types[0] +#define SWIGTYPE_p_LLONG swig_types[1] +#define SWIGTYPE_p_PSI_buffer swig_types[2] +#define SWIGTYPE_p_bitstream swig_types[3] +#define SWIGTYPE_p_bool_t swig_types[4] +#define SWIGTYPE_p_cap_info swig_types[5] +#define SWIGTYPE_p_cc_subtitle swig_types[6] +#define SWIGTYPE_p_ccx_boundary_time swig_types[7] +#define SWIGTYPE_p_ccx_decoder_608_report swig_types[8] +#define SWIGTYPE_p_ccx_decoder_608_settings swig_types[9] +#define SWIGTYPE_p_ccx_decoder_dtvcc_report swig_types[10] +#define SWIGTYPE_p_ccx_decoder_dtvcc_settings swig_types[11] +#define SWIGTYPE_p_ccx_decoders_common_settings_t swig_types[12] +#define SWIGTYPE_p_ccx_demuxer swig_types[13] +#define SWIGTYPE_p_ccx_encoders_transcript_format swig_types[14] +#define SWIGTYPE_p_ccx_s_mp4Cfg swig_types[15] +#define SWIGTYPE_p_ccx_s_options swig_types[16] +#define SWIGTYPE_p_ccx_s_teletext_config swig_types[17] +#define SWIGTYPE_p_ccx_s_write swig_types[18] +#define SWIGTYPE_p_char swig_types[19] +#define SWIGTYPE_p_demuxer_cfg swig_types[20] +#define SWIGTYPE_p_demuxer_data swig_types[21] +#define SWIGTYPE_p_encoder_cfg swig_types[22] +#define SWIGTYPE_p_encoder_ctx swig_types[23] +#define SWIGTYPE_p_f_int__void swig_types[24] +#define SWIGTYPE_p_file_report swig_types[25] +#define SWIGTYPE_p_int swig_types[26] +#define SWIGTYPE_p_int16_t swig_types[27] +#define SWIGTYPE_p_int32_t swig_types[28] +#define SWIGTYPE_p_lib_cc_decode swig_types[29] +#define SWIGTYPE_p_lib_ccx_ctx swig_types[30] +#define SWIGTYPE_p_list_head swig_types[31] +#define SWIGTYPE_p_p_char swig_types[32] +#define SWIGTYPE_p_p_demuxer_data swig_types[33] +#define SWIGTYPE_p_p_lib_ccx_ctx swig_types[34] +#define SWIGTYPE_p_p_void swig_types[35] +#define SWIGTYPE_p_program_info swig_types[36] +#define SWIGTYPE_p_size_t swig_types[37] +#define SWIGTYPE_p_ts_payload swig_types[38] +#define SWIGTYPE_p_uint16_t swig_types[39] +#define SWIGTYPE_p_uint32_t swig_types[40] +#define SWIGTYPE_p_uint64_t swig_types[41] +#define SWIGTYPE_p_uint8_t swig_types[42] +#define SWIGTYPE_p_unsigned_char swig_types[43] +#define SWIGTYPE_p_unsigned_int swig_types[44] +#define SWIGTYPE_p_void swig_types[45] +static swig_type_info *swig_types[47]; +static swig_module_info swig_module = {swig_types, 46, 0, 0, 0, 0}; +#define SWIG_TypeQuery(name) SWIG_TypeQueryModule(&swig_module, &swig_module, name) +#define SWIG_MangledTypeQuery(name) SWIG_MangledTypeQueryModule(&swig_module, &swig_module, name) + +/* -------- TYPES TABLE (END) -------- */ + +#if (PY_VERSION_HEX <= 0x02000000) +# if !defined(SWIG_PYTHON_CLASSIC) +# error "This python version requires swig to be run with the '-classic' option" +# endif +#endif + +/*----------------------------------------------- + @(target):= _ccextractorapi.so + ------------------------------------------------*/ +#if PY_VERSION_HEX >= 0x03000000 +# define SWIG_init PyInit__ccextractorapi + +#else +# define SWIG_init init_ccextractorapi + +#endif +#define SWIG_name "_ccextractorapi" + +#define SWIGVERSION 0x030012 +#define SWIG_VERSION SWIGVERSION + + +#define SWIG_as_voidptr(a) (void *)((const void *)(a)) +#define SWIG_as_voidptrptr(a) ((void)SWIG_as_voidptr(*a),(void**)(a)) + + + #define SWIG_FILE_WITH_INIT + #include "../src/lib_ccx/lib_ccx.h" + #include "../src/lib_ccx/configuration.h" + #include "../src/lib_ccx/ccx_common_option.h" + #include "../src/lib_ccx/ccx_mp4.h" + #include "../src/lib_ccx/hardsubx.h" + #include "../src/lib_ccx/ccx_share.h" + #include "../src/ccextractorapi.h" + + +SWIGINTERN swig_type_info* +SWIG_pchar_descriptor(void) +{ + static int init = 0; + static swig_type_info* info = 0; + if (!init) { + info = SWIG_TypeQuery("_p_char"); + init = 1; + } + return info; +} + + +SWIGINTERNINLINE PyObject * +SWIG_FromCharPtrAndSize(const char* carray, size_t size) +{ + if (carray) { + if (size > INT_MAX) { + swig_type_info* pchar_descriptor = SWIG_pchar_descriptor(); + return pchar_descriptor ? + SWIG_InternalNewPointerObj((char *)(carray), pchar_descriptor, 0) : SWIG_Py_Void(); + } else { +#if PY_VERSION_HEX >= 0x03000000 +#if defined(SWIG_PYTHON_STRICT_BYTE_CHAR) + return PyBytes_FromStringAndSize(carray, (Py_ssize_t)(size)); +#else +#if PY_VERSION_HEX >= 0x03010000 + return PyUnicode_DecodeUTF8(carray, (Py_ssize_t)(size), "surrogateescape"); +#else + return PyUnicode_FromStringAndSize(carray, (Py_ssize_t)(size)); +#endif +#endif +#else + return PyString_FromStringAndSize(carray, (Py_ssize_t)(size)); +#endif + } + } else { + return SWIG_Py_Void(); + } +} + + +SWIGINTERNINLINE PyObject * +SWIG_FromCharPtr(const char *cptr) +{ + return SWIG_FromCharPtrAndSize(cptr, (cptr ? strlen(cptr) : 0)); +} + + +SWIGINTERNINLINE PyObject* + SWIG_From_int (int value) +{ + return PyInt_FromLong((long) value); +} + + +#include +#if !defined(SWIG_NO_LLONG_MAX) +# if !defined(LLONG_MAX) && defined(__GNUC__) && defined (__LONG_LONG_MAX__) +# define LLONG_MAX __LONG_LONG_MAX__ +# define LLONG_MIN (-LLONG_MAX - 1LL) +# define ULLONG_MAX (LLONG_MAX * 2ULL + 1ULL) +# endif +#endif + + +SWIGINTERN int +SWIG_AsVal_double (PyObject *obj, double *val) +{ + int res = SWIG_TypeError; + if (PyFloat_Check(obj)) { + if (val) *val = PyFloat_AsDouble(obj); + return SWIG_OK; +#if PY_VERSION_HEX < 0x03000000 + } else if (PyInt_Check(obj)) { + if (val) *val = (double) PyInt_AsLong(obj); + return SWIG_OK; +#endif + } else if (PyLong_Check(obj)) { + double v = PyLong_AsDouble(obj); + if (!PyErr_Occurred()) { + if (val) *val = v; + return SWIG_OK; + } else { + PyErr_Clear(); + } + } +#ifdef SWIG_PYTHON_CAST_MODE + { + int dispatch = 0; + double d = PyFloat_AsDouble(obj); + if (!PyErr_Occurred()) { + if (val) *val = d; + return SWIG_AddCast(SWIG_OK); + } else { + PyErr_Clear(); + } + if (!dispatch) { + long v = PyLong_AsLong(obj); + if (!PyErr_Occurred()) { + if (val) *val = v; + return SWIG_AddCast(SWIG_AddCast(SWIG_OK)); + } else { + PyErr_Clear(); + } + } + } +#endif + return res; +} + + +#include + + +#include + + +SWIGINTERNINLINE int +SWIG_CanCastAsInteger(double *d, double min, double max) { + double x = *d; + if ((min <= x && x <= max)) { + double fx = floor(x); + double cx = ceil(x); + double rd = ((x - fx) < 0.5) ? fx : cx; /* simple rint */ + if ((errno == EDOM) || (errno == ERANGE)) { + errno = 0; + } else { + double summ, reps, diff; + if (rd < x) { + diff = x - rd; + } else if (rd > x) { + diff = rd - x; + } else { + return 1; + } + summ = rd + x; + reps = diff/summ; + if (reps < 8*DBL_EPSILON) { + *d = rd; + return 1; + } + } + } + return 0; +} + + +SWIGINTERN int +SWIG_AsVal_unsigned_SS_long (PyObject *obj, unsigned long *val) +{ +#if PY_VERSION_HEX < 0x03000000 + if (PyInt_Check(obj)) { + long v = PyInt_AsLong(obj); + if (v >= 0) { + if (val) *val = v; + return SWIG_OK; + } else { + return SWIG_OverflowError; + } + } else +#endif + if (PyLong_Check(obj)) { + unsigned long v = PyLong_AsUnsignedLong(obj); + if (!PyErr_Occurred()) { + if (val) *val = v; + return SWIG_OK; + } else { + PyErr_Clear(); + return SWIG_OverflowError; + } + } +#ifdef SWIG_PYTHON_CAST_MODE + { + int dispatch = 0; + unsigned long v = PyLong_AsUnsignedLong(obj); + if (!PyErr_Occurred()) { + if (val) *val = v; + return SWIG_AddCast(SWIG_OK); + } else { + PyErr_Clear(); + } + if (!dispatch) { + double d; + int res = SWIG_AddCast(SWIG_AsVal_double (obj,&d)); + if (SWIG_IsOK(res) && SWIG_CanCastAsInteger(&d, 0, ULONG_MAX)) { + if (val) *val = (unsigned long)(d); + return res; + } + } + } +#endif + return SWIG_TypeError; +} + + +SWIGINTERN int +SWIG_AsVal_unsigned_SS_int (PyObject * obj, unsigned int *val) +{ + unsigned long v; + int res = SWIG_AsVal_unsigned_SS_long (obj, &v); + if (SWIG_IsOK(res)) { + if ((v > UINT_MAX)) { + return SWIG_OverflowError; + } else { + if (val) *val = (unsigned int)(v); + } + } + return res; +} + + +SWIGINTERNINLINE PyObject* + SWIG_From_unsigned_SS_int (unsigned int value) +{ + return PyInt_FromSize_t((size_t) value); +} + + + #define SWIG_From_double PyFloat_FromDouble + + +SWIGINTERN int +SWIG_AsVal_long (PyObject *obj, long* val) +{ +#if PY_VERSION_HEX < 0x03000000 + if (PyInt_Check(obj)) { + if (val) *val = PyInt_AsLong(obj); + return SWIG_OK; + } else +#endif + if (PyLong_Check(obj)) { + long v = PyLong_AsLong(obj); + if (!PyErr_Occurred()) { + if (val) *val = v; + return SWIG_OK; + } else { + PyErr_Clear(); + return SWIG_OverflowError; + } + } +#ifdef SWIG_PYTHON_CAST_MODE + { + int dispatch = 0; + long v = PyInt_AsLong(obj); + if (!PyErr_Occurred()) { + if (val) *val = v; + return SWIG_AddCast(SWIG_OK); + } else { + PyErr_Clear(); + } + if (!dispatch) { + double d; + int res = SWIG_AddCast(SWIG_AsVal_double (obj,&d)); + if (SWIG_IsOK(res) && SWIG_CanCastAsInteger(&d, LONG_MIN, LONG_MAX)) { + if (val) *val = (long)(d); + return res; + } + } + } +#endif + return SWIG_TypeError; +} + + +SWIGINTERN int +SWIG_AsVal_int (PyObject * obj, int *val) +{ + long v; + int res = SWIG_AsVal_long (obj, &v); + if (SWIG_IsOK(res)) { + if ((v < INT_MIN || v > INT_MAX)) { + return SWIG_OverflowError; + } else { + if (val) *val = (int)(v); + } + } + return res; +} + + +SWIGINTERN int +SWIG_AsCharPtrAndSize(PyObject *obj, char** cptr, size_t* psize, int *alloc) +{ +#if PY_VERSION_HEX>=0x03000000 +#if defined(SWIG_PYTHON_STRICT_BYTE_CHAR) + if (PyBytes_Check(obj)) +#else + if (PyUnicode_Check(obj)) +#endif +#else + if (PyString_Check(obj)) +#endif + { + char *cstr; Py_ssize_t len; +#if PY_VERSION_HEX>=0x03000000 +#if !defined(SWIG_PYTHON_STRICT_BYTE_CHAR) + if (!alloc && cptr) { + /* We can't allow converting without allocation, since the internal + representation of string in Python 3 is UCS-2/UCS-4 but we require + a UTF-8 representation. + TODO(bhy) More detailed explanation */ + return SWIG_RuntimeError; + } + obj = PyUnicode_AsUTF8String(obj); + if(alloc) *alloc = SWIG_NEWOBJ; +#endif + PyBytes_AsStringAndSize(obj, &cstr, &len); +#else + PyString_AsStringAndSize(obj, &cstr, &len); +#endif + if (cptr) { + if (alloc) { + /* + In python the user should not be able to modify the inner + string representation. To warranty that, if you define + SWIG_PYTHON_SAFE_CSTRINGS, a new/copy of the python string + buffer is always returned. + + The default behavior is just to return the pointer value, + so, be careful. + */ +#if defined(SWIG_PYTHON_SAFE_CSTRINGS) + if (*alloc != SWIG_OLDOBJ) +#else + if (*alloc == SWIG_NEWOBJ) +#endif + { + *cptr = (char *)memcpy(malloc((len + 1)*sizeof(char)), cstr, sizeof(char)*(len + 1)); + *alloc = SWIG_NEWOBJ; + } else { + *cptr = cstr; + *alloc = SWIG_OLDOBJ; + } + } else { +#if PY_VERSION_HEX>=0x03000000 +#if defined(SWIG_PYTHON_STRICT_BYTE_CHAR) + *cptr = PyBytes_AsString(obj); +#else + assert(0); /* Should never reach here with Unicode strings in Python 3 */ +#endif +#else + *cptr = SWIG_Python_str_AsChar(obj); +#endif + } + } + if (psize) *psize = len + 1; +#if PY_VERSION_HEX>=0x03000000 && !defined(SWIG_PYTHON_STRICT_BYTE_CHAR) + Py_XDECREF(obj); +#endif + return SWIG_OK; + } else { +#if defined(SWIG_PYTHON_2_UNICODE) +#if defined(SWIG_PYTHON_STRICT_BYTE_CHAR) +#error "Cannot use both SWIG_PYTHON_2_UNICODE and SWIG_PYTHON_STRICT_BYTE_CHAR at once" +#endif +#if PY_VERSION_HEX<0x03000000 + if (PyUnicode_Check(obj)) { + char *cstr; Py_ssize_t len; + if (!alloc && cptr) { + return SWIG_RuntimeError; + } + obj = PyUnicode_AsUTF8String(obj); + if (PyString_AsStringAndSize(obj, &cstr, &len) != -1) { + if (cptr) { + if (alloc) *alloc = SWIG_NEWOBJ; + *cptr = (char *)memcpy(malloc((len + 1)*sizeof(char)), cstr, sizeof(char)*(len + 1)); + } + if (psize) *psize = len + 1; + + Py_XDECREF(obj); + return SWIG_OK; + } else { + Py_XDECREF(obj); + } + } +#endif +#endif + + swig_type_info* pchar_descriptor = SWIG_pchar_descriptor(); + if (pchar_descriptor) { + void* vptr = 0; + if (SWIG_ConvertPtr(obj, &vptr, pchar_descriptor, 0) == SWIG_OK) { + if (cptr) *cptr = (char *) vptr; + if (psize) *psize = vptr ? (strlen((char *)vptr) + 1) : 0; + if (alloc) *alloc = SWIG_OLDOBJ; + return SWIG_OK; + } + } + } + return SWIG_TypeError; +} + + +SWIGINTERN int +SWIG_AsCharArray(PyObject * obj, char *val, size_t size) +{ + char* cptr = 0; size_t csize = 0; int alloc = SWIG_OLDOBJ; + int res = SWIG_AsCharPtrAndSize(obj, &cptr, &csize, &alloc); + if (SWIG_IsOK(res)) { + /* special case of single char conversion when we don't need space for NUL */ + if (size == 1 && csize == 2 && cptr && !cptr[1]) --csize; + if (csize <= size) { + if (val) { + if (csize) memcpy(val, cptr, csize*sizeof(char)); + if (csize < size) memset(val + csize, 0, (size - csize)*sizeof(char)); + } + if (alloc == SWIG_NEWOBJ) { + free((char*)cptr); + res = SWIG_DelNewMask(res); + } + return res; + } + if (alloc == SWIG_NEWOBJ) free((char*)cptr); + } + return SWIG_TypeError; +} + + +SWIGINTERN int +SWIG_AsVal_char (PyObject * obj, char *val) +{ + int res = SWIG_AsCharArray(obj, val, 1); + if (!SWIG_IsOK(res)) { + long v; + res = SWIG_AddCast(SWIG_AsVal_long (obj, &v)); + if (SWIG_IsOK(res)) { + if ((CHAR_MIN <= v) && (v <= CHAR_MAX)) { + if (val) *val = (char)(v); + } else { + res = SWIG_OverflowError; + } + } + } + return res; +} + + +SWIGINTERNINLINE PyObject * +SWIG_From_char (char c) +{ + return SWIG_FromCharPtrAndSize(&c,1); +} + + + + + +#if defined(LLONG_MAX) && !defined(SWIG_LONG_LONG_AVAILABLE) +# define SWIG_LONG_LONG_AVAILABLE +#endif + + +#ifdef SWIG_LONG_LONG_AVAILABLE +SWIGINTERN int +SWIG_AsVal_unsigned_SS_long_SS_long (PyObject *obj, unsigned long long *val) +{ + int res = SWIG_TypeError; + if (PyLong_Check(obj)) { + unsigned long long v = PyLong_AsUnsignedLongLong(obj); + if (!PyErr_Occurred()) { + if (val) *val = v; + return SWIG_OK; + } else { + PyErr_Clear(); + res = SWIG_OverflowError; + } + } else { + unsigned long v; + res = SWIG_AsVal_unsigned_SS_long (obj,&v); + if (SWIG_IsOK(res)) { + if (val) *val = v; + return res; + } + } +#ifdef SWIG_PYTHON_CAST_MODE + { + const double mant_max = 1LL << DBL_MANT_DIG; + double d; + res = SWIG_AsVal_double (obj,&d); + if (SWIG_IsOK(res) && !SWIG_CanCastAsInteger(&d, 0, mant_max)) + return SWIG_OverflowError; + if (SWIG_IsOK(res) && SWIG_CanCastAsInteger(&d, 0, mant_max)) { + if (val) *val = (unsigned long long)(d); + return SWIG_AddCast(res); + } + res = SWIG_TypeError; + } +#endif + return res; +} +#endif + + +SWIGINTERNINLINE int +SWIG_AsVal_size_t (PyObject * obj, size_t *val) +{ + int res = SWIG_TypeError; +#ifdef SWIG_LONG_LONG_AVAILABLE + if (sizeof(size_t) <= sizeof(unsigned long)) { +#endif + unsigned long v; + res = SWIG_AsVal_unsigned_SS_long (obj, val ? &v : 0); + if (SWIG_IsOK(res) && val) *val = (size_t)(v); +#ifdef SWIG_LONG_LONG_AVAILABLE + } else if (sizeof(size_t) <= sizeof(unsigned long long)) { + unsigned long long v; + res = SWIG_AsVal_unsigned_SS_long_SS_long (obj, val ? &v : 0); + if (SWIG_IsOK(res) && val) *val = (size_t)(v); + } +#endif + return res; +} + + + #define SWIG_From_long PyInt_FromLong + + +SWIGINTERNINLINE PyObject* +SWIG_From_unsigned_SS_long (unsigned long value) +{ + return (value > LONG_MAX) ? + PyLong_FromUnsignedLong(value) : PyInt_FromLong((long)(value)); +} + + +#ifdef SWIG_LONG_LONG_AVAILABLE +SWIGINTERNINLINE PyObject* +SWIG_From_unsigned_SS_long_SS_long (unsigned long long value) +{ + return (value > LONG_MAX) ? + PyLong_FromUnsignedLongLong(value) : PyInt_FromLong((long)(value)); +} +#endif + + +SWIGINTERNINLINE PyObject * +SWIG_From_size_t (size_t value) +{ +#ifdef SWIG_LONG_LONG_AVAILABLE + if (sizeof(size_t) <= sizeof(unsigned long)) { +#endif + return SWIG_From_unsigned_SS_long ((unsigned long)(value)); +#ifdef SWIG_LONG_LONG_AVAILABLE + } else { + /* assume sizeof(size_t) <= sizeof(unsigned long long) */ + return SWIG_From_unsigned_SS_long_SS_long ((unsigned long long)(value)); + } +#endif +} + + +SWIGINTERN int +SWIG_AsVal_unsigned_SS_char (PyObject * obj, unsigned char *val) +{ + unsigned long v; + int res = SWIG_AsVal_unsigned_SS_long (obj, &v); + if (SWIG_IsOK(res)) { + if ((v > UCHAR_MAX)) { + return SWIG_OverflowError; + } else { + if (val) *val = (unsigned char)(v); + } + } + return res; +} + + +SWIGINTERNINLINE PyObject * +SWIG_From_unsigned_SS_char (unsigned char value) +{ + return SWIG_From_unsigned_SS_long (value); +} + + +/* Getting isfinite working pre C99 across multiple platforms is non-trivial. Users can provide SWIG_isfinite on older platforms. */ +#ifndef SWIG_isfinite +/* isfinite() is a macro for C99 */ +# if defined(isfinite) +# define SWIG_isfinite(X) (isfinite(X)) +# elif defined __cplusplus && __cplusplus >= 201103L +/* Use a template so that this works whether isfinite() is std::isfinite() or + * in the global namespace. The reality seems to vary between compiler + * versions. + * + * Make sure namespace std exists to avoid compiler warnings. + * + * extern "C++" is required as this fragment can end up inside an extern "C" { } block + */ +namespace std { } +extern "C++" template +inline int SWIG_isfinite_func(T x) { + using namespace std; + return isfinite(x); +} +# define SWIG_isfinite(X) (SWIG_isfinite_func(X)) +# elif defined(_MSC_VER) +# define SWIG_isfinite(X) (_finite(X)) +# elif defined(__sun) && defined(__SVR4) +# include +# define SWIG_isfinite(X) (finite(X)) +# endif +#endif + + +/* Accept infinite as a valid float value unless we are unable to check if a value is finite */ +#ifdef SWIG_isfinite +# define SWIG_Float_Overflow_Check(X) ((X < -FLT_MAX || X > FLT_MAX) && SWIG_isfinite(X)) +#else +# define SWIG_Float_Overflow_Check(X) ((X < -FLT_MAX || X > FLT_MAX)) +#endif + + +SWIGINTERN int +SWIG_AsVal_float (PyObject * obj, float *val) +{ + double v; + int res = SWIG_AsVal_double (obj, &v); + if (SWIG_IsOK(res)) { + if (SWIG_Float_Overflow_Check(v)) { + return SWIG_OverflowError; + } else { + if (val) *val = (float)(v); + } + } + return res; +} + + +SWIGINTERNINLINE PyObject * +SWIG_From_float (float value) +{ + return SWIG_From_double (value); +} + +#ifdef __cplusplus +extern "C" { +#endif +SWIGINTERN PyObject *_wrap_file_report_width_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct file_report *arg1 = (struct file_report *) 0 ; + unsigned int arg2 ; + void *argp1 = 0 ; + int res1 = 0 ; + unsigned int val2 ; + int ecode2 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OO:file_report_width_set",&obj0,&obj1)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_file_report, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "file_report_width_set" "', argument " "1"" of type '" "struct file_report *""'"); + } + arg1 = (struct file_report *)(argp1); + ecode2 = SWIG_AsVal_unsigned_SS_int(obj1, &val2); + if (!SWIG_IsOK(ecode2)) { + SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "file_report_width_set" "', argument " "2"" of type '" "unsigned int""'"); + } + arg2 = (unsigned int)(val2); + if (arg1) (arg1)->width = arg2; + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_file_report_width_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct file_report *arg1 = (struct file_report *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + unsigned int result; + + if (!PyArg_ParseTuple(args,(char *)"O:file_report_width_get",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_file_report, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "file_report_width_get" "', argument " "1"" of type '" "struct file_report *""'"); + } + arg1 = (struct file_report *)(argp1); + result = (unsigned int) ((arg1)->width); + resultobj = SWIG_From_unsigned_SS_int((unsigned int)(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_file_report_height_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct file_report *arg1 = (struct file_report *) 0 ; + unsigned int arg2 ; + void *argp1 = 0 ; + int res1 = 0 ; + unsigned int val2 ; + int ecode2 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OO:file_report_height_set",&obj0,&obj1)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_file_report, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "file_report_height_set" "', argument " "1"" of type '" "struct file_report *""'"); + } + arg1 = (struct file_report *)(argp1); + ecode2 = SWIG_AsVal_unsigned_SS_int(obj1, &val2); + if (!SWIG_IsOK(ecode2)) { + SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "file_report_height_set" "', argument " "2"" of type '" "unsigned int""'"); + } + arg2 = (unsigned int)(val2); + if (arg1) (arg1)->height = arg2; + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_file_report_height_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct file_report *arg1 = (struct file_report *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + unsigned int result; + + if (!PyArg_ParseTuple(args,(char *)"O:file_report_height_get",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_file_report, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "file_report_height_get" "', argument " "1"" of type '" "struct file_report *""'"); + } + arg1 = (struct file_report *)(argp1); + result = (unsigned int) ((arg1)->height); + resultobj = SWIG_From_unsigned_SS_int((unsigned int)(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_file_report_aspect_ratio_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct file_report *arg1 = (struct file_report *) 0 ; + unsigned int arg2 ; + void *argp1 = 0 ; + int res1 = 0 ; + unsigned int val2 ; + int ecode2 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OO:file_report_aspect_ratio_set",&obj0,&obj1)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_file_report, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "file_report_aspect_ratio_set" "', argument " "1"" of type '" "struct file_report *""'"); + } + arg1 = (struct file_report *)(argp1); + ecode2 = SWIG_AsVal_unsigned_SS_int(obj1, &val2); + if (!SWIG_IsOK(ecode2)) { + SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "file_report_aspect_ratio_set" "', argument " "2"" of type '" "unsigned int""'"); + } + arg2 = (unsigned int)(val2); + if (arg1) (arg1)->aspect_ratio = arg2; + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_file_report_aspect_ratio_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct file_report *arg1 = (struct file_report *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + unsigned int result; + + if (!PyArg_ParseTuple(args,(char *)"O:file_report_aspect_ratio_get",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_file_report, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "file_report_aspect_ratio_get" "', argument " "1"" of type '" "struct file_report *""'"); + } + arg1 = (struct file_report *)(argp1); + result = (unsigned int) ((arg1)->aspect_ratio); + resultobj = SWIG_From_unsigned_SS_int((unsigned int)(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_file_report_frame_rate_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct file_report *arg1 = (struct file_report *) 0 ; + unsigned int arg2 ; + void *argp1 = 0 ; + int res1 = 0 ; + unsigned int val2 ; + int ecode2 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OO:file_report_frame_rate_set",&obj0,&obj1)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_file_report, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "file_report_frame_rate_set" "', argument " "1"" of type '" "struct file_report *""'"); + } + arg1 = (struct file_report *)(argp1); + ecode2 = SWIG_AsVal_unsigned_SS_int(obj1, &val2); + if (!SWIG_IsOK(ecode2)) { + SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "file_report_frame_rate_set" "', argument " "2"" of type '" "unsigned int""'"); + } + arg2 = (unsigned int)(val2); + if (arg1) (arg1)->frame_rate = arg2; + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_file_report_frame_rate_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct file_report *arg1 = (struct file_report *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + unsigned int result; + + if (!PyArg_ParseTuple(args,(char *)"O:file_report_frame_rate_get",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_file_report, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "file_report_frame_rate_get" "', argument " "1"" of type '" "struct file_report *""'"); + } + arg1 = (struct file_report *)(argp1); + result = (unsigned int) ((arg1)->frame_rate); + resultobj = SWIG_From_unsigned_SS_int((unsigned int)(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_file_report_data_from_608_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct file_report *arg1 = (struct file_report *) 0 ; + struct ccx_decoder_608_report *arg2 = (struct ccx_decoder_608_report *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + void *argp2 = 0 ; + int res2 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OO:file_report_data_from_608_set",&obj0,&obj1)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_file_report, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "file_report_data_from_608_set" "', argument " "1"" of type '" "struct file_report *""'"); + } + arg1 = (struct file_report *)(argp1); + res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_ccx_decoder_608_report, SWIG_POINTER_DISOWN | 0 ); + if (!SWIG_IsOK(res2)) { + SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "file_report_data_from_608_set" "', argument " "2"" of type '" "struct ccx_decoder_608_report *""'"); + } + arg2 = (struct ccx_decoder_608_report *)(argp2); + if (arg1) (arg1)->data_from_608 = arg2; + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_file_report_data_from_608_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct file_report *arg1 = (struct file_report *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + struct ccx_decoder_608_report *result = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"O:file_report_data_from_608_get",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_file_report, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "file_report_data_from_608_get" "', argument " "1"" of type '" "struct file_report *""'"); + } + arg1 = (struct file_report *)(argp1); + result = (struct ccx_decoder_608_report *) ((arg1)->data_from_608); + resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_ccx_decoder_608_report, 0 | 0 ); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_file_report_data_from_708_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct file_report *arg1 = (struct file_report *) 0 ; + struct ccx_decoder_dtvcc_report *arg2 = (struct ccx_decoder_dtvcc_report *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + void *argp2 = 0 ; + int res2 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OO:file_report_data_from_708_set",&obj0,&obj1)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_file_report, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "file_report_data_from_708_set" "', argument " "1"" of type '" "struct file_report *""'"); + } + arg1 = (struct file_report *)(argp1); + res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_ccx_decoder_dtvcc_report, SWIG_POINTER_DISOWN | 0 ); + if (!SWIG_IsOK(res2)) { + SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "file_report_data_from_708_set" "', argument " "2"" of type '" "struct ccx_decoder_dtvcc_report *""'"); + } + arg2 = (struct ccx_decoder_dtvcc_report *)(argp2); + if (arg1) (arg1)->data_from_708 = arg2; + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_file_report_data_from_708_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct file_report *arg1 = (struct file_report *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + struct ccx_decoder_dtvcc_report *result = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"O:file_report_data_from_708_get",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_file_report, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "file_report_data_from_708_get" "', argument " "1"" of type '" "struct file_report *""'"); + } + arg1 = (struct file_report *)(argp1); + result = (struct ccx_decoder_dtvcc_report *) ((arg1)->data_from_708); + resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_ccx_decoder_dtvcc_report, 0 | 0 ); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_file_report_mp4_cc_track_cnt_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct file_report *arg1 = (struct file_report *) 0 ; + unsigned int arg2 ; + void *argp1 = 0 ; + int res1 = 0 ; + unsigned int val2 ; + int ecode2 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OO:file_report_mp4_cc_track_cnt_set",&obj0,&obj1)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_file_report, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "file_report_mp4_cc_track_cnt_set" "', argument " "1"" of type '" "struct file_report *""'"); + } + arg1 = (struct file_report *)(argp1); + ecode2 = SWIG_AsVal_unsigned_SS_int(obj1, &val2); + if (!SWIG_IsOK(ecode2)) { + SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "file_report_mp4_cc_track_cnt_set" "', argument " "2"" of type '" "unsigned int""'"); + } + arg2 = (unsigned int)(val2); + if (arg1) (arg1)->mp4_cc_track_cnt = arg2; + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_file_report_mp4_cc_track_cnt_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct file_report *arg1 = (struct file_report *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + unsigned int result; + + if (!PyArg_ParseTuple(args,(char *)"O:file_report_mp4_cc_track_cnt_get",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_file_report, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "file_report_mp4_cc_track_cnt_get" "', argument " "1"" of type '" "struct file_report *""'"); + } + arg1 = (struct file_report *)(argp1); + result = (unsigned int) ((arg1)->mp4_cc_track_cnt); + resultobj = SWIG_From_unsigned_SS_int((unsigned int)(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_new_file_report(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct file_report *result = 0 ; + + if (!PyArg_ParseTuple(args,(char *)":new_file_report")) SWIG_fail; + result = (struct file_report *)calloc(1, sizeof(struct file_report)); + resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_file_report, SWIG_POINTER_NEW | 0 ); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_delete_file_report(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct file_report *arg1 = (struct file_report *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"O:delete_file_report",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_file_report, SWIG_POINTER_DISOWN | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_file_report" "', argument " "1"" of type '" "struct file_report *""'"); + } + arg1 = (struct file_report *)(argp1); + free((char *) arg1); + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *file_report_swigregister(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *obj; + if (!PyArg_ParseTuple(args,(char *)"O:swigregister", &obj)) return NULL; + SWIG_TypeNewClientData(SWIGTYPE_p_file_report, SWIG_NewClientData(obj)); + return SWIG_Py_Void(); +} + +SWIGINTERN PyObject *_wrap_ccx_s_teletext_config_verbose_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct ccx_s_teletext_config *arg1 = (struct ccx_s_teletext_config *) 0 ; + uint8_t arg2 ; + void *argp1 = 0 ; + int res1 = 0 ; + void *argp2 ; + int res2 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OO:ccx_s_teletext_config_verbose_set",&obj0,&obj1)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_ccx_s_teletext_config, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "ccx_s_teletext_config_verbose_set" "', argument " "1"" of type '" "struct ccx_s_teletext_config *""'"); + } + arg1 = (struct ccx_s_teletext_config *)(argp1); + { + res2 = SWIG_ConvertPtr(obj1, &argp2, SWIGTYPE_p_uint8_t, 0 ); + if (!SWIG_IsOK(res2)) { + SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "ccx_s_teletext_config_verbose_set" "', argument " "2"" of type '" "uint8_t""'"); + } + if (!argp2) { + SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "ccx_s_teletext_config_verbose_set" "', argument " "2"" of type '" "uint8_t""'"); + } else { + arg2 = *((uint8_t *)(argp2)); + } + } + if (arg1) (arg1)->verbose = arg2; + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_ccx_s_teletext_config_verbose_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct ccx_s_teletext_config *arg1 = (struct ccx_s_teletext_config *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + uint8_t result; + + if (!PyArg_ParseTuple(args,(char *)"O:ccx_s_teletext_config_verbose_get",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_ccx_s_teletext_config, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "ccx_s_teletext_config_verbose_get" "', argument " "1"" of type '" "struct ccx_s_teletext_config *""'"); + } + arg1 = (struct ccx_s_teletext_config *)(argp1); + result = ((arg1)->verbose); + resultobj = SWIG_NewPointerObj((uint8_t *)memcpy((uint8_t *)calloc(1,sizeof(uint8_t)),&result,sizeof(uint8_t)), SWIGTYPE_p_uint8_t, SWIG_POINTER_OWN | 0 ); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_ccx_s_teletext_config_page_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct ccx_s_teletext_config *arg1 = (struct ccx_s_teletext_config *) 0 ; + uint16_t arg2 ; + void *argp1 = 0 ; + int res1 = 0 ; + void *argp2 ; + int res2 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OO:ccx_s_teletext_config_page_set",&obj0,&obj1)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_ccx_s_teletext_config, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "ccx_s_teletext_config_page_set" "', argument " "1"" of type '" "struct ccx_s_teletext_config *""'"); + } + arg1 = (struct ccx_s_teletext_config *)(argp1); + { + res2 = SWIG_ConvertPtr(obj1, &argp2, SWIGTYPE_p_uint16_t, 0 ); + if (!SWIG_IsOK(res2)) { + SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "ccx_s_teletext_config_page_set" "', argument " "2"" of type '" "uint16_t""'"); + } + if (!argp2) { + SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "ccx_s_teletext_config_page_set" "', argument " "2"" of type '" "uint16_t""'"); + } else { + arg2 = *((uint16_t *)(argp2)); + } + } + if (arg1) (arg1)->page = arg2; + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_ccx_s_teletext_config_page_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct ccx_s_teletext_config *arg1 = (struct ccx_s_teletext_config *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + uint16_t result; + + if (!PyArg_ParseTuple(args,(char *)"O:ccx_s_teletext_config_page_get",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_ccx_s_teletext_config, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "ccx_s_teletext_config_page_get" "', argument " "1"" of type '" "struct ccx_s_teletext_config *""'"); + } + arg1 = (struct ccx_s_teletext_config *)(argp1); + result = ((arg1)->page); + resultobj = SWIG_NewPointerObj((uint16_t *)memcpy((uint16_t *)calloc(1,sizeof(uint16_t)),&result,sizeof(uint16_t)), SWIGTYPE_p_uint16_t, SWIG_POINTER_OWN | 0 ); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_ccx_s_teletext_config_tid_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct ccx_s_teletext_config *arg1 = (struct ccx_s_teletext_config *) 0 ; + uint16_t arg2 ; + void *argp1 = 0 ; + int res1 = 0 ; + void *argp2 ; + int res2 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OO:ccx_s_teletext_config_tid_set",&obj0,&obj1)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_ccx_s_teletext_config, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "ccx_s_teletext_config_tid_set" "', argument " "1"" of type '" "struct ccx_s_teletext_config *""'"); + } + arg1 = (struct ccx_s_teletext_config *)(argp1); + { + res2 = SWIG_ConvertPtr(obj1, &argp2, SWIGTYPE_p_uint16_t, 0 ); + if (!SWIG_IsOK(res2)) { + SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "ccx_s_teletext_config_tid_set" "', argument " "2"" of type '" "uint16_t""'"); + } + if (!argp2) { + SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "ccx_s_teletext_config_tid_set" "', argument " "2"" of type '" "uint16_t""'"); + } else { + arg2 = *((uint16_t *)(argp2)); + } + } + if (arg1) (arg1)->tid = arg2; + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_ccx_s_teletext_config_tid_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct ccx_s_teletext_config *arg1 = (struct ccx_s_teletext_config *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + uint16_t result; + + if (!PyArg_ParseTuple(args,(char *)"O:ccx_s_teletext_config_tid_get",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_ccx_s_teletext_config, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "ccx_s_teletext_config_tid_get" "', argument " "1"" of type '" "struct ccx_s_teletext_config *""'"); + } + arg1 = (struct ccx_s_teletext_config *)(argp1); + result = ((arg1)->tid); + resultobj = SWIG_NewPointerObj((uint16_t *)memcpy((uint16_t *)calloc(1,sizeof(uint16_t)),&result,sizeof(uint16_t)), SWIGTYPE_p_uint16_t, SWIG_POINTER_OWN | 0 ); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_ccx_s_teletext_config_offset_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct ccx_s_teletext_config *arg1 = (struct ccx_s_teletext_config *) 0 ; + double arg2 ; + void *argp1 = 0 ; + int res1 = 0 ; + double val2 ; + int ecode2 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OO:ccx_s_teletext_config_offset_set",&obj0,&obj1)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_ccx_s_teletext_config, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "ccx_s_teletext_config_offset_set" "', argument " "1"" of type '" "struct ccx_s_teletext_config *""'"); + } + arg1 = (struct ccx_s_teletext_config *)(argp1); + ecode2 = SWIG_AsVal_double(obj1, &val2); + if (!SWIG_IsOK(ecode2)) { + SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "ccx_s_teletext_config_offset_set" "', argument " "2"" of type '" "double""'"); + } + arg2 = (double)(val2); + if (arg1) (arg1)->offset = arg2; + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_ccx_s_teletext_config_offset_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct ccx_s_teletext_config *arg1 = (struct ccx_s_teletext_config *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + double result; + + if (!PyArg_ParseTuple(args,(char *)"O:ccx_s_teletext_config_offset_get",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_ccx_s_teletext_config, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "ccx_s_teletext_config_offset_get" "', argument " "1"" of type '" "struct ccx_s_teletext_config *""'"); + } + arg1 = (struct ccx_s_teletext_config *)(argp1); + result = (double) ((arg1)->offset); + resultobj = SWIG_From_double((double)(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_ccx_s_teletext_config_bom_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct ccx_s_teletext_config *arg1 = (struct ccx_s_teletext_config *) 0 ; + uint8_t arg2 ; + void *argp1 = 0 ; + int res1 = 0 ; + void *argp2 ; + int res2 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OO:ccx_s_teletext_config_bom_set",&obj0,&obj1)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_ccx_s_teletext_config, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "ccx_s_teletext_config_bom_set" "', argument " "1"" of type '" "struct ccx_s_teletext_config *""'"); + } + arg1 = (struct ccx_s_teletext_config *)(argp1); + { + res2 = SWIG_ConvertPtr(obj1, &argp2, SWIGTYPE_p_uint8_t, 0 ); + if (!SWIG_IsOK(res2)) { + SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "ccx_s_teletext_config_bom_set" "', argument " "2"" of type '" "uint8_t""'"); + } + if (!argp2) { + SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "ccx_s_teletext_config_bom_set" "', argument " "2"" of type '" "uint8_t""'"); + } else { + arg2 = *((uint8_t *)(argp2)); + } + } + if (arg1) (arg1)->bom = arg2; + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_ccx_s_teletext_config_bom_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct ccx_s_teletext_config *arg1 = (struct ccx_s_teletext_config *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + uint8_t result; + + if (!PyArg_ParseTuple(args,(char *)"O:ccx_s_teletext_config_bom_get",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_ccx_s_teletext_config, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "ccx_s_teletext_config_bom_get" "', argument " "1"" of type '" "struct ccx_s_teletext_config *""'"); + } + arg1 = (struct ccx_s_teletext_config *)(argp1); + result = ((arg1)->bom); + resultobj = SWIG_NewPointerObj((uint8_t *)memcpy((uint8_t *)calloc(1,sizeof(uint8_t)),&result,sizeof(uint8_t)), SWIGTYPE_p_uint8_t, SWIG_POINTER_OWN | 0 ); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_ccx_s_teletext_config_nonempty_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct ccx_s_teletext_config *arg1 = (struct ccx_s_teletext_config *) 0 ; + uint8_t arg2 ; + void *argp1 = 0 ; + int res1 = 0 ; + void *argp2 ; + int res2 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OO:ccx_s_teletext_config_nonempty_set",&obj0,&obj1)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_ccx_s_teletext_config, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "ccx_s_teletext_config_nonempty_set" "', argument " "1"" of type '" "struct ccx_s_teletext_config *""'"); + } + arg1 = (struct ccx_s_teletext_config *)(argp1); + { + res2 = SWIG_ConvertPtr(obj1, &argp2, SWIGTYPE_p_uint8_t, 0 ); + if (!SWIG_IsOK(res2)) { + SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "ccx_s_teletext_config_nonempty_set" "', argument " "2"" of type '" "uint8_t""'"); + } + if (!argp2) { + SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "ccx_s_teletext_config_nonempty_set" "', argument " "2"" of type '" "uint8_t""'"); + } else { + arg2 = *((uint8_t *)(argp2)); + } + } + if (arg1) (arg1)->nonempty = arg2; + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_ccx_s_teletext_config_nonempty_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct ccx_s_teletext_config *arg1 = (struct ccx_s_teletext_config *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + uint8_t result; + + if (!PyArg_ParseTuple(args,(char *)"O:ccx_s_teletext_config_nonempty_get",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_ccx_s_teletext_config, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "ccx_s_teletext_config_nonempty_get" "', argument " "1"" of type '" "struct ccx_s_teletext_config *""'"); + } + arg1 = (struct ccx_s_teletext_config *)(argp1); + result = ((arg1)->nonempty); + resultobj = SWIG_NewPointerObj((uint8_t *)memcpy((uint8_t *)calloc(1,sizeof(uint8_t)),&result,sizeof(uint8_t)), SWIGTYPE_p_uint8_t, SWIG_POINTER_OWN | 0 ); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_ccx_s_teletext_config_user_page_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct ccx_s_teletext_config *arg1 = (struct ccx_s_teletext_config *) 0 ; + uint16_t arg2 ; + void *argp1 = 0 ; + int res1 = 0 ; + void *argp2 ; + int res2 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OO:ccx_s_teletext_config_user_page_set",&obj0,&obj1)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_ccx_s_teletext_config, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "ccx_s_teletext_config_user_page_set" "', argument " "1"" of type '" "struct ccx_s_teletext_config *""'"); + } + arg1 = (struct ccx_s_teletext_config *)(argp1); + { + res2 = SWIG_ConvertPtr(obj1, &argp2, SWIGTYPE_p_uint16_t, 0 ); + if (!SWIG_IsOK(res2)) { + SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "ccx_s_teletext_config_user_page_set" "', argument " "2"" of type '" "uint16_t""'"); + } + if (!argp2) { + SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "ccx_s_teletext_config_user_page_set" "', argument " "2"" of type '" "uint16_t""'"); + } else { + arg2 = *((uint16_t *)(argp2)); + } + } + if (arg1) (arg1)->user_page = arg2; + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_ccx_s_teletext_config_user_page_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct ccx_s_teletext_config *arg1 = (struct ccx_s_teletext_config *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + uint16_t result; + + if (!PyArg_ParseTuple(args,(char *)"O:ccx_s_teletext_config_user_page_get",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_ccx_s_teletext_config, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "ccx_s_teletext_config_user_page_get" "', argument " "1"" of type '" "struct ccx_s_teletext_config *""'"); + } + arg1 = (struct ccx_s_teletext_config *)(argp1); + result = ((arg1)->user_page); + resultobj = SWIG_NewPointerObj((uint16_t *)memcpy((uint16_t *)calloc(1,sizeof(uint16_t)),&result,sizeof(uint16_t)), SWIGTYPE_p_uint16_t, SWIG_POINTER_OWN | 0 ); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_ccx_s_teletext_config_levdistmincnt_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct ccx_s_teletext_config *arg1 = (struct ccx_s_teletext_config *) 0 ; + int arg2 ; + void *argp1 = 0 ; + int res1 = 0 ; + int val2 ; + int ecode2 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OO:ccx_s_teletext_config_levdistmincnt_set",&obj0,&obj1)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_ccx_s_teletext_config, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "ccx_s_teletext_config_levdistmincnt_set" "', argument " "1"" of type '" "struct ccx_s_teletext_config *""'"); + } + arg1 = (struct ccx_s_teletext_config *)(argp1); + ecode2 = SWIG_AsVal_int(obj1, &val2); + if (!SWIG_IsOK(ecode2)) { + SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "ccx_s_teletext_config_levdistmincnt_set" "', argument " "2"" of type '" "int""'"); + } + arg2 = (int)(val2); + if (arg1) (arg1)->levdistmincnt = arg2; + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_ccx_s_teletext_config_levdistmincnt_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct ccx_s_teletext_config *arg1 = (struct ccx_s_teletext_config *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + int result; + + if (!PyArg_ParseTuple(args,(char *)"O:ccx_s_teletext_config_levdistmincnt_get",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_ccx_s_teletext_config, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "ccx_s_teletext_config_levdistmincnt_get" "', argument " "1"" of type '" "struct ccx_s_teletext_config *""'"); + } + arg1 = (struct ccx_s_teletext_config *)(argp1); + result = (int) ((arg1)->levdistmincnt); + resultobj = SWIG_From_int((int)(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_ccx_s_teletext_config_levdistmaxpct_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct ccx_s_teletext_config *arg1 = (struct ccx_s_teletext_config *) 0 ; + int arg2 ; + void *argp1 = 0 ; + int res1 = 0 ; + int val2 ; + int ecode2 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OO:ccx_s_teletext_config_levdistmaxpct_set",&obj0,&obj1)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_ccx_s_teletext_config, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "ccx_s_teletext_config_levdistmaxpct_set" "', argument " "1"" of type '" "struct ccx_s_teletext_config *""'"); + } + arg1 = (struct ccx_s_teletext_config *)(argp1); + ecode2 = SWIG_AsVal_int(obj1, &val2); + if (!SWIG_IsOK(ecode2)) { + SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "ccx_s_teletext_config_levdistmaxpct_set" "', argument " "2"" of type '" "int""'"); + } + arg2 = (int)(val2); + if (arg1) (arg1)->levdistmaxpct = arg2; + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_ccx_s_teletext_config_levdistmaxpct_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct ccx_s_teletext_config *arg1 = (struct ccx_s_teletext_config *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + int result; + + if (!PyArg_ParseTuple(args,(char *)"O:ccx_s_teletext_config_levdistmaxpct_get",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_ccx_s_teletext_config, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "ccx_s_teletext_config_levdistmaxpct_get" "', argument " "1"" of type '" "struct ccx_s_teletext_config *""'"); + } + arg1 = (struct ccx_s_teletext_config *)(argp1); + result = (int) ((arg1)->levdistmaxpct); + resultobj = SWIG_From_int((int)(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_ccx_s_teletext_config_extraction_start_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct ccx_s_teletext_config *arg1 = (struct ccx_s_teletext_config *) 0 ; + struct ccx_boundary_time arg2 ; + void *argp1 = 0 ; + int res1 = 0 ; + void *argp2 ; + int res2 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OO:ccx_s_teletext_config_extraction_start_set",&obj0,&obj1)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_ccx_s_teletext_config, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "ccx_s_teletext_config_extraction_start_set" "', argument " "1"" of type '" "struct ccx_s_teletext_config *""'"); + } + arg1 = (struct ccx_s_teletext_config *)(argp1); + { + res2 = SWIG_ConvertPtr(obj1, &argp2, SWIGTYPE_p_ccx_boundary_time, 0 ); + if (!SWIG_IsOK(res2)) { + SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "ccx_s_teletext_config_extraction_start_set" "', argument " "2"" of type '" "struct ccx_boundary_time""'"); + } + if (!argp2) { + SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "ccx_s_teletext_config_extraction_start_set" "', argument " "2"" of type '" "struct ccx_boundary_time""'"); + } else { + arg2 = *((struct ccx_boundary_time *)(argp2)); + } + } + if (arg1) (arg1)->extraction_start = arg2; + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_ccx_s_teletext_config_extraction_start_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct ccx_s_teletext_config *arg1 = (struct ccx_s_teletext_config *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + struct ccx_boundary_time result; + + if (!PyArg_ParseTuple(args,(char *)"O:ccx_s_teletext_config_extraction_start_get",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_ccx_s_teletext_config, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "ccx_s_teletext_config_extraction_start_get" "', argument " "1"" of type '" "struct ccx_s_teletext_config *""'"); + } + arg1 = (struct ccx_s_teletext_config *)(argp1); + result = ((arg1)->extraction_start); + resultobj = SWIG_NewPointerObj((struct ccx_boundary_time *)memcpy((struct ccx_boundary_time *)calloc(1,sizeof(struct ccx_boundary_time)),&result,sizeof(struct ccx_boundary_time)), SWIGTYPE_p_ccx_boundary_time, SWIG_POINTER_OWN | 0 ); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_ccx_s_teletext_config_extraction_end_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct ccx_s_teletext_config *arg1 = (struct ccx_s_teletext_config *) 0 ; + struct ccx_boundary_time arg2 ; + void *argp1 = 0 ; + int res1 = 0 ; + void *argp2 ; + int res2 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OO:ccx_s_teletext_config_extraction_end_set",&obj0,&obj1)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_ccx_s_teletext_config, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "ccx_s_teletext_config_extraction_end_set" "', argument " "1"" of type '" "struct ccx_s_teletext_config *""'"); + } + arg1 = (struct ccx_s_teletext_config *)(argp1); + { + res2 = SWIG_ConvertPtr(obj1, &argp2, SWIGTYPE_p_ccx_boundary_time, 0 ); + if (!SWIG_IsOK(res2)) { + SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "ccx_s_teletext_config_extraction_end_set" "', argument " "2"" of type '" "struct ccx_boundary_time""'"); + } + if (!argp2) { + SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "ccx_s_teletext_config_extraction_end_set" "', argument " "2"" of type '" "struct ccx_boundary_time""'"); + } else { + arg2 = *((struct ccx_boundary_time *)(argp2)); + } + } + if (arg1) (arg1)->extraction_end = arg2; + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_ccx_s_teletext_config_extraction_end_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct ccx_s_teletext_config *arg1 = (struct ccx_s_teletext_config *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + struct ccx_boundary_time result; + + if (!PyArg_ParseTuple(args,(char *)"O:ccx_s_teletext_config_extraction_end_get",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_ccx_s_teletext_config, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "ccx_s_teletext_config_extraction_end_get" "', argument " "1"" of type '" "struct ccx_s_teletext_config *""'"); + } + arg1 = (struct ccx_s_teletext_config *)(argp1); + result = ((arg1)->extraction_end); + resultobj = SWIG_NewPointerObj((struct ccx_boundary_time *)memcpy((struct ccx_boundary_time *)calloc(1,sizeof(struct ccx_boundary_time)),&result,sizeof(struct ccx_boundary_time)), SWIGTYPE_p_ccx_boundary_time, SWIG_POINTER_OWN | 0 ); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_ccx_s_teletext_config_write_format_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct ccx_s_teletext_config *arg1 = (struct ccx_s_teletext_config *) 0 ; + enum ccx_output_format arg2 ; + void *argp1 = 0 ; + int res1 = 0 ; + int val2 ; + int ecode2 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OO:ccx_s_teletext_config_write_format_set",&obj0,&obj1)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_ccx_s_teletext_config, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "ccx_s_teletext_config_write_format_set" "', argument " "1"" of type '" "struct ccx_s_teletext_config *""'"); + } + arg1 = (struct ccx_s_teletext_config *)(argp1); + ecode2 = SWIG_AsVal_int(obj1, &val2); + if (!SWIG_IsOK(ecode2)) { + SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "ccx_s_teletext_config_write_format_set" "', argument " "2"" of type '" "enum ccx_output_format""'"); + } + arg2 = (enum ccx_output_format)(val2); + if (arg1) (arg1)->write_format = arg2; + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_ccx_s_teletext_config_write_format_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct ccx_s_teletext_config *arg1 = (struct ccx_s_teletext_config *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + enum ccx_output_format result; + + if (!PyArg_ParseTuple(args,(char *)"O:ccx_s_teletext_config_write_format_get",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_ccx_s_teletext_config, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "ccx_s_teletext_config_write_format_get" "', argument " "1"" of type '" "struct ccx_s_teletext_config *""'"); + } + arg1 = (struct ccx_s_teletext_config *)(argp1); + result = (enum ccx_output_format) ((arg1)->write_format); + resultobj = SWIG_From_int((int)(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_ccx_s_teletext_config_gui_mode_reports_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct ccx_s_teletext_config *arg1 = (struct ccx_s_teletext_config *) 0 ; + int arg2 ; + void *argp1 = 0 ; + int res1 = 0 ; + int val2 ; + int ecode2 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OO:ccx_s_teletext_config_gui_mode_reports_set",&obj0,&obj1)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_ccx_s_teletext_config, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "ccx_s_teletext_config_gui_mode_reports_set" "', argument " "1"" of type '" "struct ccx_s_teletext_config *""'"); + } + arg1 = (struct ccx_s_teletext_config *)(argp1); + ecode2 = SWIG_AsVal_int(obj1, &val2); + if (!SWIG_IsOK(ecode2)) { + SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "ccx_s_teletext_config_gui_mode_reports_set" "', argument " "2"" of type '" "int""'"); + } + arg2 = (int)(val2); + if (arg1) (arg1)->gui_mode_reports = arg2; + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_ccx_s_teletext_config_gui_mode_reports_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct ccx_s_teletext_config *arg1 = (struct ccx_s_teletext_config *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + int result; + + if (!PyArg_ParseTuple(args,(char *)"O:ccx_s_teletext_config_gui_mode_reports_get",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_ccx_s_teletext_config, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "ccx_s_teletext_config_gui_mode_reports_get" "', argument " "1"" of type '" "struct ccx_s_teletext_config *""'"); + } + arg1 = (struct ccx_s_teletext_config *)(argp1); + result = (int) ((arg1)->gui_mode_reports); + resultobj = SWIG_From_int((int)(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_ccx_s_teletext_config_date_format_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct ccx_s_teletext_config *arg1 = (struct ccx_s_teletext_config *) 0 ; + enum ccx_output_date_format arg2 ; + void *argp1 = 0 ; + int res1 = 0 ; + int val2 ; + int ecode2 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OO:ccx_s_teletext_config_date_format_set",&obj0,&obj1)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_ccx_s_teletext_config, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "ccx_s_teletext_config_date_format_set" "', argument " "1"" of type '" "struct ccx_s_teletext_config *""'"); + } + arg1 = (struct ccx_s_teletext_config *)(argp1); + ecode2 = SWIG_AsVal_int(obj1, &val2); + if (!SWIG_IsOK(ecode2)) { + SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "ccx_s_teletext_config_date_format_set" "', argument " "2"" of type '" "enum ccx_output_date_format""'"); + } + arg2 = (enum ccx_output_date_format)(val2); + if (arg1) (arg1)->date_format = arg2; + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_ccx_s_teletext_config_date_format_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct ccx_s_teletext_config *arg1 = (struct ccx_s_teletext_config *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + enum ccx_output_date_format result; + + if (!PyArg_ParseTuple(args,(char *)"O:ccx_s_teletext_config_date_format_get",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_ccx_s_teletext_config, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "ccx_s_teletext_config_date_format_get" "', argument " "1"" of type '" "struct ccx_s_teletext_config *""'"); + } + arg1 = (struct ccx_s_teletext_config *)(argp1); + result = (enum ccx_output_date_format) ((arg1)->date_format); + resultobj = SWIG_From_int((int)(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_ccx_s_teletext_config_noautotimeref_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct ccx_s_teletext_config *arg1 = (struct ccx_s_teletext_config *) 0 ; + int arg2 ; + void *argp1 = 0 ; + int res1 = 0 ; + int val2 ; + int ecode2 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OO:ccx_s_teletext_config_noautotimeref_set",&obj0,&obj1)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_ccx_s_teletext_config, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "ccx_s_teletext_config_noautotimeref_set" "', argument " "1"" of type '" "struct ccx_s_teletext_config *""'"); + } + arg1 = (struct ccx_s_teletext_config *)(argp1); + ecode2 = SWIG_AsVal_int(obj1, &val2); + if (!SWIG_IsOK(ecode2)) { + SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "ccx_s_teletext_config_noautotimeref_set" "', argument " "2"" of type '" "int""'"); + } + arg2 = (int)(val2); + if (arg1) (arg1)->noautotimeref = arg2; + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_ccx_s_teletext_config_noautotimeref_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct ccx_s_teletext_config *arg1 = (struct ccx_s_teletext_config *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + int result; + + if (!PyArg_ParseTuple(args,(char *)"O:ccx_s_teletext_config_noautotimeref_get",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_ccx_s_teletext_config, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "ccx_s_teletext_config_noautotimeref_get" "', argument " "1"" of type '" "struct ccx_s_teletext_config *""'"); + } + arg1 = (struct ccx_s_teletext_config *)(argp1); + result = (int) ((arg1)->noautotimeref); + resultobj = SWIG_From_int((int)(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_ccx_s_teletext_config_send_to_srv_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct ccx_s_teletext_config *arg1 = (struct ccx_s_teletext_config *) 0 ; + unsigned int arg2 ; + void *argp1 = 0 ; + int res1 = 0 ; + unsigned int val2 ; + int ecode2 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OO:ccx_s_teletext_config_send_to_srv_set",&obj0,&obj1)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_ccx_s_teletext_config, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "ccx_s_teletext_config_send_to_srv_set" "', argument " "1"" of type '" "struct ccx_s_teletext_config *""'"); + } + arg1 = (struct ccx_s_teletext_config *)(argp1); + ecode2 = SWIG_AsVal_unsigned_SS_int(obj1, &val2); + if (!SWIG_IsOK(ecode2)) { + SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "ccx_s_teletext_config_send_to_srv_set" "', argument " "2"" of type '" "unsigned int""'"); + } + arg2 = (unsigned int)(val2); + if (arg1) (arg1)->send_to_srv = arg2; + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_ccx_s_teletext_config_send_to_srv_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct ccx_s_teletext_config *arg1 = (struct ccx_s_teletext_config *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + unsigned int result; + + if (!PyArg_ParseTuple(args,(char *)"O:ccx_s_teletext_config_send_to_srv_get",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_ccx_s_teletext_config, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "ccx_s_teletext_config_send_to_srv_get" "', argument " "1"" of type '" "struct ccx_s_teletext_config *""'"); + } + arg1 = (struct ccx_s_teletext_config *)(argp1); + result = (unsigned int) ((arg1)->send_to_srv); + resultobj = SWIG_From_unsigned_SS_int((unsigned int)(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_ccx_s_teletext_config_encoding_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct ccx_s_teletext_config *arg1 = (struct ccx_s_teletext_config *) 0 ; + enum ccx_encoding_type arg2 ; + void *argp1 = 0 ; + int res1 = 0 ; + int val2 ; + int ecode2 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OO:ccx_s_teletext_config_encoding_set",&obj0,&obj1)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_ccx_s_teletext_config, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "ccx_s_teletext_config_encoding_set" "', argument " "1"" of type '" "struct ccx_s_teletext_config *""'"); + } + arg1 = (struct ccx_s_teletext_config *)(argp1); + ecode2 = SWIG_AsVal_int(obj1, &val2); + if (!SWIG_IsOK(ecode2)) { + SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "ccx_s_teletext_config_encoding_set" "', argument " "2"" of type '" "enum ccx_encoding_type""'"); + } + arg2 = (enum ccx_encoding_type)(val2); + if (arg1) (arg1)->encoding = arg2; + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_ccx_s_teletext_config_encoding_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct ccx_s_teletext_config *arg1 = (struct ccx_s_teletext_config *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + enum ccx_encoding_type result; + + if (!PyArg_ParseTuple(args,(char *)"O:ccx_s_teletext_config_encoding_get",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_ccx_s_teletext_config, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "ccx_s_teletext_config_encoding_get" "', argument " "1"" of type '" "struct ccx_s_teletext_config *""'"); + } + arg1 = (struct ccx_s_teletext_config *)(argp1); + result = (enum ccx_encoding_type) ((arg1)->encoding); + resultobj = SWIG_From_int((int)(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_ccx_s_teletext_config_nofontcolor_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct ccx_s_teletext_config *arg1 = (struct ccx_s_teletext_config *) 0 ; + int arg2 ; + void *argp1 = 0 ; + int res1 = 0 ; + int val2 ; + int ecode2 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OO:ccx_s_teletext_config_nofontcolor_set",&obj0,&obj1)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_ccx_s_teletext_config, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "ccx_s_teletext_config_nofontcolor_set" "', argument " "1"" of type '" "struct ccx_s_teletext_config *""'"); + } + arg1 = (struct ccx_s_teletext_config *)(argp1); + ecode2 = SWIG_AsVal_int(obj1, &val2); + if (!SWIG_IsOK(ecode2)) { + SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "ccx_s_teletext_config_nofontcolor_set" "', argument " "2"" of type '" "int""'"); + } + arg2 = (int)(val2); + if (arg1) (arg1)->nofontcolor = arg2; + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_ccx_s_teletext_config_nofontcolor_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct ccx_s_teletext_config *arg1 = (struct ccx_s_teletext_config *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + int result; + + if (!PyArg_ParseTuple(args,(char *)"O:ccx_s_teletext_config_nofontcolor_get",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_ccx_s_teletext_config, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "ccx_s_teletext_config_nofontcolor_get" "', argument " "1"" of type '" "struct ccx_s_teletext_config *""'"); + } + arg1 = (struct ccx_s_teletext_config *)(argp1); + result = (int) ((arg1)->nofontcolor); + resultobj = SWIG_From_int((int)(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_ccx_s_teletext_config_nohtmlescape_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct ccx_s_teletext_config *arg1 = (struct ccx_s_teletext_config *) 0 ; + int arg2 ; + void *argp1 = 0 ; + int res1 = 0 ; + int val2 ; + int ecode2 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OO:ccx_s_teletext_config_nohtmlescape_set",&obj0,&obj1)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_ccx_s_teletext_config, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "ccx_s_teletext_config_nohtmlescape_set" "', argument " "1"" of type '" "struct ccx_s_teletext_config *""'"); + } + arg1 = (struct ccx_s_teletext_config *)(argp1); + ecode2 = SWIG_AsVal_int(obj1, &val2); + if (!SWIG_IsOK(ecode2)) { + SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "ccx_s_teletext_config_nohtmlescape_set" "', argument " "2"" of type '" "int""'"); + } + arg2 = (int)(val2); + if (arg1) (arg1)->nohtmlescape = arg2; + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_ccx_s_teletext_config_nohtmlescape_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct ccx_s_teletext_config *arg1 = (struct ccx_s_teletext_config *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + int result; + + if (!PyArg_ParseTuple(args,(char *)"O:ccx_s_teletext_config_nohtmlescape_get",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_ccx_s_teletext_config, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "ccx_s_teletext_config_nohtmlescape_get" "', argument " "1"" of type '" "struct ccx_s_teletext_config *""'"); + } + arg1 = (struct ccx_s_teletext_config *)(argp1); + result = (int) ((arg1)->nohtmlescape); + resultobj = SWIG_From_int((int)(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_ccx_s_teletext_config_millis_separator_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct ccx_s_teletext_config *arg1 = (struct ccx_s_teletext_config *) 0 ; + char arg2 ; + void *argp1 = 0 ; + int res1 = 0 ; + char val2 ; + int ecode2 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OO:ccx_s_teletext_config_millis_separator_set",&obj0,&obj1)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_ccx_s_teletext_config, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "ccx_s_teletext_config_millis_separator_set" "', argument " "1"" of type '" "struct ccx_s_teletext_config *""'"); + } + arg1 = (struct ccx_s_teletext_config *)(argp1); + ecode2 = SWIG_AsVal_char(obj1, &val2); + if (!SWIG_IsOK(ecode2)) { + SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "ccx_s_teletext_config_millis_separator_set" "', argument " "2"" of type '" "char""'"); + } + arg2 = (char)(val2); + if (arg1) (arg1)->millis_separator = arg2; + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_ccx_s_teletext_config_millis_separator_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct ccx_s_teletext_config *arg1 = (struct ccx_s_teletext_config *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + char result; + + if (!PyArg_ParseTuple(args,(char *)"O:ccx_s_teletext_config_millis_separator_get",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_ccx_s_teletext_config, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "ccx_s_teletext_config_millis_separator_get" "', argument " "1"" of type '" "struct ccx_s_teletext_config *""'"); + } + arg1 = (struct ccx_s_teletext_config *)(argp1); + result = (char) ((arg1)->millis_separator); + resultobj = SWIG_From_char((char)(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_new_ccx_s_teletext_config(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct ccx_s_teletext_config *result = 0 ; + + if (!PyArg_ParseTuple(args,(char *)":new_ccx_s_teletext_config")) SWIG_fail; + result = (struct ccx_s_teletext_config *)calloc(1, sizeof(struct ccx_s_teletext_config)); + resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_ccx_s_teletext_config, SWIG_POINTER_NEW | 0 ); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_delete_ccx_s_teletext_config(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct ccx_s_teletext_config *arg1 = (struct ccx_s_teletext_config *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"O:delete_ccx_s_teletext_config",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_ccx_s_teletext_config, SWIG_POINTER_DISOWN | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_ccx_s_teletext_config" "', argument " "1"" of type '" "struct ccx_s_teletext_config *""'"); + } + arg1 = (struct ccx_s_teletext_config *)(argp1); + free((char *) arg1); + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *ccx_s_teletext_config_swigregister(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *obj; + if (!PyArg_ParseTuple(args,(char *)"O:swigregister", &obj)) return NULL; + SWIG_TypeNewClientData(SWIGTYPE_p_ccx_s_teletext_config, SWIG_NewClientData(obj)); + return SWIG_Py_Void(); +} + +SWIGINTERN PyObject *_wrap_ccx_s_mp4Cfg_mp4vidtrack_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct ccx_s_mp4Cfg *arg1 = (struct ccx_s_mp4Cfg *) 0 ; + unsigned int arg2 ; + void *argp1 = 0 ; + int res1 = 0 ; + unsigned int val2 ; + int ecode2 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OO:ccx_s_mp4Cfg_mp4vidtrack_set",&obj0,&obj1)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_ccx_s_mp4Cfg, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "ccx_s_mp4Cfg_mp4vidtrack_set" "', argument " "1"" of type '" "struct ccx_s_mp4Cfg *""'"); + } + arg1 = (struct ccx_s_mp4Cfg *)(argp1); + ecode2 = SWIG_AsVal_unsigned_SS_int(obj1, &val2); + if (!SWIG_IsOK(ecode2)) { + SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "ccx_s_mp4Cfg_mp4vidtrack_set" "', argument " "2"" of type '" "unsigned int""'"); + } + arg2 = (unsigned int)(val2); + if (arg1) (arg1)->mp4vidtrack = arg2; + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_ccx_s_mp4Cfg_mp4vidtrack_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct ccx_s_mp4Cfg *arg1 = (struct ccx_s_mp4Cfg *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + unsigned int result; + + if (!PyArg_ParseTuple(args,(char *)"O:ccx_s_mp4Cfg_mp4vidtrack_get",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_ccx_s_mp4Cfg, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "ccx_s_mp4Cfg_mp4vidtrack_get" "', argument " "1"" of type '" "struct ccx_s_mp4Cfg *""'"); + } + arg1 = (struct ccx_s_mp4Cfg *)(argp1); + result = (unsigned int) ((arg1)->mp4vidtrack); + resultobj = SWIG_From_unsigned_SS_int((unsigned int)(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_new_ccx_s_mp4Cfg(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct ccx_s_mp4Cfg *result = 0 ; + + if (!PyArg_ParseTuple(args,(char *)":new_ccx_s_mp4Cfg")) SWIG_fail; + result = (struct ccx_s_mp4Cfg *)calloc(1, sizeof(struct ccx_s_mp4Cfg)); + resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_ccx_s_mp4Cfg, SWIG_POINTER_NEW | 0 ); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_delete_ccx_s_mp4Cfg(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct ccx_s_mp4Cfg *arg1 = (struct ccx_s_mp4Cfg *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"O:delete_ccx_s_mp4Cfg",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_ccx_s_mp4Cfg, SWIG_POINTER_DISOWN | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_ccx_s_mp4Cfg" "', argument " "1"" of type '" "struct ccx_s_mp4Cfg *""'"); + } + arg1 = (struct ccx_s_mp4Cfg *)(argp1); + free((char *) arg1); + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *ccx_s_mp4Cfg_swigregister(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *obj; + if (!PyArg_ParseTuple(args,(char *)"O:swigregister", &obj)) return NULL; + SWIG_TypeNewClientData(SWIGTYPE_p_ccx_s_mp4Cfg, SWIG_NewClientData(obj)); + return SWIG_Py_Void(); +} + +SWIGINTERN PyObject *_wrap_lib_ccx_ctx_pesheaderbuf_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct lib_ccx_ctx *arg1 = (struct lib_ccx_ctx *) 0 ; + unsigned char *arg2 = (unsigned char *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + void *argp2 = 0 ; + int res2 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OO:lib_ccx_ctx_pesheaderbuf_set",&obj0,&obj1)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_lib_ccx_ctx, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "lib_ccx_ctx_pesheaderbuf_set" "', argument " "1"" of type '" "struct lib_ccx_ctx *""'"); + } + arg1 = (struct lib_ccx_ctx *)(argp1); + res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_unsigned_char, SWIG_POINTER_DISOWN | 0 ); + if (!SWIG_IsOK(res2)) { + SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "lib_ccx_ctx_pesheaderbuf_set" "', argument " "2"" of type '" "unsigned char *""'"); + } + arg2 = (unsigned char *)(argp2); + if (arg1) (arg1)->pesheaderbuf = arg2; + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_lib_ccx_ctx_pesheaderbuf_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct lib_ccx_ctx *arg1 = (struct lib_ccx_ctx *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + unsigned char *result = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"O:lib_ccx_ctx_pesheaderbuf_get",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_lib_ccx_ctx, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "lib_ccx_ctx_pesheaderbuf_get" "', argument " "1"" of type '" "struct lib_ccx_ctx *""'"); + } + arg1 = (struct lib_ccx_ctx *)(argp1); + result = (unsigned char *) ((arg1)->pesheaderbuf); + resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_unsigned_char, 0 | 0 ); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_lib_ccx_ctx_inputsize_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct lib_ccx_ctx *arg1 = (struct lib_ccx_ctx *) 0 ; + LLONG arg2 ; + void *argp1 = 0 ; + int res1 = 0 ; + void *argp2 ; + int res2 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OO:lib_ccx_ctx_inputsize_set",&obj0,&obj1)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_lib_ccx_ctx, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "lib_ccx_ctx_inputsize_set" "', argument " "1"" of type '" "struct lib_ccx_ctx *""'"); + } + arg1 = (struct lib_ccx_ctx *)(argp1); + { + res2 = SWIG_ConvertPtr(obj1, &argp2, SWIGTYPE_p_LLONG, 0 ); + if (!SWIG_IsOK(res2)) { + SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "lib_ccx_ctx_inputsize_set" "', argument " "2"" of type '" "LLONG""'"); + } + if (!argp2) { + SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "lib_ccx_ctx_inputsize_set" "', argument " "2"" of type '" "LLONG""'"); + } else { + arg2 = *((LLONG *)(argp2)); + } + } + if (arg1) (arg1)->inputsize = arg2; + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_lib_ccx_ctx_inputsize_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct lib_ccx_ctx *arg1 = (struct lib_ccx_ctx *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + LLONG result; + + if (!PyArg_ParseTuple(args,(char *)"O:lib_ccx_ctx_inputsize_get",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_lib_ccx_ctx, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "lib_ccx_ctx_inputsize_get" "', argument " "1"" of type '" "struct lib_ccx_ctx *""'"); + } + arg1 = (struct lib_ccx_ctx *)(argp1); + result = ((arg1)->inputsize); + resultobj = SWIG_NewPointerObj((LLONG *)memcpy((LLONG *)calloc(1,sizeof(LLONG)),&result,sizeof(LLONG)), SWIGTYPE_p_LLONG, SWIG_POINTER_OWN | 0 ); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_lib_ccx_ctx_total_inputsize_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct lib_ccx_ctx *arg1 = (struct lib_ccx_ctx *) 0 ; + LLONG arg2 ; + void *argp1 = 0 ; + int res1 = 0 ; + void *argp2 ; + int res2 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OO:lib_ccx_ctx_total_inputsize_set",&obj0,&obj1)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_lib_ccx_ctx, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "lib_ccx_ctx_total_inputsize_set" "', argument " "1"" of type '" "struct lib_ccx_ctx *""'"); + } + arg1 = (struct lib_ccx_ctx *)(argp1); + { + res2 = SWIG_ConvertPtr(obj1, &argp2, SWIGTYPE_p_LLONG, 0 ); + if (!SWIG_IsOK(res2)) { + SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "lib_ccx_ctx_total_inputsize_set" "', argument " "2"" of type '" "LLONG""'"); + } + if (!argp2) { + SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "lib_ccx_ctx_total_inputsize_set" "', argument " "2"" of type '" "LLONG""'"); + } else { + arg2 = *((LLONG *)(argp2)); + } + } + if (arg1) (arg1)->total_inputsize = arg2; + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_lib_ccx_ctx_total_inputsize_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct lib_ccx_ctx *arg1 = (struct lib_ccx_ctx *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + LLONG result; + + if (!PyArg_ParseTuple(args,(char *)"O:lib_ccx_ctx_total_inputsize_get",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_lib_ccx_ctx, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "lib_ccx_ctx_total_inputsize_get" "', argument " "1"" of type '" "struct lib_ccx_ctx *""'"); + } + arg1 = (struct lib_ccx_ctx *)(argp1); + result = ((arg1)->total_inputsize); + resultobj = SWIG_NewPointerObj((LLONG *)memcpy((LLONG *)calloc(1,sizeof(LLONG)),&result,sizeof(LLONG)), SWIGTYPE_p_LLONG, SWIG_POINTER_OWN | 0 ); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_lib_ccx_ctx_total_past_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct lib_ccx_ctx *arg1 = (struct lib_ccx_ctx *) 0 ; + LLONG arg2 ; + void *argp1 = 0 ; + int res1 = 0 ; + void *argp2 ; + int res2 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OO:lib_ccx_ctx_total_past_set",&obj0,&obj1)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_lib_ccx_ctx, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "lib_ccx_ctx_total_past_set" "', argument " "1"" of type '" "struct lib_ccx_ctx *""'"); + } + arg1 = (struct lib_ccx_ctx *)(argp1); + { + res2 = SWIG_ConvertPtr(obj1, &argp2, SWIGTYPE_p_LLONG, 0 ); + if (!SWIG_IsOK(res2)) { + SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "lib_ccx_ctx_total_past_set" "', argument " "2"" of type '" "LLONG""'"); + } + if (!argp2) { + SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "lib_ccx_ctx_total_past_set" "', argument " "2"" of type '" "LLONG""'"); + } else { + arg2 = *((LLONG *)(argp2)); + } + } + if (arg1) (arg1)->total_past = arg2; + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_lib_ccx_ctx_total_past_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct lib_ccx_ctx *arg1 = (struct lib_ccx_ctx *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + LLONG result; + + if (!PyArg_ParseTuple(args,(char *)"O:lib_ccx_ctx_total_past_get",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_lib_ccx_ctx, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "lib_ccx_ctx_total_past_get" "', argument " "1"" of type '" "struct lib_ccx_ctx *""'"); + } + arg1 = (struct lib_ccx_ctx *)(argp1); + result = ((arg1)->total_past); + resultobj = SWIG_NewPointerObj((LLONG *)memcpy((LLONG *)calloc(1,sizeof(LLONG)),&result,sizeof(LLONG)), SWIGTYPE_p_LLONG, SWIG_POINTER_OWN | 0 ); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_lib_ccx_ctx_last_reported_progress_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct lib_ccx_ctx *arg1 = (struct lib_ccx_ctx *) 0 ; + int arg2 ; + void *argp1 = 0 ; + int res1 = 0 ; + int val2 ; + int ecode2 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OO:lib_ccx_ctx_last_reported_progress_set",&obj0,&obj1)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_lib_ccx_ctx, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "lib_ccx_ctx_last_reported_progress_set" "', argument " "1"" of type '" "struct lib_ccx_ctx *""'"); + } + arg1 = (struct lib_ccx_ctx *)(argp1); + ecode2 = SWIG_AsVal_int(obj1, &val2); + if (!SWIG_IsOK(ecode2)) { + SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "lib_ccx_ctx_last_reported_progress_set" "', argument " "2"" of type '" "int""'"); + } + arg2 = (int)(val2); + if (arg1) (arg1)->last_reported_progress = arg2; + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_lib_ccx_ctx_last_reported_progress_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct lib_ccx_ctx *arg1 = (struct lib_ccx_ctx *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + int result; + + if (!PyArg_ParseTuple(args,(char *)"O:lib_ccx_ctx_last_reported_progress_get",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_lib_ccx_ctx, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "lib_ccx_ctx_last_reported_progress_get" "', argument " "1"" of type '" "struct lib_ccx_ctx *""'"); + } + arg1 = (struct lib_ccx_ctx *)(argp1); + result = (int) ((arg1)->last_reported_progress); + resultobj = SWIG_From_int((int)(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_lib_ccx_ctx_stat_numuserheaders_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct lib_ccx_ctx *arg1 = (struct lib_ccx_ctx *) 0 ; + int arg2 ; + void *argp1 = 0 ; + int res1 = 0 ; + int val2 ; + int ecode2 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OO:lib_ccx_ctx_stat_numuserheaders_set",&obj0,&obj1)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_lib_ccx_ctx, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "lib_ccx_ctx_stat_numuserheaders_set" "', argument " "1"" of type '" "struct lib_ccx_ctx *""'"); + } + arg1 = (struct lib_ccx_ctx *)(argp1); + ecode2 = SWIG_AsVal_int(obj1, &val2); + if (!SWIG_IsOK(ecode2)) { + SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "lib_ccx_ctx_stat_numuserheaders_set" "', argument " "2"" of type '" "int""'"); + } + arg2 = (int)(val2); + if (arg1) (arg1)->stat_numuserheaders = arg2; + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_lib_ccx_ctx_stat_numuserheaders_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct lib_ccx_ctx *arg1 = (struct lib_ccx_ctx *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + int result; + + if (!PyArg_ParseTuple(args,(char *)"O:lib_ccx_ctx_stat_numuserheaders_get",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_lib_ccx_ctx, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "lib_ccx_ctx_stat_numuserheaders_get" "', argument " "1"" of type '" "struct lib_ccx_ctx *""'"); + } + arg1 = (struct lib_ccx_ctx *)(argp1); + result = (int) ((arg1)->stat_numuserheaders); + resultobj = SWIG_From_int((int)(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_lib_ccx_ctx_stat_dvdccheaders_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct lib_ccx_ctx *arg1 = (struct lib_ccx_ctx *) 0 ; + int arg2 ; + void *argp1 = 0 ; + int res1 = 0 ; + int val2 ; + int ecode2 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OO:lib_ccx_ctx_stat_dvdccheaders_set",&obj0,&obj1)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_lib_ccx_ctx, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "lib_ccx_ctx_stat_dvdccheaders_set" "', argument " "1"" of type '" "struct lib_ccx_ctx *""'"); + } + arg1 = (struct lib_ccx_ctx *)(argp1); + ecode2 = SWIG_AsVal_int(obj1, &val2); + if (!SWIG_IsOK(ecode2)) { + SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "lib_ccx_ctx_stat_dvdccheaders_set" "', argument " "2"" of type '" "int""'"); + } + arg2 = (int)(val2); + if (arg1) (arg1)->stat_dvdccheaders = arg2; + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_lib_ccx_ctx_stat_dvdccheaders_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct lib_ccx_ctx *arg1 = (struct lib_ccx_ctx *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + int result; + + if (!PyArg_ParseTuple(args,(char *)"O:lib_ccx_ctx_stat_dvdccheaders_get",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_lib_ccx_ctx, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "lib_ccx_ctx_stat_dvdccheaders_get" "', argument " "1"" of type '" "struct lib_ccx_ctx *""'"); + } + arg1 = (struct lib_ccx_ctx *)(argp1); + result = (int) ((arg1)->stat_dvdccheaders); + resultobj = SWIG_From_int((int)(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_lib_ccx_ctx_stat_scte20ccheaders_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct lib_ccx_ctx *arg1 = (struct lib_ccx_ctx *) 0 ; + int arg2 ; + void *argp1 = 0 ; + int res1 = 0 ; + int val2 ; + int ecode2 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OO:lib_ccx_ctx_stat_scte20ccheaders_set",&obj0,&obj1)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_lib_ccx_ctx, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "lib_ccx_ctx_stat_scte20ccheaders_set" "', argument " "1"" of type '" "struct lib_ccx_ctx *""'"); + } + arg1 = (struct lib_ccx_ctx *)(argp1); + ecode2 = SWIG_AsVal_int(obj1, &val2); + if (!SWIG_IsOK(ecode2)) { + SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "lib_ccx_ctx_stat_scte20ccheaders_set" "', argument " "2"" of type '" "int""'"); + } + arg2 = (int)(val2); + if (arg1) (arg1)->stat_scte20ccheaders = arg2; + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_lib_ccx_ctx_stat_scte20ccheaders_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct lib_ccx_ctx *arg1 = (struct lib_ccx_ctx *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + int result; + + if (!PyArg_ParseTuple(args,(char *)"O:lib_ccx_ctx_stat_scte20ccheaders_get",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_lib_ccx_ctx, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "lib_ccx_ctx_stat_scte20ccheaders_get" "', argument " "1"" of type '" "struct lib_ccx_ctx *""'"); + } + arg1 = (struct lib_ccx_ctx *)(argp1); + result = (int) ((arg1)->stat_scte20ccheaders); + resultobj = SWIG_From_int((int)(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_lib_ccx_ctx_stat_replay5000headers_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct lib_ccx_ctx *arg1 = (struct lib_ccx_ctx *) 0 ; + int arg2 ; + void *argp1 = 0 ; + int res1 = 0 ; + int val2 ; + int ecode2 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OO:lib_ccx_ctx_stat_replay5000headers_set",&obj0,&obj1)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_lib_ccx_ctx, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "lib_ccx_ctx_stat_replay5000headers_set" "', argument " "1"" of type '" "struct lib_ccx_ctx *""'"); + } + arg1 = (struct lib_ccx_ctx *)(argp1); + ecode2 = SWIG_AsVal_int(obj1, &val2); + if (!SWIG_IsOK(ecode2)) { + SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "lib_ccx_ctx_stat_replay5000headers_set" "', argument " "2"" of type '" "int""'"); + } + arg2 = (int)(val2); + if (arg1) (arg1)->stat_replay5000headers = arg2; + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_lib_ccx_ctx_stat_replay5000headers_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct lib_ccx_ctx *arg1 = (struct lib_ccx_ctx *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + int result; + + if (!PyArg_ParseTuple(args,(char *)"O:lib_ccx_ctx_stat_replay5000headers_get",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_lib_ccx_ctx, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "lib_ccx_ctx_stat_replay5000headers_get" "', argument " "1"" of type '" "struct lib_ccx_ctx *""'"); + } + arg1 = (struct lib_ccx_ctx *)(argp1); + result = (int) ((arg1)->stat_replay5000headers); + resultobj = SWIG_From_int((int)(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_lib_ccx_ctx_stat_replay4000headers_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct lib_ccx_ctx *arg1 = (struct lib_ccx_ctx *) 0 ; + int arg2 ; + void *argp1 = 0 ; + int res1 = 0 ; + int val2 ; + int ecode2 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OO:lib_ccx_ctx_stat_replay4000headers_set",&obj0,&obj1)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_lib_ccx_ctx, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "lib_ccx_ctx_stat_replay4000headers_set" "', argument " "1"" of type '" "struct lib_ccx_ctx *""'"); + } + arg1 = (struct lib_ccx_ctx *)(argp1); + ecode2 = SWIG_AsVal_int(obj1, &val2); + if (!SWIG_IsOK(ecode2)) { + SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "lib_ccx_ctx_stat_replay4000headers_set" "', argument " "2"" of type '" "int""'"); + } + arg2 = (int)(val2); + if (arg1) (arg1)->stat_replay4000headers = arg2; + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_lib_ccx_ctx_stat_replay4000headers_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct lib_ccx_ctx *arg1 = (struct lib_ccx_ctx *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + int result; + + if (!PyArg_ParseTuple(args,(char *)"O:lib_ccx_ctx_stat_replay4000headers_get",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_lib_ccx_ctx, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "lib_ccx_ctx_stat_replay4000headers_get" "', argument " "1"" of type '" "struct lib_ccx_ctx *""'"); + } + arg1 = (struct lib_ccx_ctx *)(argp1); + result = (int) ((arg1)->stat_replay4000headers); + resultobj = SWIG_From_int((int)(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_lib_ccx_ctx_stat_dishheaders_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct lib_ccx_ctx *arg1 = (struct lib_ccx_ctx *) 0 ; + int arg2 ; + void *argp1 = 0 ; + int res1 = 0 ; + int val2 ; + int ecode2 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OO:lib_ccx_ctx_stat_dishheaders_set",&obj0,&obj1)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_lib_ccx_ctx, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "lib_ccx_ctx_stat_dishheaders_set" "', argument " "1"" of type '" "struct lib_ccx_ctx *""'"); + } + arg1 = (struct lib_ccx_ctx *)(argp1); + ecode2 = SWIG_AsVal_int(obj1, &val2); + if (!SWIG_IsOK(ecode2)) { + SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "lib_ccx_ctx_stat_dishheaders_set" "', argument " "2"" of type '" "int""'"); + } + arg2 = (int)(val2); + if (arg1) (arg1)->stat_dishheaders = arg2; + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_lib_ccx_ctx_stat_dishheaders_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct lib_ccx_ctx *arg1 = (struct lib_ccx_ctx *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + int result; + + if (!PyArg_ParseTuple(args,(char *)"O:lib_ccx_ctx_stat_dishheaders_get",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_lib_ccx_ctx, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "lib_ccx_ctx_stat_dishheaders_get" "', argument " "1"" of type '" "struct lib_ccx_ctx *""'"); + } + arg1 = (struct lib_ccx_ctx *)(argp1); + result = (int) ((arg1)->stat_dishheaders); + resultobj = SWIG_From_int((int)(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_lib_ccx_ctx_stat_hdtv_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct lib_ccx_ctx *arg1 = (struct lib_ccx_ctx *) 0 ; + int arg2 ; + void *argp1 = 0 ; + int res1 = 0 ; + int val2 ; + int ecode2 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OO:lib_ccx_ctx_stat_hdtv_set",&obj0,&obj1)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_lib_ccx_ctx, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "lib_ccx_ctx_stat_hdtv_set" "', argument " "1"" of type '" "struct lib_ccx_ctx *""'"); + } + arg1 = (struct lib_ccx_ctx *)(argp1); + ecode2 = SWIG_AsVal_int(obj1, &val2); + if (!SWIG_IsOK(ecode2)) { + SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "lib_ccx_ctx_stat_hdtv_set" "', argument " "2"" of type '" "int""'"); + } + arg2 = (int)(val2); + if (arg1) (arg1)->stat_hdtv = arg2; + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_lib_ccx_ctx_stat_hdtv_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct lib_ccx_ctx *arg1 = (struct lib_ccx_ctx *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + int result; + + if (!PyArg_ParseTuple(args,(char *)"O:lib_ccx_ctx_stat_hdtv_get",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_lib_ccx_ctx, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "lib_ccx_ctx_stat_hdtv_get" "', argument " "1"" of type '" "struct lib_ccx_ctx *""'"); + } + arg1 = (struct lib_ccx_ctx *)(argp1); + result = (int) ((arg1)->stat_hdtv); + resultobj = SWIG_From_int((int)(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_lib_ccx_ctx_stat_divicom_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct lib_ccx_ctx *arg1 = (struct lib_ccx_ctx *) 0 ; + int arg2 ; + void *argp1 = 0 ; + int res1 = 0 ; + int val2 ; + int ecode2 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OO:lib_ccx_ctx_stat_divicom_set",&obj0,&obj1)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_lib_ccx_ctx, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "lib_ccx_ctx_stat_divicom_set" "', argument " "1"" of type '" "struct lib_ccx_ctx *""'"); + } + arg1 = (struct lib_ccx_ctx *)(argp1); + ecode2 = SWIG_AsVal_int(obj1, &val2); + if (!SWIG_IsOK(ecode2)) { + SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "lib_ccx_ctx_stat_divicom_set" "', argument " "2"" of type '" "int""'"); + } + arg2 = (int)(val2); + if (arg1) (arg1)->stat_divicom = arg2; + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_lib_ccx_ctx_stat_divicom_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct lib_ccx_ctx *arg1 = (struct lib_ccx_ctx *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + int result; + + if (!PyArg_ParseTuple(args,(char *)"O:lib_ccx_ctx_stat_divicom_get",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_lib_ccx_ctx, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "lib_ccx_ctx_stat_divicom_get" "', argument " "1"" of type '" "struct lib_ccx_ctx *""'"); + } + arg1 = (struct lib_ccx_ctx *)(argp1); + result = (int) ((arg1)->stat_divicom); + resultobj = SWIG_From_int((int)(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_lib_ccx_ctx_false_pict_header_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct lib_ccx_ctx *arg1 = (struct lib_ccx_ctx *) 0 ; + int arg2 ; + void *argp1 = 0 ; + int res1 = 0 ; + int val2 ; + int ecode2 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OO:lib_ccx_ctx_false_pict_header_set",&obj0,&obj1)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_lib_ccx_ctx, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "lib_ccx_ctx_false_pict_header_set" "', argument " "1"" of type '" "struct lib_ccx_ctx *""'"); + } + arg1 = (struct lib_ccx_ctx *)(argp1); + ecode2 = SWIG_AsVal_int(obj1, &val2); + if (!SWIG_IsOK(ecode2)) { + SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "lib_ccx_ctx_false_pict_header_set" "', argument " "2"" of type '" "int""'"); + } + arg2 = (int)(val2); + if (arg1) (arg1)->false_pict_header = arg2; + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_lib_ccx_ctx_false_pict_header_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct lib_ccx_ctx *arg1 = (struct lib_ccx_ctx *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + int result; + + if (!PyArg_ParseTuple(args,(char *)"O:lib_ccx_ctx_false_pict_header_get",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_lib_ccx_ctx, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "lib_ccx_ctx_false_pict_header_get" "', argument " "1"" of type '" "struct lib_ccx_ctx *""'"); + } + arg1 = (struct lib_ccx_ctx *)(argp1); + result = (int) ((arg1)->false_pict_header); + resultobj = SWIG_From_int((int)(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_lib_ccx_ctx_dec_global_setting_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct lib_ccx_ctx *arg1 = (struct lib_ccx_ctx *) 0 ; + struct ccx_decoders_common_settings_t *arg2 = (struct ccx_decoders_common_settings_t *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + void *argp2 = 0 ; + int res2 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OO:lib_ccx_ctx_dec_global_setting_set",&obj0,&obj1)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_lib_ccx_ctx, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "lib_ccx_ctx_dec_global_setting_set" "', argument " "1"" of type '" "struct lib_ccx_ctx *""'"); + } + arg1 = (struct lib_ccx_ctx *)(argp1); + res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_ccx_decoders_common_settings_t, SWIG_POINTER_DISOWN | 0 ); + if (!SWIG_IsOK(res2)) { + SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "lib_ccx_ctx_dec_global_setting_set" "', argument " "2"" of type '" "struct ccx_decoders_common_settings_t *""'"); + } + arg2 = (struct ccx_decoders_common_settings_t *)(argp2); + if (arg1) (arg1)->dec_global_setting = arg2; + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_lib_ccx_ctx_dec_global_setting_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct lib_ccx_ctx *arg1 = (struct lib_ccx_ctx *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + struct ccx_decoders_common_settings_t *result = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"O:lib_ccx_ctx_dec_global_setting_get",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_lib_ccx_ctx, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "lib_ccx_ctx_dec_global_setting_get" "', argument " "1"" of type '" "struct lib_ccx_ctx *""'"); + } + arg1 = (struct lib_ccx_ctx *)(argp1); + result = (struct ccx_decoders_common_settings_t *) ((arg1)->dec_global_setting); + resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_ccx_decoders_common_settings_t, 0 | 0 ); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_lib_ccx_ctx_dec_ctx_head_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct lib_ccx_ctx *arg1 = (struct lib_ccx_ctx *) 0 ; + struct list_head arg2 ; + void *argp1 = 0 ; + int res1 = 0 ; + void *argp2 ; + int res2 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OO:lib_ccx_ctx_dec_ctx_head_set",&obj0,&obj1)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_lib_ccx_ctx, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "lib_ccx_ctx_dec_ctx_head_set" "', argument " "1"" of type '" "struct lib_ccx_ctx *""'"); + } + arg1 = (struct lib_ccx_ctx *)(argp1); + { + res2 = SWIG_ConvertPtr(obj1, &argp2, SWIGTYPE_p_list_head, 0 ); + if (!SWIG_IsOK(res2)) { + SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "lib_ccx_ctx_dec_ctx_head_set" "', argument " "2"" of type '" "struct list_head""'"); + } + if (!argp2) { + SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "lib_ccx_ctx_dec_ctx_head_set" "', argument " "2"" of type '" "struct list_head""'"); + } else { + arg2 = *((struct list_head *)(argp2)); + } + } + if (arg1) (arg1)->dec_ctx_head = arg2; + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_lib_ccx_ctx_dec_ctx_head_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct lib_ccx_ctx *arg1 = (struct lib_ccx_ctx *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + struct list_head result; + + if (!PyArg_ParseTuple(args,(char *)"O:lib_ccx_ctx_dec_ctx_head_get",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_lib_ccx_ctx, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "lib_ccx_ctx_dec_ctx_head_get" "', argument " "1"" of type '" "struct lib_ccx_ctx *""'"); + } + arg1 = (struct lib_ccx_ctx *)(argp1); + result = ((arg1)->dec_ctx_head); + resultobj = SWIG_NewPointerObj((struct list_head *)memcpy((struct list_head *)calloc(1,sizeof(struct list_head)),&result,sizeof(struct list_head)), SWIGTYPE_p_list_head, SWIG_POINTER_OWN | 0 ); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_lib_ccx_ctx_rawmode_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct lib_ccx_ctx *arg1 = (struct lib_ccx_ctx *) 0 ; + int arg2 ; + void *argp1 = 0 ; + int res1 = 0 ; + int val2 ; + int ecode2 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OO:lib_ccx_ctx_rawmode_set",&obj0,&obj1)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_lib_ccx_ctx, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "lib_ccx_ctx_rawmode_set" "', argument " "1"" of type '" "struct lib_ccx_ctx *""'"); + } + arg1 = (struct lib_ccx_ctx *)(argp1); + ecode2 = SWIG_AsVal_int(obj1, &val2); + if (!SWIG_IsOK(ecode2)) { + SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "lib_ccx_ctx_rawmode_set" "', argument " "2"" of type '" "int""'"); + } + arg2 = (int)(val2); + if (arg1) (arg1)->rawmode = arg2; + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_lib_ccx_ctx_rawmode_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct lib_ccx_ctx *arg1 = (struct lib_ccx_ctx *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + int result; + + if (!PyArg_ParseTuple(args,(char *)"O:lib_ccx_ctx_rawmode_get",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_lib_ccx_ctx, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "lib_ccx_ctx_rawmode_get" "', argument " "1"" of type '" "struct lib_ccx_ctx *""'"); + } + arg1 = (struct lib_ccx_ctx *)(argp1); + result = (int) ((arg1)->rawmode); + resultobj = SWIG_From_int((int)(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_lib_ccx_ctx_cc_to_stdout_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct lib_ccx_ctx *arg1 = (struct lib_ccx_ctx *) 0 ; + int arg2 ; + void *argp1 = 0 ; + int res1 = 0 ; + int val2 ; + int ecode2 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OO:lib_ccx_ctx_cc_to_stdout_set",&obj0,&obj1)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_lib_ccx_ctx, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "lib_ccx_ctx_cc_to_stdout_set" "', argument " "1"" of type '" "struct lib_ccx_ctx *""'"); + } + arg1 = (struct lib_ccx_ctx *)(argp1); + ecode2 = SWIG_AsVal_int(obj1, &val2); + if (!SWIG_IsOK(ecode2)) { + SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "lib_ccx_ctx_cc_to_stdout_set" "', argument " "2"" of type '" "int""'"); + } + arg2 = (int)(val2); + if (arg1) (arg1)->cc_to_stdout = arg2; + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_lib_ccx_ctx_cc_to_stdout_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct lib_ccx_ctx *arg1 = (struct lib_ccx_ctx *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + int result; + + if (!PyArg_ParseTuple(args,(char *)"O:lib_ccx_ctx_cc_to_stdout_get",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_lib_ccx_ctx, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "lib_ccx_ctx_cc_to_stdout_get" "', argument " "1"" of type '" "struct lib_ccx_ctx *""'"); + } + arg1 = (struct lib_ccx_ctx *)(argp1); + result = (int) ((arg1)->cc_to_stdout); + resultobj = SWIG_From_int((int)(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_lib_ccx_ctx_pes_header_to_stdout_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct lib_ccx_ctx *arg1 = (struct lib_ccx_ctx *) 0 ; + int arg2 ; + void *argp1 = 0 ; + int res1 = 0 ; + int val2 ; + int ecode2 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OO:lib_ccx_ctx_pes_header_to_stdout_set",&obj0,&obj1)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_lib_ccx_ctx, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "lib_ccx_ctx_pes_header_to_stdout_set" "', argument " "1"" of type '" "struct lib_ccx_ctx *""'"); + } + arg1 = (struct lib_ccx_ctx *)(argp1); + ecode2 = SWIG_AsVal_int(obj1, &val2); + if (!SWIG_IsOK(ecode2)) { + SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "lib_ccx_ctx_pes_header_to_stdout_set" "', argument " "2"" of type '" "int""'"); + } + arg2 = (int)(val2); + if (arg1) (arg1)->pes_header_to_stdout = arg2; + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_lib_ccx_ctx_pes_header_to_stdout_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct lib_ccx_ctx *arg1 = (struct lib_ccx_ctx *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + int result; + + if (!PyArg_ParseTuple(args,(char *)"O:lib_ccx_ctx_pes_header_to_stdout_get",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_lib_ccx_ctx, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "lib_ccx_ctx_pes_header_to_stdout_get" "', argument " "1"" of type '" "struct lib_ccx_ctx *""'"); + } + arg1 = (struct lib_ccx_ctx *)(argp1); + result = (int) ((arg1)->pes_header_to_stdout); + resultobj = SWIG_From_int((int)(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_lib_ccx_ctx_dvb_debug_traces_to_stdout_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct lib_ccx_ctx *arg1 = (struct lib_ccx_ctx *) 0 ; + int arg2 ; + void *argp1 = 0 ; + int res1 = 0 ; + int val2 ; + int ecode2 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OO:lib_ccx_ctx_dvb_debug_traces_to_stdout_set",&obj0,&obj1)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_lib_ccx_ctx, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "lib_ccx_ctx_dvb_debug_traces_to_stdout_set" "', argument " "1"" of type '" "struct lib_ccx_ctx *""'"); + } + arg1 = (struct lib_ccx_ctx *)(argp1); + ecode2 = SWIG_AsVal_int(obj1, &val2); + if (!SWIG_IsOK(ecode2)) { + SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "lib_ccx_ctx_dvb_debug_traces_to_stdout_set" "', argument " "2"" of type '" "int""'"); + } + arg2 = (int)(val2); + if (arg1) (arg1)->dvb_debug_traces_to_stdout = arg2; + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_lib_ccx_ctx_dvb_debug_traces_to_stdout_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct lib_ccx_ctx *arg1 = (struct lib_ccx_ctx *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + int result; + + if (!PyArg_ParseTuple(args,(char *)"O:lib_ccx_ctx_dvb_debug_traces_to_stdout_get",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_lib_ccx_ctx, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "lib_ccx_ctx_dvb_debug_traces_to_stdout_get" "', argument " "1"" of type '" "struct lib_ccx_ctx *""'"); + } + arg1 = (struct lib_ccx_ctx *)(argp1); + result = (int) ((arg1)->dvb_debug_traces_to_stdout); + resultobj = SWIG_From_int((int)(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_lib_ccx_ctx_ignore_pts_jumps_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct lib_ccx_ctx *arg1 = (struct lib_ccx_ctx *) 0 ; + int arg2 ; + void *argp1 = 0 ; + int res1 = 0 ; + int val2 ; + int ecode2 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OO:lib_ccx_ctx_ignore_pts_jumps_set",&obj0,&obj1)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_lib_ccx_ctx, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "lib_ccx_ctx_ignore_pts_jumps_set" "', argument " "1"" of type '" "struct lib_ccx_ctx *""'"); + } + arg1 = (struct lib_ccx_ctx *)(argp1); + ecode2 = SWIG_AsVal_int(obj1, &val2); + if (!SWIG_IsOK(ecode2)) { + SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "lib_ccx_ctx_ignore_pts_jumps_set" "', argument " "2"" of type '" "int""'"); + } + arg2 = (int)(val2); + if (arg1) (arg1)->ignore_pts_jumps = arg2; + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_lib_ccx_ctx_ignore_pts_jumps_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct lib_ccx_ctx *arg1 = (struct lib_ccx_ctx *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + int result; + + if (!PyArg_ParseTuple(args,(char *)"O:lib_ccx_ctx_ignore_pts_jumps_get",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_lib_ccx_ctx, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "lib_ccx_ctx_ignore_pts_jumps_get" "', argument " "1"" of type '" "struct lib_ccx_ctx *""'"); + } + arg1 = (struct lib_ccx_ctx *)(argp1); + result = (int) ((arg1)->ignore_pts_jumps); + resultobj = SWIG_From_int((int)(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_lib_ccx_ctx_subs_delay_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct lib_ccx_ctx *arg1 = (struct lib_ccx_ctx *) 0 ; + LLONG arg2 ; + void *argp1 = 0 ; + int res1 = 0 ; + void *argp2 ; + int res2 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OO:lib_ccx_ctx_subs_delay_set",&obj0,&obj1)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_lib_ccx_ctx, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "lib_ccx_ctx_subs_delay_set" "', argument " "1"" of type '" "struct lib_ccx_ctx *""'"); + } + arg1 = (struct lib_ccx_ctx *)(argp1); + { + res2 = SWIG_ConvertPtr(obj1, &argp2, SWIGTYPE_p_LLONG, 0 ); + if (!SWIG_IsOK(res2)) { + SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "lib_ccx_ctx_subs_delay_set" "', argument " "2"" of type '" "LLONG""'"); + } + if (!argp2) { + SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "lib_ccx_ctx_subs_delay_set" "', argument " "2"" of type '" "LLONG""'"); + } else { + arg2 = *((LLONG *)(argp2)); + } + } + if (arg1) (arg1)->subs_delay = arg2; + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_lib_ccx_ctx_subs_delay_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct lib_ccx_ctx *arg1 = (struct lib_ccx_ctx *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + LLONG result; + + if (!PyArg_ParseTuple(args,(char *)"O:lib_ccx_ctx_subs_delay_get",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_lib_ccx_ctx, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "lib_ccx_ctx_subs_delay_get" "', argument " "1"" of type '" "struct lib_ccx_ctx *""'"); + } + arg1 = (struct lib_ccx_ctx *)(argp1); + result = ((arg1)->subs_delay); + resultobj = SWIG_NewPointerObj((LLONG *)memcpy((LLONG *)calloc(1,sizeof(LLONG)),&result,sizeof(LLONG)), SWIGTYPE_p_LLONG, SWIG_POINTER_OWN | 0 ); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_lib_ccx_ctx_startcredits_displayed_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct lib_ccx_ctx *arg1 = (struct lib_ccx_ctx *) 0 ; + int arg2 ; + void *argp1 = 0 ; + int res1 = 0 ; + int val2 ; + int ecode2 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OO:lib_ccx_ctx_startcredits_displayed_set",&obj0,&obj1)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_lib_ccx_ctx, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "lib_ccx_ctx_startcredits_displayed_set" "', argument " "1"" of type '" "struct lib_ccx_ctx *""'"); + } + arg1 = (struct lib_ccx_ctx *)(argp1); + ecode2 = SWIG_AsVal_int(obj1, &val2); + if (!SWIG_IsOK(ecode2)) { + SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "lib_ccx_ctx_startcredits_displayed_set" "', argument " "2"" of type '" "int""'"); + } + arg2 = (int)(val2); + if (arg1) (arg1)->startcredits_displayed = arg2; + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_lib_ccx_ctx_startcredits_displayed_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct lib_ccx_ctx *arg1 = (struct lib_ccx_ctx *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + int result; + + if (!PyArg_ParseTuple(args,(char *)"O:lib_ccx_ctx_startcredits_displayed_get",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_lib_ccx_ctx, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "lib_ccx_ctx_startcredits_displayed_get" "', argument " "1"" of type '" "struct lib_ccx_ctx *""'"); + } + arg1 = (struct lib_ccx_ctx *)(argp1); + result = (int) ((arg1)->startcredits_displayed); + resultobj = SWIG_From_int((int)(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_lib_ccx_ctx_end_credits_displayed_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct lib_ccx_ctx *arg1 = (struct lib_ccx_ctx *) 0 ; + int arg2 ; + void *argp1 = 0 ; + int res1 = 0 ; + int val2 ; + int ecode2 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OO:lib_ccx_ctx_end_credits_displayed_set",&obj0,&obj1)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_lib_ccx_ctx, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "lib_ccx_ctx_end_credits_displayed_set" "', argument " "1"" of type '" "struct lib_ccx_ctx *""'"); + } + arg1 = (struct lib_ccx_ctx *)(argp1); + ecode2 = SWIG_AsVal_int(obj1, &val2); + if (!SWIG_IsOK(ecode2)) { + SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "lib_ccx_ctx_end_credits_displayed_set" "', argument " "2"" of type '" "int""'"); + } + arg2 = (int)(val2); + if (arg1) (arg1)->end_credits_displayed = arg2; + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_lib_ccx_ctx_end_credits_displayed_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct lib_ccx_ctx *arg1 = (struct lib_ccx_ctx *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + int result; + + if (!PyArg_ParseTuple(args,(char *)"O:lib_ccx_ctx_end_credits_displayed_get",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_lib_ccx_ctx, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "lib_ccx_ctx_end_credits_displayed_get" "', argument " "1"" of type '" "struct lib_ccx_ctx *""'"); + } + arg1 = (struct lib_ccx_ctx *)(argp1); + result = (int) ((arg1)->end_credits_displayed); + resultobj = SWIG_From_int((int)(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_lib_ccx_ctx_last_displayed_subs_ms_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct lib_ccx_ctx *arg1 = (struct lib_ccx_ctx *) 0 ; + LLONG arg2 ; + void *argp1 = 0 ; + int res1 = 0 ; + void *argp2 ; + int res2 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OO:lib_ccx_ctx_last_displayed_subs_ms_set",&obj0,&obj1)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_lib_ccx_ctx, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "lib_ccx_ctx_last_displayed_subs_ms_set" "', argument " "1"" of type '" "struct lib_ccx_ctx *""'"); + } + arg1 = (struct lib_ccx_ctx *)(argp1); + { + res2 = SWIG_ConvertPtr(obj1, &argp2, SWIGTYPE_p_LLONG, 0 ); + if (!SWIG_IsOK(res2)) { + SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "lib_ccx_ctx_last_displayed_subs_ms_set" "', argument " "2"" of type '" "LLONG""'"); + } + if (!argp2) { + SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "lib_ccx_ctx_last_displayed_subs_ms_set" "', argument " "2"" of type '" "LLONG""'"); + } else { + arg2 = *((LLONG *)(argp2)); + } + } + if (arg1) (arg1)->last_displayed_subs_ms = arg2; + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_lib_ccx_ctx_last_displayed_subs_ms_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct lib_ccx_ctx *arg1 = (struct lib_ccx_ctx *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + LLONG result; + + if (!PyArg_ParseTuple(args,(char *)"O:lib_ccx_ctx_last_displayed_subs_ms_get",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_lib_ccx_ctx, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "lib_ccx_ctx_last_displayed_subs_ms_get" "', argument " "1"" of type '" "struct lib_ccx_ctx *""'"); + } + arg1 = (struct lib_ccx_ctx *)(argp1); + result = ((arg1)->last_displayed_subs_ms); + resultobj = SWIG_NewPointerObj((LLONG *)memcpy((LLONG *)calloc(1,sizeof(LLONG)),&result,sizeof(LLONG)), SWIGTYPE_p_LLONG, SWIG_POINTER_OWN | 0 ); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_lib_ccx_ctx_screens_to_process_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct lib_ccx_ctx *arg1 = (struct lib_ccx_ctx *) 0 ; + LLONG arg2 ; + void *argp1 = 0 ; + int res1 = 0 ; + void *argp2 ; + int res2 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OO:lib_ccx_ctx_screens_to_process_set",&obj0,&obj1)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_lib_ccx_ctx, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "lib_ccx_ctx_screens_to_process_set" "', argument " "1"" of type '" "struct lib_ccx_ctx *""'"); + } + arg1 = (struct lib_ccx_ctx *)(argp1); + { + res2 = SWIG_ConvertPtr(obj1, &argp2, SWIGTYPE_p_LLONG, 0 ); + if (!SWIG_IsOK(res2)) { + SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "lib_ccx_ctx_screens_to_process_set" "', argument " "2"" of type '" "LLONG""'"); + } + if (!argp2) { + SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "lib_ccx_ctx_screens_to_process_set" "', argument " "2"" of type '" "LLONG""'"); + } else { + arg2 = *((LLONG *)(argp2)); + } + } + if (arg1) (arg1)->screens_to_process = arg2; + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_lib_ccx_ctx_screens_to_process_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct lib_ccx_ctx *arg1 = (struct lib_ccx_ctx *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + LLONG result; + + if (!PyArg_ParseTuple(args,(char *)"O:lib_ccx_ctx_screens_to_process_get",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_lib_ccx_ctx, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "lib_ccx_ctx_screens_to_process_get" "', argument " "1"" of type '" "struct lib_ccx_ctx *""'"); + } + arg1 = (struct lib_ccx_ctx *)(argp1); + result = ((arg1)->screens_to_process); + resultobj = SWIG_NewPointerObj((LLONG *)memcpy((LLONG *)calloc(1,sizeof(LLONG)),&result,sizeof(LLONG)), SWIGTYPE_p_LLONG, SWIG_POINTER_OWN | 0 ); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_lib_ccx_ctx_basefilename_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct lib_ccx_ctx *arg1 = (struct lib_ccx_ctx *) 0 ; + char *arg2 = (char *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + int res2 ; + char *buf2 = 0 ; + int alloc2 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OO:lib_ccx_ctx_basefilename_set",&obj0,&obj1)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_lib_ccx_ctx, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "lib_ccx_ctx_basefilename_set" "', argument " "1"" of type '" "struct lib_ccx_ctx *""'"); + } + arg1 = (struct lib_ccx_ctx *)(argp1); + res2 = SWIG_AsCharPtrAndSize(obj1, &buf2, NULL, &alloc2); + if (!SWIG_IsOK(res2)) { + SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "lib_ccx_ctx_basefilename_set" "', argument " "2"" of type '" "char *""'"); + } + arg2 = (char *)(buf2); + if (arg1->basefilename) free((char*)arg1->basefilename); + if (arg2) { + size_t size = strlen((const char *)(arg2)) + 1; + arg1->basefilename = (char *)(char *)memcpy(malloc((size)*sizeof(char)), (const char *)(arg2), sizeof(char)*(size)); + } else { + arg1->basefilename = 0; + } + resultobj = SWIG_Py_Void(); + if (alloc2 == SWIG_NEWOBJ) free((char*)buf2); + return resultobj; +fail: + if (alloc2 == SWIG_NEWOBJ) free((char*)buf2); + return NULL; +} + + +SWIGINTERN PyObject *_wrap_lib_ccx_ctx_basefilename_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct lib_ccx_ctx *arg1 = (struct lib_ccx_ctx *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + char *result = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"O:lib_ccx_ctx_basefilename_get",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_lib_ccx_ctx, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "lib_ccx_ctx_basefilename_get" "', argument " "1"" of type '" "struct lib_ccx_ctx *""'"); + } + arg1 = (struct lib_ccx_ctx *)(argp1); + result = (char *) ((arg1)->basefilename); + resultobj = SWIG_FromCharPtr((const char *)result); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_lib_ccx_ctx_extension_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct lib_ccx_ctx *arg1 = (struct lib_ccx_ctx *) 0 ; + char *arg2 = (char *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + int res2 ; + char *buf2 = 0 ; + int alloc2 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OO:lib_ccx_ctx_extension_set",&obj0,&obj1)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_lib_ccx_ctx, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "lib_ccx_ctx_extension_set" "', argument " "1"" of type '" "struct lib_ccx_ctx *""'"); + } + arg1 = (struct lib_ccx_ctx *)(argp1); + res2 = SWIG_AsCharPtrAndSize(obj1, &buf2, NULL, &alloc2); + if (!SWIG_IsOK(res2)) { + SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "lib_ccx_ctx_extension_set" "', argument " "2"" of type '" "char const *""'"); + } + arg2 = (char *)(buf2); + if (arg2) { + size_t size = strlen((const char *)((const char *)(arg2))) + 1; + arg1->extension = (char const *)(char *)memcpy(malloc((size)*sizeof(char)), arg2, sizeof(char)*(size)); + } else { + arg1->extension = 0; + } + resultobj = SWIG_Py_Void(); + if (alloc2 == SWIG_NEWOBJ) free((char*)buf2); + return resultobj; +fail: + if (alloc2 == SWIG_NEWOBJ) free((char*)buf2); + return NULL; +} + + +SWIGINTERN PyObject *_wrap_lib_ccx_ctx_extension_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct lib_ccx_ctx *arg1 = (struct lib_ccx_ctx *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + char *result = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"O:lib_ccx_ctx_extension_get",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_lib_ccx_ctx, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "lib_ccx_ctx_extension_get" "', argument " "1"" of type '" "struct lib_ccx_ctx *""'"); + } + arg1 = (struct lib_ccx_ctx *)(argp1); + result = (char *) ((arg1)->extension); + resultobj = SWIG_FromCharPtr((const char *)result); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_lib_ccx_ctx_current_file_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct lib_ccx_ctx *arg1 = (struct lib_ccx_ctx *) 0 ; + int arg2 ; + void *argp1 = 0 ; + int res1 = 0 ; + int val2 ; + int ecode2 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OO:lib_ccx_ctx_current_file_set",&obj0,&obj1)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_lib_ccx_ctx, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "lib_ccx_ctx_current_file_set" "', argument " "1"" of type '" "struct lib_ccx_ctx *""'"); + } + arg1 = (struct lib_ccx_ctx *)(argp1); + ecode2 = SWIG_AsVal_int(obj1, &val2); + if (!SWIG_IsOK(ecode2)) { + SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "lib_ccx_ctx_current_file_set" "', argument " "2"" of type '" "int""'"); + } + arg2 = (int)(val2); + if (arg1) (arg1)->current_file = arg2; + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_lib_ccx_ctx_current_file_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct lib_ccx_ctx *arg1 = (struct lib_ccx_ctx *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + int result; + + if (!PyArg_ParseTuple(args,(char *)"O:lib_ccx_ctx_current_file_get",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_lib_ccx_ctx, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "lib_ccx_ctx_current_file_get" "', argument " "1"" of type '" "struct lib_ccx_ctx *""'"); + } + arg1 = (struct lib_ccx_ctx *)(argp1); + result = (int) ((arg1)->current_file); + resultobj = SWIG_From_int((int)(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_lib_ccx_ctx_inputfile_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct lib_ccx_ctx *arg1 = (struct lib_ccx_ctx *) 0 ; + char **arg2 = (char **) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + void *argp2 = 0 ; + int res2 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OO:lib_ccx_ctx_inputfile_set",&obj0,&obj1)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_lib_ccx_ctx, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "lib_ccx_ctx_inputfile_set" "', argument " "1"" of type '" "struct lib_ccx_ctx *""'"); + } + arg1 = (struct lib_ccx_ctx *)(argp1); + res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_p_char, 0 | 0 ); + if (!SWIG_IsOK(res2)) { + SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "lib_ccx_ctx_inputfile_set" "', argument " "2"" of type '" "char **""'"); + } + arg2 = (char **)(argp2); + if (arg1) (arg1)->inputfile = arg2; + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_lib_ccx_ctx_inputfile_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct lib_ccx_ctx *arg1 = (struct lib_ccx_ctx *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + char **result = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"O:lib_ccx_ctx_inputfile_get",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_lib_ccx_ctx, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "lib_ccx_ctx_inputfile_get" "', argument " "1"" of type '" "struct lib_ccx_ctx *""'"); + } + arg1 = (struct lib_ccx_ctx *)(argp1); + result = (char **) ((arg1)->inputfile); + resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_p_char, 0 | 0 ); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_lib_ccx_ctx_num_input_files_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct lib_ccx_ctx *arg1 = (struct lib_ccx_ctx *) 0 ; + int arg2 ; + void *argp1 = 0 ; + int res1 = 0 ; + int val2 ; + int ecode2 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OO:lib_ccx_ctx_num_input_files_set",&obj0,&obj1)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_lib_ccx_ctx, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "lib_ccx_ctx_num_input_files_set" "', argument " "1"" of type '" "struct lib_ccx_ctx *""'"); + } + arg1 = (struct lib_ccx_ctx *)(argp1); + ecode2 = SWIG_AsVal_int(obj1, &val2); + if (!SWIG_IsOK(ecode2)) { + SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "lib_ccx_ctx_num_input_files_set" "', argument " "2"" of type '" "int""'"); + } + arg2 = (int)(val2); + if (arg1) (arg1)->num_input_files = arg2; + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_lib_ccx_ctx_num_input_files_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct lib_ccx_ctx *arg1 = (struct lib_ccx_ctx *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + int result; + + if (!PyArg_ParseTuple(args,(char *)"O:lib_ccx_ctx_num_input_files_get",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_lib_ccx_ctx, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "lib_ccx_ctx_num_input_files_get" "', argument " "1"" of type '" "struct lib_ccx_ctx *""'"); + } + arg1 = (struct lib_ccx_ctx *)(argp1); + result = (int) ((arg1)->num_input_files); + resultobj = SWIG_From_int((int)(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_lib_ccx_ctx_teletext_warning_shown_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct lib_ccx_ctx *arg1 = (struct lib_ccx_ctx *) 0 ; + unsigned int arg2 ; + void *argp1 = 0 ; + int res1 = 0 ; + unsigned int val2 ; + int ecode2 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OO:lib_ccx_ctx_teletext_warning_shown_set",&obj0,&obj1)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_lib_ccx_ctx, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "lib_ccx_ctx_teletext_warning_shown_set" "', argument " "1"" of type '" "struct lib_ccx_ctx *""'"); + } + arg1 = (struct lib_ccx_ctx *)(argp1); + ecode2 = SWIG_AsVal_unsigned_SS_int(obj1, &val2); + if (!SWIG_IsOK(ecode2)) { + SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "lib_ccx_ctx_teletext_warning_shown_set" "', argument " "2"" of type '" "unsigned int""'"); + } + arg2 = (unsigned int)(val2); + if (arg1) (arg1)->teletext_warning_shown = arg2; + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_lib_ccx_ctx_teletext_warning_shown_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct lib_ccx_ctx *arg1 = (struct lib_ccx_ctx *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + unsigned int result; + + if (!PyArg_ParseTuple(args,(char *)"O:lib_ccx_ctx_teletext_warning_shown_get",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_lib_ccx_ctx, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "lib_ccx_ctx_teletext_warning_shown_get" "', argument " "1"" of type '" "struct lib_ccx_ctx *""'"); + } + arg1 = (struct lib_ccx_ctx *)(argp1); + result = (unsigned int) ((arg1)->teletext_warning_shown); + resultobj = SWIG_From_unsigned_SS_int((unsigned int)(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_lib_ccx_ctx_epg_inited_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct lib_ccx_ctx *arg1 = (struct lib_ccx_ctx *) 0 ; + int arg2 ; + void *argp1 = 0 ; + int res1 = 0 ; + int val2 ; + int ecode2 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OO:lib_ccx_ctx_epg_inited_set",&obj0,&obj1)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_lib_ccx_ctx, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "lib_ccx_ctx_epg_inited_set" "', argument " "1"" of type '" "struct lib_ccx_ctx *""'"); + } + arg1 = (struct lib_ccx_ctx *)(argp1); + ecode2 = SWIG_AsVal_int(obj1, &val2); + if (!SWIG_IsOK(ecode2)) { + SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "lib_ccx_ctx_epg_inited_set" "', argument " "2"" of type '" "int""'"); + } + arg2 = (int)(val2); + if (arg1) (arg1)->epg_inited = arg2; + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_lib_ccx_ctx_epg_inited_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct lib_ccx_ctx *arg1 = (struct lib_ccx_ctx *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + int result; + + if (!PyArg_ParseTuple(args,(char *)"O:lib_ccx_ctx_epg_inited_get",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_lib_ccx_ctx, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "lib_ccx_ctx_epg_inited_get" "', argument " "1"" of type '" "struct lib_ccx_ctx *""'"); + } + arg1 = (struct lib_ccx_ctx *)(argp1); + result = (int) ((arg1)->epg_inited); + resultobj = SWIG_From_int((int)(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_lib_ccx_ctx_epg_buffers_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct lib_ccx_ctx *arg1 = (struct lib_ccx_ctx *) 0 ; + struct PSI_buffer *arg2 = (struct PSI_buffer *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + void *argp2 = 0 ; + int res2 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OO:lib_ccx_ctx_epg_buffers_set",&obj0,&obj1)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_lib_ccx_ctx, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "lib_ccx_ctx_epg_buffers_set" "', argument " "1"" of type '" "struct lib_ccx_ctx *""'"); + } + arg1 = (struct lib_ccx_ctx *)(argp1); + res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_PSI_buffer, SWIG_POINTER_DISOWN | 0 ); + if (!SWIG_IsOK(res2)) { + SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "lib_ccx_ctx_epg_buffers_set" "', argument " "2"" of type '" "struct PSI_buffer *""'"); + } + arg2 = (struct PSI_buffer *)(argp2); + if (arg1) (arg1)->epg_buffers = arg2; + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_lib_ccx_ctx_epg_buffers_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct lib_ccx_ctx *arg1 = (struct lib_ccx_ctx *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + struct PSI_buffer *result = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"O:lib_ccx_ctx_epg_buffers_get",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_lib_ccx_ctx, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "lib_ccx_ctx_epg_buffers_get" "', argument " "1"" of type '" "struct lib_ccx_ctx *""'"); + } + arg1 = (struct lib_ccx_ctx *)(argp1); + result = (struct PSI_buffer *) ((arg1)->epg_buffers); + resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_PSI_buffer, 0 | 0 ); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_lib_ccx_ctx_eit_programs_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct lib_ccx_ctx *arg1 = (struct lib_ccx_ctx *) 0 ; + struct EIT_program *arg2 = (struct EIT_program *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + void *argp2 = 0 ; + int res2 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OO:lib_ccx_ctx_eit_programs_set",&obj0,&obj1)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_lib_ccx_ctx, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "lib_ccx_ctx_eit_programs_set" "', argument " "1"" of type '" "struct lib_ccx_ctx *""'"); + } + arg1 = (struct lib_ccx_ctx *)(argp1); + res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_EIT_program, SWIG_POINTER_DISOWN | 0 ); + if (!SWIG_IsOK(res2)) { + SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "lib_ccx_ctx_eit_programs_set" "', argument " "2"" of type '" "struct EIT_program *""'"); + } + arg2 = (struct EIT_program *)(argp2); + if (arg1) (arg1)->eit_programs = arg2; + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_lib_ccx_ctx_eit_programs_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct lib_ccx_ctx *arg1 = (struct lib_ccx_ctx *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + struct EIT_program *result = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"O:lib_ccx_ctx_eit_programs_get",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_lib_ccx_ctx, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "lib_ccx_ctx_eit_programs_get" "', argument " "1"" of type '" "struct lib_ccx_ctx *""'"); + } + arg1 = (struct lib_ccx_ctx *)(argp1); + result = (struct EIT_program *) ((arg1)->eit_programs); + resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_EIT_program, 0 | 0 ); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_lib_ccx_ctx_eit_current_events_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct lib_ccx_ctx *arg1 = (struct lib_ccx_ctx *) 0 ; + int32_t *arg2 = (int32_t *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + void *argp2 = 0 ; + int res2 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OO:lib_ccx_ctx_eit_current_events_set",&obj0,&obj1)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_lib_ccx_ctx, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "lib_ccx_ctx_eit_current_events_set" "', argument " "1"" of type '" "struct lib_ccx_ctx *""'"); + } + arg1 = (struct lib_ccx_ctx *)(argp1); + res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_int32_t, SWIG_POINTER_DISOWN | 0 ); + if (!SWIG_IsOK(res2)) { + SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "lib_ccx_ctx_eit_current_events_set" "', argument " "2"" of type '" "int32_t *""'"); + } + arg2 = (int32_t *)(argp2); + if (arg1) (arg1)->eit_current_events = arg2; + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_lib_ccx_ctx_eit_current_events_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct lib_ccx_ctx *arg1 = (struct lib_ccx_ctx *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + int32_t *result = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"O:lib_ccx_ctx_eit_current_events_get",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_lib_ccx_ctx, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "lib_ccx_ctx_eit_current_events_get" "', argument " "1"" of type '" "struct lib_ccx_ctx *""'"); + } + arg1 = (struct lib_ccx_ctx *)(argp1); + result = (int32_t *) ((arg1)->eit_current_events); + resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_int32_t, 0 | 0 ); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_lib_ccx_ctx_ATSC_source_pg_map_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct lib_ccx_ctx *arg1 = (struct lib_ccx_ctx *) 0 ; + int16_t *arg2 = (int16_t *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + void *argp2 = 0 ; + int res2 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OO:lib_ccx_ctx_ATSC_source_pg_map_set",&obj0,&obj1)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_lib_ccx_ctx, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "lib_ccx_ctx_ATSC_source_pg_map_set" "', argument " "1"" of type '" "struct lib_ccx_ctx *""'"); + } + arg1 = (struct lib_ccx_ctx *)(argp1); + res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_int16_t, SWIG_POINTER_DISOWN | 0 ); + if (!SWIG_IsOK(res2)) { + SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "lib_ccx_ctx_ATSC_source_pg_map_set" "', argument " "2"" of type '" "int16_t *""'"); + } + arg2 = (int16_t *)(argp2); + if (arg1) (arg1)->ATSC_source_pg_map = arg2; + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_lib_ccx_ctx_ATSC_source_pg_map_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct lib_ccx_ctx *arg1 = (struct lib_ccx_ctx *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + int16_t *result = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"O:lib_ccx_ctx_ATSC_source_pg_map_get",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_lib_ccx_ctx, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "lib_ccx_ctx_ATSC_source_pg_map_get" "', argument " "1"" of type '" "struct lib_ccx_ctx *""'"); + } + arg1 = (struct lib_ccx_ctx *)(argp1); + result = (int16_t *) ((arg1)->ATSC_source_pg_map); + resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_int16_t, 0 | 0 ); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_lib_ccx_ctx_epg_last_output_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct lib_ccx_ctx *arg1 = (struct lib_ccx_ctx *) 0 ; + int arg2 ; + void *argp1 = 0 ; + int res1 = 0 ; + int val2 ; + int ecode2 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OO:lib_ccx_ctx_epg_last_output_set",&obj0,&obj1)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_lib_ccx_ctx, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "lib_ccx_ctx_epg_last_output_set" "', argument " "1"" of type '" "struct lib_ccx_ctx *""'"); + } + arg1 = (struct lib_ccx_ctx *)(argp1); + ecode2 = SWIG_AsVal_int(obj1, &val2); + if (!SWIG_IsOK(ecode2)) { + SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "lib_ccx_ctx_epg_last_output_set" "', argument " "2"" of type '" "int""'"); + } + arg2 = (int)(val2); + if (arg1) (arg1)->epg_last_output = arg2; + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_lib_ccx_ctx_epg_last_output_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct lib_ccx_ctx *arg1 = (struct lib_ccx_ctx *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + int result; + + if (!PyArg_ParseTuple(args,(char *)"O:lib_ccx_ctx_epg_last_output_get",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_lib_ccx_ctx, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "lib_ccx_ctx_epg_last_output_get" "', argument " "1"" of type '" "struct lib_ccx_ctx *""'"); + } + arg1 = (struct lib_ccx_ctx *)(argp1); + result = (int) ((arg1)->epg_last_output); + resultobj = SWIG_From_int((int)(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_lib_ccx_ctx_epg_last_live_output_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct lib_ccx_ctx *arg1 = (struct lib_ccx_ctx *) 0 ; + int arg2 ; + void *argp1 = 0 ; + int res1 = 0 ; + int val2 ; + int ecode2 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OO:lib_ccx_ctx_epg_last_live_output_set",&obj0,&obj1)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_lib_ccx_ctx, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "lib_ccx_ctx_epg_last_live_output_set" "', argument " "1"" of type '" "struct lib_ccx_ctx *""'"); + } + arg1 = (struct lib_ccx_ctx *)(argp1); + ecode2 = SWIG_AsVal_int(obj1, &val2); + if (!SWIG_IsOK(ecode2)) { + SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "lib_ccx_ctx_epg_last_live_output_set" "', argument " "2"" of type '" "int""'"); + } + arg2 = (int)(val2); + if (arg1) (arg1)->epg_last_live_output = arg2; + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_lib_ccx_ctx_epg_last_live_output_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct lib_ccx_ctx *arg1 = (struct lib_ccx_ctx *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + int result; + + if (!PyArg_ParseTuple(args,(char *)"O:lib_ccx_ctx_epg_last_live_output_get",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_lib_ccx_ctx, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "lib_ccx_ctx_epg_last_live_output_get" "', argument " "1"" of type '" "struct lib_ccx_ctx *""'"); + } + arg1 = (struct lib_ccx_ctx *)(argp1); + result = (int) ((arg1)->epg_last_live_output); + resultobj = SWIG_From_int((int)(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_lib_ccx_ctx_freport_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct lib_ccx_ctx *arg1 = (struct lib_ccx_ctx *) 0 ; + struct file_report *arg2 = (struct file_report *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + void *argp2 = 0 ; + int res2 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OO:lib_ccx_ctx_freport_set",&obj0,&obj1)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_lib_ccx_ctx, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "lib_ccx_ctx_freport_set" "', argument " "1"" of type '" "struct lib_ccx_ctx *""'"); + } + arg1 = (struct lib_ccx_ctx *)(argp1); + res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_file_report, 0 | 0 ); + if (!SWIG_IsOK(res2)) { + SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "lib_ccx_ctx_freport_set" "', argument " "2"" of type '" "struct file_report *""'"); + } + arg2 = (struct file_report *)(argp2); + if (arg1) (arg1)->freport = *arg2; + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_lib_ccx_ctx_freport_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct lib_ccx_ctx *arg1 = (struct lib_ccx_ctx *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + struct file_report *result = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"O:lib_ccx_ctx_freport_get",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_lib_ccx_ctx, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "lib_ccx_ctx_freport_get" "', argument " "1"" of type '" "struct lib_ccx_ctx *""'"); + } + arg1 = (struct lib_ccx_ctx *)(argp1); + result = (struct file_report *)& ((arg1)->freport); + resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_file_report, 0 | 0 ); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_lib_ccx_ctx_hauppauge_mode_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct lib_ccx_ctx *arg1 = (struct lib_ccx_ctx *) 0 ; + unsigned int arg2 ; + void *argp1 = 0 ; + int res1 = 0 ; + unsigned int val2 ; + int ecode2 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OO:lib_ccx_ctx_hauppauge_mode_set",&obj0,&obj1)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_lib_ccx_ctx, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "lib_ccx_ctx_hauppauge_mode_set" "', argument " "1"" of type '" "struct lib_ccx_ctx *""'"); + } + arg1 = (struct lib_ccx_ctx *)(argp1); + ecode2 = SWIG_AsVal_unsigned_SS_int(obj1, &val2); + if (!SWIG_IsOK(ecode2)) { + SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "lib_ccx_ctx_hauppauge_mode_set" "', argument " "2"" of type '" "unsigned int""'"); + } + arg2 = (unsigned int)(val2); + if (arg1) (arg1)->hauppauge_mode = arg2; + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_lib_ccx_ctx_hauppauge_mode_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct lib_ccx_ctx *arg1 = (struct lib_ccx_ctx *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + unsigned int result; + + if (!PyArg_ParseTuple(args,(char *)"O:lib_ccx_ctx_hauppauge_mode_get",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_lib_ccx_ctx, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "lib_ccx_ctx_hauppauge_mode_get" "', argument " "1"" of type '" "struct lib_ccx_ctx *""'"); + } + arg1 = (struct lib_ccx_ctx *)(argp1); + result = (unsigned int) ((arg1)->hauppauge_mode); + resultobj = SWIG_From_unsigned_SS_int((unsigned int)(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_lib_ccx_ctx_live_stream_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct lib_ccx_ctx *arg1 = (struct lib_ccx_ctx *) 0 ; + int arg2 ; + void *argp1 = 0 ; + int res1 = 0 ; + int val2 ; + int ecode2 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OO:lib_ccx_ctx_live_stream_set",&obj0,&obj1)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_lib_ccx_ctx, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "lib_ccx_ctx_live_stream_set" "', argument " "1"" of type '" "struct lib_ccx_ctx *""'"); + } + arg1 = (struct lib_ccx_ctx *)(argp1); + ecode2 = SWIG_AsVal_int(obj1, &val2); + if (!SWIG_IsOK(ecode2)) { + SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "lib_ccx_ctx_live_stream_set" "', argument " "2"" of type '" "int""'"); + } + arg2 = (int)(val2); + if (arg1) (arg1)->live_stream = arg2; + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_lib_ccx_ctx_live_stream_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct lib_ccx_ctx *arg1 = (struct lib_ccx_ctx *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + int result; + + if (!PyArg_ParseTuple(args,(char *)"O:lib_ccx_ctx_live_stream_get",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_lib_ccx_ctx, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "lib_ccx_ctx_live_stream_get" "', argument " "1"" of type '" "struct lib_ccx_ctx *""'"); + } + arg1 = (struct lib_ccx_ctx *)(argp1); + result = (int) ((arg1)->live_stream); + resultobj = SWIG_From_int((int)(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_lib_ccx_ctx_binary_concat_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct lib_ccx_ctx *arg1 = (struct lib_ccx_ctx *) 0 ; + int arg2 ; + void *argp1 = 0 ; + int res1 = 0 ; + int val2 ; + int ecode2 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OO:lib_ccx_ctx_binary_concat_set",&obj0,&obj1)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_lib_ccx_ctx, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "lib_ccx_ctx_binary_concat_set" "', argument " "1"" of type '" "struct lib_ccx_ctx *""'"); + } + arg1 = (struct lib_ccx_ctx *)(argp1); + ecode2 = SWIG_AsVal_int(obj1, &val2); + if (!SWIG_IsOK(ecode2)) { + SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "lib_ccx_ctx_binary_concat_set" "', argument " "2"" of type '" "int""'"); + } + arg2 = (int)(val2); + if (arg1) (arg1)->binary_concat = arg2; + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_lib_ccx_ctx_binary_concat_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct lib_ccx_ctx *arg1 = (struct lib_ccx_ctx *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + int result; + + if (!PyArg_ParseTuple(args,(char *)"O:lib_ccx_ctx_binary_concat_get",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_lib_ccx_ctx, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "lib_ccx_ctx_binary_concat_get" "', argument " "1"" of type '" "struct lib_ccx_ctx *""'"); + } + arg1 = (struct lib_ccx_ctx *)(argp1); + result = (int) ((arg1)->binary_concat); + resultobj = SWIG_From_int((int)(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_lib_ccx_ctx_multiprogram_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct lib_ccx_ctx *arg1 = (struct lib_ccx_ctx *) 0 ; + int arg2 ; + void *argp1 = 0 ; + int res1 = 0 ; + int val2 ; + int ecode2 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OO:lib_ccx_ctx_multiprogram_set",&obj0,&obj1)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_lib_ccx_ctx, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "lib_ccx_ctx_multiprogram_set" "', argument " "1"" of type '" "struct lib_ccx_ctx *""'"); + } + arg1 = (struct lib_ccx_ctx *)(argp1); + ecode2 = SWIG_AsVal_int(obj1, &val2); + if (!SWIG_IsOK(ecode2)) { + SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "lib_ccx_ctx_multiprogram_set" "', argument " "2"" of type '" "int""'"); + } + arg2 = (int)(val2); + if (arg1) (arg1)->multiprogram = arg2; + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_lib_ccx_ctx_multiprogram_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct lib_ccx_ctx *arg1 = (struct lib_ccx_ctx *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + int result; + + if (!PyArg_ParseTuple(args,(char *)"O:lib_ccx_ctx_multiprogram_get",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_lib_ccx_ctx, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "lib_ccx_ctx_multiprogram_get" "', argument " "1"" of type '" "struct lib_ccx_ctx *""'"); + } + arg1 = (struct lib_ccx_ctx *)(argp1); + result = (int) ((arg1)->multiprogram); + resultobj = SWIG_From_int((int)(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_lib_ccx_ctx_write_format_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct lib_ccx_ctx *arg1 = (struct lib_ccx_ctx *) 0 ; + enum ccx_output_format arg2 ; + void *argp1 = 0 ; + int res1 = 0 ; + int val2 ; + int ecode2 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OO:lib_ccx_ctx_write_format_set",&obj0,&obj1)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_lib_ccx_ctx, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "lib_ccx_ctx_write_format_set" "', argument " "1"" of type '" "struct lib_ccx_ctx *""'"); + } + arg1 = (struct lib_ccx_ctx *)(argp1); + ecode2 = SWIG_AsVal_int(obj1, &val2); + if (!SWIG_IsOK(ecode2)) { + SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "lib_ccx_ctx_write_format_set" "', argument " "2"" of type '" "enum ccx_output_format""'"); + } + arg2 = (enum ccx_output_format)(val2); + if (arg1) (arg1)->write_format = arg2; + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_lib_ccx_ctx_write_format_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct lib_ccx_ctx *arg1 = (struct lib_ccx_ctx *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + enum ccx_output_format result; + + if (!PyArg_ParseTuple(args,(char *)"O:lib_ccx_ctx_write_format_get",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_lib_ccx_ctx, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "lib_ccx_ctx_write_format_get" "', argument " "1"" of type '" "struct lib_ccx_ctx *""'"); + } + arg1 = (struct lib_ccx_ctx *)(argp1); + result = (enum ccx_output_format) ((arg1)->write_format); + resultobj = SWIG_From_int((int)(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_lib_ccx_ctx_demux_ctx_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct lib_ccx_ctx *arg1 = (struct lib_ccx_ctx *) 0 ; + struct ccx_demuxer *arg2 = (struct ccx_demuxer *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + void *argp2 = 0 ; + int res2 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OO:lib_ccx_ctx_demux_ctx_set",&obj0,&obj1)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_lib_ccx_ctx, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "lib_ccx_ctx_demux_ctx_set" "', argument " "1"" of type '" "struct lib_ccx_ctx *""'"); + } + arg1 = (struct lib_ccx_ctx *)(argp1); + res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_ccx_demuxer, SWIG_POINTER_DISOWN | 0 ); + if (!SWIG_IsOK(res2)) { + SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "lib_ccx_ctx_demux_ctx_set" "', argument " "2"" of type '" "struct ccx_demuxer *""'"); + } + arg2 = (struct ccx_demuxer *)(argp2); + if (arg1) (arg1)->demux_ctx = arg2; + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_lib_ccx_ctx_demux_ctx_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct lib_ccx_ctx *arg1 = (struct lib_ccx_ctx *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + struct ccx_demuxer *result = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"O:lib_ccx_ctx_demux_ctx_get",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_lib_ccx_ctx, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "lib_ccx_ctx_demux_ctx_get" "', argument " "1"" of type '" "struct lib_ccx_ctx *""'"); + } + arg1 = (struct lib_ccx_ctx *)(argp1); + result = (struct ccx_demuxer *) ((arg1)->demux_ctx); + resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_ccx_demuxer, 0 | 0 ); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_lib_ccx_ctx_enc_ctx_head_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct lib_ccx_ctx *arg1 = (struct lib_ccx_ctx *) 0 ; + struct list_head arg2 ; + void *argp1 = 0 ; + int res1 = 0 ; + void *argp2 ; + int res2 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OO:lib_ccx_ctx_enc_ctx_head_set",&obj0,&obj1)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_lib_ccx_ctx, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "lib_ccx_ctx_enc_ctx_head_set" "', argument " "1"" of type '" "struct lib_ccx_ctx *""'"); + } + arg1 = (struct lib_ccx_ctx *)(argp1); + { + res2 = SWIG_ConvertPtr(obj1, &argp2, SWIGTYPE_p_list_head, 0 ); + if (!SWIG_IsOK(res2)) { + SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "lib_ccx_ctx_enc_ctx_head_set" "', argument " "2"" of type '" "struct list_head""'"); + } + if (!argp2) { + SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "lib_ccx_ctx_enc_ctx_head_set" "', argument " "2"" of type '" "struct list_head""'"); + } else { + arg2 = *((struct list_head *)(argp2)); + } + } + if (arg1) (arg1)->enc_ctx_head = arg2; + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_lib_ccx_ctx_enc_ctx_head_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct lib_ccx_ctx *arg1 = (struct lib_ccx_ctx *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + struct list_head result; + + if (!PyArg_ParseTuple(args,(char *)"O:lib_ccx_ctx_enc_ctx_head_get",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_lib_ccx_ctx, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "lib_ccx_ctx_enc_ctx_head_get" "', argument " "1"" of type '" "struct lib_ccx_ctx *""'"); + } + arg1 = (struct lib_ccx_ctx *)(argp1); + result = ((arg1)->enc_ctx_head); + resultobj = SWIG_NewPointerObj((struct list_head *)memcpy((struct list_head *)calloc(1,sizeof(struct list_head)),&result,sizeof(struct list_head)), SWIGTYPE_p_list_head, SWIG_POINTER_OWN | 0 ); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_lib_ccx_ctx_mp4_cfg_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct lib_ccx_ctx *arg1 = (struct lib_ccx_ctx *) 0 ; + struct ccx_s_mp4Cfg *arg2 = (struct ccx_s_mp4Cfg *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + void *argp2 = 0 ; + int res2 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OO:lib_ccx_ctx_mp4_cfg_set",&obj0,&obj1)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_lib_ccx_ctx, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "lib_ccx_ctx_mp4_cfg_set" "', argument " "1"" of type '" "struct lib_ccx_ctx *""'"); + } + arg1 = (struct lib_ccx_ctx *)(argp1); + res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_ccx_s_mp4Cfg, 0 | 0 ); + if (!SWIG_IsOK(res2)) { + SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "lib_ccx_ctx_mp4_cfg_set" "', argument " "2"" of type '" "struct ccx_s_mp4Cfg *""'"); + } + arg2 = (struct ccx_s_mp4Cfg *)(argp2); + if (arg1) (arg1)->mp4_cfg = *arg2; + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_lib_ccx_ctx_mp4_cfg_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct lib_ccx_ctx *arg1 = (struct lib_ccx_ctx *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + struct ccx_s_mp4Cfg *result = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"O:lib_ccx_ctx_mp4_cfg_get",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_lib_ccx_ctx, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "lib_ccx_ctx_mp4_cfg_get" "', argument " "1"" of type '" "struct lib_ccx_ctx *""'"); + } + arg1 = (struct lib_ccx_ctx *)(argp1); + result = (struct ccx_s_mp4Cfg *)& ((arg1)->mp4_cfg); + resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_ccx_s_mp4Cfg, 0 | 0 ); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_lib_ccx_ctx_out_interval_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct lib_ccx_ctx *arg1 = (struct lib_ccx_ctx *) 0 ; + int arg2 ; + void *argp1 = 0 ; + int res1 = 0 ; + int val2 ; + int ecode2 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OO:lib_ccx_ctx_out_interval_set",&obj0,&obj1)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_lib_ccx_ctx, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "lib_ccx_ctx_out_interval_set" "', argument " "1"" of type '" "struct lib_ccx_ctx *""'"); + } + arg1 = (struct lib_ccx_ctx *)(argp1); + ecode2 = SWIG_AsVal_int(obj1, &val2); + if (!SWIG_IsOK(ecode2)) { + SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "lib_ccx_ctx_out_interval_set" "', argument " "2"" of type '" "int""'"); + } + arg2 = (int)(val2); + if (arg1) (arg1)->out_interval = arg2; + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_lib_ccx_ctx_out_interval_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct lib_ccx_ctx *arg1 = (struct lib_ccx_ctx *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + int result; + + if (!PyArg_ParseTuple(args,(char *)"O:lib_ccx_ctx_out_interval_get",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_lib_ccx_ctx, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "lib_ccx_ctx_out_interval_get" "', argument " "1"" of type '" "struct lib_ccx_ctx *""'"); + } + arg1 = (struct lib_ccx_ctx *)(argp1); + result = (int) ((arg1)->out_interval); + resultobj = SWIG_From_int((int)(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_lib_ccx_ctx_segment_counter_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct lib_ccx_ctx *arg1 = (struct lib_ccx_ctx *) 0 ; + int arg2 ; + void *argp1 = 0 ; + int res1 = 0 ; + int val2 ; + int ecode2 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OO:lib_ccx_ctx_segment_counter_set",&obj0,&obj1)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_lib_ccx_ctx, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "lib_ccx_ctx_segment_counter_set" "', argument " "1"" of type '" "struct lib_ccx_ctx *""'"); + } + arg1 = (struct lib_ccx_ctx *)(argp1); + ecode2 = SWIG_AsVal_int(obj1, &val2); + if (!SWIG_IsOK(ecode2)) { + SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "lib_ccx_ctx_segment_counter_set" "', argument " "2"" of type '" "int""'"); + } + arg2 = (int)(val2); + if (arg1) (arg1)->segment_counter = arg2; + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_lib_ccx_ctx_segment_counter_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct lib_ccx_ctx *arg1 = (struct lib_ccx_ctx *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + int result; + + if (!PyArg_ParseTuple(args,(char *)"O:lib_ccx_ctx_segment_counter_get",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_lib_ccx_ctx, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "lib_ccx_ctx_segment_counter_get" "', argument " "1"" of type '" "struct lib_ccx_ctx *""'"); + } + arg1 = (struct lib_ccx_ctx *)(argp1); + result = (int) ((arg1)->segment_counter); + resultobj = SWIG_From_int((int)(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_lib_ccx_ctx_system_start_time_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct lib_ccx_ctx *arg1 = (struct lib_ccx_ctx *) 0 ; + LLONG arg2 ; + void *argp1 = 0 ; + int res1 = 0 ; + void *argp2 ; + int res2 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OO:lib_ccx_ctx_system_start_time_set",&obj0,&obj1)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_lib_ccx_ctx, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "lib_ccx_ctx_system_start_time_set" "', argument " "1"" of type '" "struct lib_ccx_ctx *""'"); + } + arg1 = (struct lib_ccx_ctx *)(argp1); + { + res2 = SWIG_ConvertPtr(obj1, &argp2, SWIGTYPE_p_LLONG, 0 ); + if (!SWIG_IsOK(res2)) { + SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "lib_ccx_ctx_system_start_time_set" "', argument " "2"" of type '" "LLONG""'"); + } + if (!argp2) { + SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "lib_ccx_ctx_system_start_time_set" "', argument " "2"" of type '" "LLONG""'"); + } else { + arg2 = *((LLONG *)(argp2)); + } + } + if (arg1) (arg1)->system_start_time = arg2; + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_lib_ccx_ctx_system_start_time_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct lib_ccx_ctx *arg1 = (struct lib_ccx_ctx *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + LLONG result; + + if (!PyArg_ParseTuple(args,(char *)"O:lib_ccx_ctx_system_start_time_get",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_lib_ccx_ctx, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "lib_ccx_ctx_system_start_time_get" "', argument " "1"" of type '" "struct lib_ccx_ctx *""'"); + } + arg1 = (struct lib_ccx_ctx *)(argp1); + result = ((arg1)->system_start_time); + resultobj = SWIG_NewPointerObj((LLONG *)memcpy((LLONG *)calloc(1,sizeof(LLONG)),&result,sizeof(LLONG)), SWIGTYPE_p_LLONG, SWIG_POINTER_OWN | 0 ); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_new_lib_ccx_ctx(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct lib_ccx_ctx *result = 0 ; + + if (!PyArg_ParseTuple(args,(char *)":new_lib_ccx_ctx")) SWIG_fail; + result = (struct lib_ccx_ctx *)calloc(1, sizeof(struct lib_ccx_ctx)); + resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_lib_ccx_ctx, SWIG_POINTER_NEW | 0 ); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_delete_lib_ccx_ctx(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct lib_ccx_ctx *arg1 = (struct lib_ccx_ctx *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"O:delete_lib_ccx_ctx",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_lib_ccx_ctx, SWIG_POINTER_DISOWN | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_lib_ccx_ctx" "', argument " "1"" of type '" "struct lib_ccx_ctx *""'"); + } + arg1 = (struct lib_ccx_ctx *)(argp1); + free((char *) arg1); + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *lib_ccx_ctx_swigregister(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *obj; + if (!PyArg_ParseTuple(args,(char *)"O:swigregister", &obj)) return NULL; + SWIG_TypeNewClientData(SWIGTYPE_p_lib_ccx_ctx, SWIG_NewClientData(obj)); + return SWIG_Py_Void(); +} + +SWIGINTERN PyObject *_wrap_init_libraries(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct ccx_s_options *arg1 = (struct ccx_s_options *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + struct lib_ccx_ctx *result = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"O:init_libraries",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_ccx_s_options, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "init_libraries" "', argument " "1"" of type '" "struct ccx_s_options *""'"); + } + arg1 = (struct ccx_s_options *)(argp1); + result = (struct lib_ccx_ctx *)init_libraries(arg1); + resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_lib_ccx_ctx, 0 | 0 ); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_dinit_libraries(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct lib_ccx_ctx **arg1 = (struct lib_ccx_ctx **) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"O:dinit_libraries",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_p_lib_ccx_ctx, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "dinit_libraries" "', argument " "1"" of type '" "struct lib_ccx_ctx **""'"); + } + arg1 = (struct lib_ccx_ctx **)(argp1); + dinit_libraries(arg1); + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_print_end_msg(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + + if (!PyArg_ParseTuple(args,(char *)":print_end_msg")) SWIG_fail; + print_end_msg(); + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_parse_parameters(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct ccx_s_options *arg1 = (struct ccx_s_options *) 0 ; + int arg2 ; + char **arg3 ; + void *argp1 = 0 ; + int res1 = 0 ; + int val2 ; + int ecode2 = 0 ; + void *argp3 = 0 ; + int res3 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + PyObject * obj2 = 0 ; + int result; + + if (!PyArg_ParseTuple(args,(char *)"OOO:parse_parameters",&obj0,&obj1,&obj2)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_ccx_s_options, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "parse_parameters" "', argument " "1"" of type '" "struct ccx_s_options *""'"); + } + arg1 = (struct ccx_s_options *)(argp1); + ecode2 = SWIG_AsVal_int(obj1, &val2); + if (!SWIG_IsOK(ecode2)) { + SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "parse_parameters" "', argument " "2"" of type '" "int""'"); + } + arg2 = (int)(val2); + res3 = SWIG_ConvertPtr(obj2, &argp3,SWIGTYPE_p_p_char, 0 | 0 ); + if (!SWIG_IsOK(res3)) { + SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "parse_parameters" "', argument " "3"" of type '" "char *[]""'"); + } + arg3 = (char **)(argp3); + result = (int)parse_parameters(arg1,arg2,arg3); + resultobj = SWIG_From_int((int)(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_print_usage(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + + if (!PyArg_ParseTuple(args,(char *)":print_usage")) SWIG_fail; + print_usage(); + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_detect_input_file_overwrite(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct lib_ccx_ctx *arg1 = (struct lib_ccx_ctx *) 0 ; + char *arg2 = (char *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + int res2 ; + char *buf2 = 0 ; + int alloc2 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + int result; + + if (!PyArg_ParseTuple(args,(char *)"OO:detect_input_file_overwrite",&obj0,&obj1)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_lib_ccx_ctx, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "detect_input_file_overwrite" "', argument " "1"" of type '" "struct lib_ccx_ctx *""'"); + } + arg1 = (struct lib_ccx_ctx *)(argp1); + res2 = SWIG_AsCharPtrAndSize(obj1, &buf2, NULL, &alloc2); + if (!SWIG_IsOK(res2)) { + SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "detect_input_file_overwrite" "', argument " "2"" of type '" "char const *""'"); + } + arg2 = (char *)(buf2); + result = (int)detect_input_file_overwrite(arg1,(char const *)arg2); + resultobj = SWIG_From_int((int)(result)); + if (alloc2 == SWIG_NEWOBJ) free((char*)buf2); + return resultobj; +fail: + if (alloc2 == SWIG_NEWOBJ) free((char*)buf2); + return NULL; +} + + +SWIGINTERN PyObject *_wrap_atoi_hex(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + char *arg1 = (char *) 0 ; + int res1 ; + char *buf1 = 0 ; + int alloc1 = 0 ; + PyObject * obj0 = 0 ; + int result; + + if (!PyArg_ParseTuple(args,(char *)"O:atoi_hex",&obj0)) SWIG_fail; + res1 = SWIG_AsCharPtrAndSize(obj0, &buf1, NULL, &alloc1); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "atoi_hex" "', argument " "1"" of type '" "char *""'"); + } + arg1 = (char *)(buf1); + result = (int)atoi_hex(arg1); + resultobj = SWIG_From_int((int)(result)); + if (alloc1 == SWIG_NEWOBJ) free((char*)buf1); + return resultobj; +fail: + if (alloc1 == SWIG_NEWOBJ) free((char*)buf1); + return NULL; +} + + +SWIGINTERN PyObject *_wrap_stringztoms(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + char *arg1 = (char *) 0 ; + struct ccx_boundary_time *arg2 = (struct ccx_boundary_time *) 0 ; + int res1 ; + char *buf1 = 0 ; + int alloc1 = 0 ; + void *argp2 = 0 ; + int res2 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + int result; + + if (!PyArg_ParseTuple(args,(char *)"OO:stringztoms",&obj0,&obj1)) SWIG_fail; + res1 = SWIG_AsCharPtrAndSize(obj0, &buf1, NULL, &alloc1); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "stringztoms" "', argument " "1"" of type '" "char const *""'"); + } + arg1 = (char *)(buf1); + res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_ccx_boundary_time, 0 | 0 ); + if (!SWIG_IsOK(res2)) { + SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "stringztoms" "', argument " "2"" of type '" "struct ccx_boundary_time *""'"); + } + arg2 = (struct ccx_boundary_time *)(argp2); + result = (int)stringztoms((char const *)arg1,arg2); + resultobj = SWIG_From_int((int)(result)); + if (alloc1 == SWIG_NEWOBJ) free((char*)buf1); + return resultobj; +fail: + if (alloc1 == SWIG_NEWOBJ) free((char*)buf1); + return NULL; +} + + +SWIGINTERN PyObject *_wrap_position_sanity_check(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct ccx_demuxer *arg1 = (struct ccx_demuxer *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"O:position_sanity_check",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_ccx_demuxer, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "position_sanity_check" "', argument " "1"" of type '" "struct ccx_demuxer *""'"); + } + arg1 = (struct ccx_demuxer *)(argp1); + position_sanity_check(arg1); + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_init_file_buffer(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct ccx_demuxer *arg1 = (struct ccx_demuxer *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + int result; + + if (!PyArg_ParseTuple(args,(char *)"O:init_file_buffer",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_ccx_demuxer, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "init_file_buffer" "', argument " "1"" of type '" "struct ccx_demuxer *""'"); + } + arg1 = (struct ccx_demuxer *)(argp1); + result = (int)init_file_buffer(arg1); + resultobj = SWIG_From_int((int)(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_ps_get_more_data(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct lib_ccx_ctx *arg1 = (struct lib_ccx_ctx *) 0 ; + struct demuxer_data **arg2 = (struct demuxer_data **) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + void *argp2 = 0 ; + int res2 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + int result; + + if (!PyArg_ParseTuple(args,(char *)"OO:ps_get_more_data",&obj0,&obj1)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_lib_ccx_ctx, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "ps_get_more_data" "', argument " "1"" of type '" "struct lib_ccx_ctx *""'"); + } + arg1 = (struct lib_ccx_ctx *)(argp1); + res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_p_demuxer_data, 0 | 0 ); + if (!SWIG_IsOK(res2)) { + SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "ps_get_more_data" "', argument " "2"" of type '" "struct demuxer_data **""'"); + } + arg2 = (struct demuxer_data **)(argp2); + result = (int)ps_get_more_data(arg1,arg2); + resultobj = SWIG_From_int((int)(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_general_get_more_data(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct lib_ccx_ctx *arg1 = (struct lib_ccx_ctx *) 0 ; + struct demuxer_data **arg2 = (struct demuxer_data **) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + void *argp2 = 0 ; + int res2 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + int result; + + if (!PyArg_ParseTuple(args,(char *)"OO:general_get_more_data",&obj0,&obj1)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_lib_ccx_ctx, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "general_get_more_data" "', argument " "1"" of type '" "struct lib_ccx_ctx *""'"); + } + arg1 = (struct lib_ccx_ctx *)(argp1); + res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_p_demuxer_data, 0 | 0 ); + if (!SWIG_IsOK(res2)) { + SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "general_get_more_data" "', argument " "2"" of type '" "struct demuxer_data **""'"); + } + arg2 = (struct demuxer_data **)(argp2); + result = (int)general_get_more_data(arg1,arg2); + resultobj = SWIG_From_int((int)(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_raw_loop(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct lib_ccx_ctx *arg1 = (struct lib_ccx_ctx *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + int result; + + if (!PyArg_ParseTuple(args,(char *)"O:raw_loop",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_lib_ccx_ctx, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "raw_loop" "', argument " "1"" of type '" "struct lib_ccx_ctx *""'"); + } + arg1 = (struct lib_ccx_ctx *)(argp1); + result = (int)raw_loop(arg1); + resultobj = SWIG_From_int((int)(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_process_raw(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct lib_cc_decode *arg1 = (struct lib_cc_decode *) 0 ; + struct cc_subtitle *arg2 = (struct cc_subtitle *) 0 ; + unsigned char *arg3 = (unsigned char *) 0 ; + size_t arg4 ; + void *argp1 = 0 ; + int res1 = 0 ; + void *argp2 = 0 ; + int res2 = 0 ; + void *argp3 = 0 ; + int res3 = 0 ; + size_t val4 ; + int ecode4 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + PyObject * obj2 = 0 ; + PyObject * obj3 = 0 ; + size_t result; + + if (!PyArg_ParseTuple(args,(char *)"OOOO:process_raw",&obj0,&obj1,&obj2,&obj3)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_lib_cc_decode, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "process_raw" "', argument " "1"" of type '" "struct lib_cc_decode *""'"); + } + arg1 = (struct lib_cc_decode *)(argp1); + res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_cc_subtitle, 0 | 0 ); + if (!SWIG_IsOK(res2)) { + SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "process_raw" "', argument " "2"" of type '" "struct cc_subtitle *""'"); + } + arg2 = (struct cc_subtitle *)(argp2); + res3 = SWIG_ConvertPtr(obj2, &argp3,SWIGTYPE_p_unsigned_char, 0 | 0 ); + if (!SWIG_IsOK(res3)) { + SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "process_raw" "', argument " "3"" of type '" "unsigned char *""'"); + } + arg3 = (unsigned char *)(argp3); + ecode4 = SWIG_AsVal_size_t(obj3, &val4); + if (!SWIG_IsOK(ecode4)) { + SWIG_exception_fail(SWIG_ArgError(ecode4), "in method '" "process_raw" "', argument " "4"" of type '" "size_t""'"); + } + arg4 = (size_t)(val4); + result = process_raw(arg1,arg2,arg3,arg4); + resultobj = SWIG_From_size_t((size_t)(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_general_loop(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct lib_ccx_ctx *arg1 = (struct lib_ccx_ctx *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + int result; + + if (!PyArg_ParseTuple(args,(char *)"O:general_loop",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_lib_ccx_ctx, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "general_loop" "', argument " "1"" of type '" "struct lib_ccx_ctx *""'"); + } + arg1 = (struct lib_ccx_ctx *)(argp1); + result = (int)general_loop(arg1); + resultobj = SWIG_From_int((int)(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_process_hex(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + char *arg1 = (char *) 0 ; + int res1 ; + char *buf1 = 0 ; + int alloc1 = 0 ; + PyObject * obj0 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"O:process_hex",&obj0)) SWIG_fail; + res1 = SWIG_AsCharPtrAndSize(obj0, &buf1, NULL, &alloc1); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "process_hex" "', argument " "1"" of type '" "char *""'"); + } + arg1 = (char *)(buf1); + process_hex(arg1); + resultobj = SWIG_Py_Void(); + if (alloc1 == SWIG_NEWOBJ) free((char*)buf1); + return resultobj; +fail: + if (alloc1 == SWIG_NEWOBJ) free((char*)buf1); + return NULL; +} + + +SWIGINTERN PyObject *_wrap_rcwt_loop(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct lib_ccx_ctx *arg1 = (struct lib_ccx_ctx *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + int result; + + if (!PyArg_ParseTuple(args,(char *)"O:rcwt_loop",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_lib_ccx_ctx, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "rcwt_loop" "', argument " "1"" of type '" "struct lib_ccx_ctx *""'"); + } + arg1 = (struct lib_ccx_ctx *)(argp1); + result = (int)rcwt_loop(arg1); + resultobj = SWIG_From_int((int)(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN int Swig_var_end_of_file_set(PyObject *_val) { + { + int val; + int res = SWIG_AsVal_int(_val, &val); + if (!SWIG_IsOK(res)) { + SWIG_exception_fail(SWIG_ArgError(res), "in variable '""end_of_file""' of type '""int""'"); + } + end_of_file = (int)(val); + } + return 0; +fail: + return 1; +} + + +SWIGINTERN PyObject *Swig_var_end_of_file_get(void) { + PyObject *pyobj = 0; + + pyobj = SWIG_From_int((int)(end_of_file)); + return pyobj; +} + + +SWIGINTERN PyObject *_wrap_asf_get_more_data(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct lib_ccx_ctx *arg1 = (struct lib_ccx_ctx *) 0 ; + struct demuxer_data **arg2 = (struct demuxer_data **) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + void *argp2 = 0 ; + int res2 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + int result; + + if (!PyArg_ParseTuple(args,(char *)"OO:asf_get_more_data",&obj0,&obj1)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_lib_ccx_ctx, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "asf_get_more_data" "', argument " "1"" of type '" "struct lib_ccx_ctx *""'"); + } + arg1 = (struct lib_ccx_ctx *)(argp1); + res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_p_demuxer_data, 0 | 0 ); + if (!SWIG_IsOK(res2)) { + SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "asf_get_more_data" "', argument " "2"" of type '" "struct demuxer_data **""'"); + } + arg2 = (struct demuxer_data **)(argp2); + result = (int)asf_get_more_data(arg1,arg2); + resultobj = SWIG_From_int((int)(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_wtv_get_more_data(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct lib_ccx_ctx *arg1 = (struct lib_ccx_ctx *) 0 ; + struct demuxer_data **arg2 = (struct demuxer_data **) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + void *argp2 = 0 ; + int res2 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + int result; + + if (!PyArg_ParseTuple(args,(char *)"OO:wtv_get_more_data",&obj0,&obj1)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_lib_ccx_ctx, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "wtv_get_more_data" "', argument " "1"" of type '" "struct lib_ccx_ctx *""'"); + } + arg1 = (struct lib_ccx_ctx *)(argp1); + res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_p_demuxer_data, 0 | 0 ); + if (!SWIG_IsOK(res2)) { + SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "wtv_get_more_data" "', argument " "2"" of type '" "struct demuxer_data **""'"); + } + arg2 = (struct demuxer_data **)(argp2); + result = (int)wtv_get_more_data(arg1,arg2); + resultobj = SWIG_From_int((int)(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_process_m2v(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct lib_cc_decode *arg1 = (struct lib_cc_decode *) 0 ; + unsigned char *arg2 = (unsigned char *) 0 ; + size_t arg3 ; + struct cc_subtitle *arg4 = (struct cc_subtitle *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + void *argp2 = 0 ; + int res2 = 0 ; + size_t val3 ; + int ecode3 = 0 ; + void *argp4 = 0 ; + int res4 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + PyObject * obj2 = 0 ; + PyObject * obj3 = 0 ; + size_t result; + + if (!PyArg_ParseTuple(args,(char *)"OOOO:process_m2v",&obj0,&obj1,&obj2,&obj3)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_lib_cc_decode, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "process_m2v" "', argument " "1"" of type '" "struct lib_cc_decode *""'"); + } + arg1 = (struct lib_cc_decode *)(argp1); + res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_unsigned_char, 0 | 0 ); + if (!SWIG_IsOK(res2)) { + SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "process_m2v" "', argument " "2"" of type '" "unsigned char *""'"); + } + arg2 = (unsigned char *)(argp2); + ecode3 = SWIG_AsVal_size_t(obj2, &val3); + if (!SWIG_IsOK(ecode3)) { + SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "process_m2v" "', argument " "3"" of type '" "size_t""'"); + } + arg3 = (size_t)(val3); + res4 = SWIG_ConvertPtr(obj3, &argp4,SWIGTYPE_p_cc_subtitle, 0 | 0 ); + if (!SWIG_IsOK(res4)) { + SWIG_exception_fail(SWIG_ArgError(res4), "in method '" "process_m2v" "', argument " "4"" of type '" "struct cc_subtitle *""'"); + } + arg4 = (struct cc_subtitle *)(argp4); + result = process_m2v(arg1,arg2,arg3,arg4); + resultobj = SWIG_From_size_t((size_t)(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN int Swig_var_top_field_first_set(PyObject *_val) { + { + unsigned int val; + int res = SWIG_AsVal_unsigned_SS_int(_val, &val); + if (!SWIG_IsOK(res)) { + SWIG_exception_fail(SWIG_ArgError(res), "in variable '""top_field_first""' of type '""unsigned int""'"); + } + top_field_first = (unsigned int)(val); + } + return 0; +fail: + return 1; +} + + +SWIGINTERN PyObject *Swig_var_top_field_first_get(void) { + PyObject *pyobj = 0; + + pyobj = SWIG_From_unsigned_SS_int((unsigned int)(top_field_first)); + return pyobj; +} + + +SWIGINTERN PyObject *_wrap_user_data(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct lib_cc_decode *arg1 = (struct lib_cc_decode *) 0 ; + struct bitstream *arg2 = (struct bitstream *) 0 ; + int arg3 ; + struct cc_subtitle *arg4 = (struct cc_subtitle *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + void *argp2 = 0 ; + int res2 = 0 ; + int val3 ; + int ecode3 = 0 ; + void *argp4 = 0 ; + int res4 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + PyObject * obj2 = 0 ; + PyObject * obj3 = 0 ; + int result; + + if (!PyArg_ParseTuple(args,(char *)"OOOO:user_data",&obj0,&obj1,&obj2,&obj3)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_lib_cc_decode, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "user_data" "', argument " "1"" of type '" "struct lib_cc_decode *""'"); + } + arg1 = (struct lib_cc_decode *)(argp1); + res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_bitstream, 0 | 0 ); + if (!SWIG_IsOK(res2)) { + SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "user_data" "', argument " "2"" of type '" "struct bitstream *""'"); + } + arg2 = (struct bitstream *)(argp2); + ecode3 = SWIG_AsVal_int(obj2, &val3); + if (!SWIG_IsOK(ecode3)) { + SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "user_data" "', argument " "3"" of type '" "int""'"); + } + arg3 = (int)(val3); + res4 = SWIG_ConvertPtr(obj3, &argp4,SWIGTYPE_p_cc_subtitle, 0 | 0 ); + if (!SWIG_IsOK(res4)) { + SWIG_exception_fail(SWIG_ArgError(res4), "in method '" "user_data" "', argument " "4"" of type '" "struct cc_subtitle *""'"); + } + arg4 = (struct cc_subtitle *)(argp4); + result = (int)user_data(arg1,arg2,arg3,arg4); + resultobj = SWIG_From_int((int)(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_get_file_size(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + int arg1 ; + int val1 ; + int ecode1 = 0 ; + PyObject * obj0 = 0 ; + LLONG result; + + if (!PyArg_ParseTuple(args,(char *)"O:get_file_size",&obj0)) SWIG_fail; + ecode1 = SWIG_AsVal_int(obj0, &val1); + if (!SWIG_IsOK(ecode1)) { + SWIG_exception_fail(SWIG_ArgError(ecode1), "in method '" "get_file_size" "', argument " "1"" of type '" "int""'"); + } + arg1 = (int)(val1); + result = get_file_size(arg1); + resultobj = SWIG_NewPointerObj((LLONG *)memcpy((LLONG *)calloc(1,sizeof(LLONG)),&result,sizeof(LLONG)), SWIGTYPE_p_LLONG, SWIG_POINTER_OWN | 0 ); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_get_total_file_size(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct lib_ccx_ctx *arg1 = (struct lib_ccx_ctx *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + LLONG result; + + if (!PyArg_ParseTuple(args,(char *)"O:get_total_file_size",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_lib_ccx_ctx, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "get_total_file_size" "', argument " "1"" of type '" "struct lib_ccx_ctx *""'"); + } + arg1 = (struct lib_ccx_ctx *)(argp1); + result = get_total_file_size(arg1); + resultobj = SWIG_NewPointerObj((LLONG *)memcpy((LLONG *)calloc(1,sizeof(LLONG)),&result,sizeof(LLONG)), SWIGTYPE_p_LLONG, SWIG_POINTER_OWN | 0 ); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_prepare_for_new_file(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct lib_ccx_ctx *arg1 = (struct lib_ccx_ctx *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"O:prepare_for_new_file",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_lib_ccx_ctx, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "prepare_for_new_file" "', argument " "1"" of type '" "struct lib_ccx_ctx *""'"); + } + arg1 = (struct lib_ccx_ctx *)(argp1); + prepare_for_new_file(arg1); + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_close_input_file(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct lib_ccx_ctx *arg1 = (struct lib_ccx_ctx *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"O:close_input_file",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_lib_ccx_ctx, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "close_input_file" "', argument " "1"" of type '" "struct lib_ccx_ctx *""'"); + } + arg1 = (struct lib_ccx_ctx *)(argp1); + close_input_file(arg1); + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_switch_to_next_file(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct lib_ccx_ctx *arg1 = (struct lib_ccx_ctx *) 0 ; + LLONG arg2 ; + void *argp1 = 0 ; + int res1 = 0 ; + void *argp2 ; + int res2 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + int result; + + if (!PyArg_ParseTuple(args,(char *)"OO:switch_to_next_file",&obj0,&obj1)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_lib_ccx_ctx, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "switch_to_next_file" "', argument " "1"" of type '" "struct lib_ccx_ctx *""'"); + } + arg1 = (struct lib_ccx_ctx *)(argp1); + { + res2 = SWIG_ConvertPtr(obj1, &argp2, SWIGTYPE_p_LLONG, 0 ); + if (!SWIG_IsOK(res2)) { + SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "switch_to_next_file" "', argument " "2"" of type '" "LLONG""'"); + } + if (!argp2) { + SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "switch_to_next_file" "', argument " "2"" of type '" "LLONG""'"); + } else { + arg2 = *((LLONG *)(argp2)); + } + } + result = (int)switch_to_next_file(arg1,arg2); + resultobj = SWIG_From_int((int)(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_return_to_buffer(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct ccx_demuxer *arg1 = (struct ccx_demuxer *) 0 ; + unsigned char *arg2 = (unsigned char *) 0 ; + unsigned int arg3 ; + void *argp1 = 0 ; + int res1 = 0 ; + void *argp2 = 0 ; + int res2 = 0 ; + unsigned int val3 ; + int ecode3 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + PyObject * obj2 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OOO:return_to_buffer",&obj0,&obj1,&obj2)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_ccx_demuxer, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "return_to_buffer" "', argument " "1"" of type '" "struct ccx_demuxer *""'"); + } + arg1 = (struct ccx_demuxer *)(argp1); + res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_unsigned_char, 0 | 0 ); + if (!SWIG_IsOK(res2)) { + SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "return_to_buffer" "', argument " "2"" of type '" "unsigned char *""'"); + } + arg2 = (unsigned char *)(argp2); + ecode3 = SWIG_AsVal_unsigned_SS_int(obj2, &val3); + if (!SWIG_IsOK(ecode3)) { + SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "return_to_buffer" "', argument " "3"" of type '" "unsigned int""'"); + } + arg3 = (unsigned int)(val3); + return_to_buffer(arg1,arg2,arg3); + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_init_hdcc(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct lib_cc_decode *arg1 = (struct lib_cc_decode *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"O:init_hdcc",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_lib_cc_decode, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "init_hdcc" "', argument " "1"" of type '" "struct lib_cc_decode *""'"); + } + arg1 = (struct lib_cc_decode *)(argp1); + init_hdcc(arg1); + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_store_hdcc(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct lib_cc_decode *arg1 = (struct lib_cc_decode *) 0 ; + unsigned char *arg2 = (unsigned char *) 0 ; + int arg3 ; + int arg4 ; + LLONG arg5 ; + struct cc_subtitle *arg6 = (struct cc_subtitle *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + void *argp2 = 0 ; + int res2 = 0 ; + int val3 ; + int ecode3 = 0 ; + int val4 ; + int ecode4 = 0 ; + void *argp5 ; + int res5 = 0 ; + void *argp6 = 0 ; + int res6 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + PyObject * obj2 = 0 ; + PyObject * obj3 = 0 ; + PyObject * obj4 = 0 ; + PyObject * obj5 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OOOOOO:store_hdcc",&obj0,&obj1,&obj2,&obj3,&obj4,&obj5)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_lib_cc_decode, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "store_hdcc" "', argument " "1"" of type '" "struct lib_cc_decode *""'"); + } + arg1 = (struct lib_cc_decode *)(argp1); + res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_unsigned_char, 0 | 0 ); + if (!SWIG_IsOK(res2)) { + SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "store_hdcc" "', argument " "2"" of type '" "unsigned char *""'"); + } + arg2 = (unsigned char *)(argp2); + ecode3 = SWIG_AsVal_int(obj2, &val3); + if (!SWIG_IsOK(ecode3)) { + SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "store_hdcc" "', argument " "3"" of type '" "int""'"); + } + arg3 = (int)(val3); + ecode4 = SWIG_AsVal_int(obj3, &val4); + if (!SWIG_IsOK(ecode4)) { + SWIG_exception_fail(SWIG_ArgError(ecode4), "in method '" "store_hdcc" "', argument " "4"" of type '" "int""'"); + } + arg4 = (int)(val4); + { + res5 = SWIG_ConvertPtr(obj4, &argp5, SWIGTYPE_p_LLONG, 0 ); + if (!SWIG_IsOK(res5)) { + SWIG_exception_fail(SWIG_ArgError(res5), "in method '" "store_hdcc" "', argument " "5"" of type '" "LLONG""'"); + } + if (!argp5) { + SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "store_hdcc" "', argument " "5"" of type '" "LLONG""'"); + } else { + arg5 = *((LLONG *)(argp5)); + } + } + res6 = SWIG_ConvertPtr(obj5, &argp6,SWIGTYPE_p_cc_subtitle, 0 | 0 ); + if (!SWIG_IsOK(res6)) { + SWIG_exception_fail(SWIG_ArgError(res6), "in method '" "store_hdcc" "', argument " "6"" of type '" "struct cc_subtitle *""'"); + } + arg6 = (struct cc_subtitle *)(argp6); + store_hdcc(arg1,arg2,arg3,arg4,arg5,arg6); + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_anchor_hdcc(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct lib_cc_decode *arg1 = (struct lib_cc_decode *) 0 ; + int arg2 ; + void *argp1 = 0 ; + int res1 = 0 ; + int val2 ; + int ecode2 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OO:anchor_hdcc",&obj0,&obj1)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_lib_cc_decode, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "anchor_hdcc" "', argument " "1"" of type '" "struct lib_cc_decode *""'"); + } + arg1 = (struct lib_cc_decode *)(argp1); + ecode2 = SWIG_AsVal_int(obj1, &val2); + if (!SWIG_IsOK(ecode2)) { + SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "anchor_hdcc" "', argument " "2"" of type '" "int""'"); + } + arg2 = (int)(val2); + anchor_hdcc(arg1,arg2); + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_process_hdcc(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct lib_cc_decode *arg1 = (struct lib_cc_decode *) 0 ; + struct cc_subtitle *arg2 = (struct cc_subtitle *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + void *argp2 = 0 ; + int res2 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OO:process_hdcc",&obj0,&obj1)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_lib_cc_decode, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "process_hdcc" "', argument " "1"" of type '" "struct lib_cc_decode *""'"); + } + arg1 = (struct lib_cc_decode *)(argp1); + res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_cc_subtitle, 0 | 0 ); + if (!SWIG_IsOK(res2)) { + SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "process_hdcc" "', argument " "2"" of type '" "struct cc_subtitle *""'"); + } + arg2 = (struct cc_subtitle *)(argp2); + process_hdcc(arg1,arg2); + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_params_dump(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct lib_ccx_ctx *arg1 = (struct lib_ccx_ctx *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"O:params_dump",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_lib_ccx_ctx, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "params_dump" "', argument " "1"" of type '" "struct lib_ccx_ctx *""'"); + } + arg1 = (struct lib_ccx_ctx *)(argp1); + params_dump(arg1); + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_print_file_report(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct lib_ccx_ctx *arg1 = (struct lib_ccx_ctx *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"O:print_file_report",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_lib_ccx_ctx, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "print_file_report" "', argument " "1"" of type '" "struct lib_ccx_ctx *""'"); + } + arg1 = (struct lib_ccx_ctx *)(argp1); + print_file_report(arg1); + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_dinit_write(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct ccx_s_write *arg1 = (struct ccx_s_write *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"O:dinit_write",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_ccx_s_write, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "dinit_write" "', argument " "1"" of type '" "struct ccx_s_write *""'"); + } + arg1 = (struct ccx_s_write *)(argp1); + dinit_write(arg1); + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_temporarily_open_output(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct ccx_s_write *arg1 = (struct ccx_s_write *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + int result; + + if (!PyArg_ParseTuple(args,(char *)"O:temporarily_open_output",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_ccx_s_write, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "temporarily_open_output" "', argument " "1"" of type '" "struct ccx_s_write *""'"); + } + arg1 = (struct ccx_s_write *)(argp1); + result = (int)temporarily_open_output(arg1); + resultobj = SWIG_From_int((int)(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_temporarily_close_output(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct ccx_s_write *arg1 = (struct ccx_s_write *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + int result; + + if (!PyArg_ParseTuple(args,(char *)"O:temporarily_close_output",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_ccx_s_write, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "temporarily_close_output" "', argument " "1"" of type '" "struct ccx_s_write *""'"); + } + arg1 = (struct ccx_s_write *)(argp1); + result = (int)temporarily_close_output(arg1); + resultobj = SWIG_From_int((int)(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_init_write(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct ccx_s_write *arg1 = (struct ccx_s_write *) 0 ; + char *arg2 = (char *) 0 ; + int arg3 ; + void *argp1 = 0 ; + int res1 = 0 ; + int res2 ; + char *buf2 = 0 ; + int alloc2 = 0 ; + int val3 ; + int ecode3 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + PyObject * obj2 = 0 ; + int result; + + if (!PyArg_ParseTuple(args,(char *)"OOO:init_write",&obj0,&obj1,&obj2)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_ccx_s_write, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "init_write" "', argument " "1"" of type '" "struct ccx_s_write *""'"); + } + arg1 = (struct ccx_s_write *)(argp1); + res2 = SWIG_AsCharPtrAndSize(obj1, &buf2, NULL, &alloc2); + if (!SWIG_IsOK(res2)) { + SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "init_write" "', argument " "2"" of type '" "char *""'"); + } + arg2 = (char *)(buf2); + ecode3 = SWIG_AsVal_int(obj2, &val3); + if (!SWIG_IsOK(ecode3)) { + SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "init_write" "', argument " "3"" of type '" "int""'"); + } + arg3 = (int)(val3); + result = (int)init_write(arg1,arg2,arg3); + resultobj = SWIG_From_int((int)(result)); + if (alloc2 == SWIG_NEWOBJ) free((char*)buf2); + return resultobj; +fail: + if (alloc2 == SWIG_NEWOBJ) free((char*)buf2); + return NULL; +} + + +SWIGINTERN PyObject *_wrap_writeraw(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + unsigned char *arg1 = (unsigned char *) 0 ; + int arg2 ; + void *arg3 = (void *) 0 ; + struct cc_subtitle *arg4 = (struct cc_subtitle *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + int val2 ; + int ecode2 = 0 ; + int res3 ; + void *argp4 = 0 ; + int res4 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + PyObject * obj2 = 0 ; + PyObject * obj3 = 0 ; + int result; + + if (!PyArg_ParseTuple(args,(char *)"OOOO:writeraw",&obj0,&obj1,&obj2,&obj3)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_unsigned_char, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "writeraw" "', argument " "1"" of type '" "unsigned char const *""'"); + } + arg1 = (unsigned char *)(argp1); + ecode2 = SWIG_AsVal_int(obj1, &val2); + if (!SWIG_IsOK(ecode2)) { + SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "writeraw" "', argument " "2"" of type '" "int""'"); + } + arg2 = (int)(val2); + res3 = SWIG_ConvertPtr(obj2,SWIG_as_voidptrptr(&arg3), 0, 0); + if (!SWIG_IsOK(res3)) { + SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "writeraw" "', argument " "3"" of type '" "void *""'"); + } + res4 = SWIG_ConvertPtr(obj3, &argp4,SWIGTYPE_p_cc_subtitle, 0 | 0 ); + if (!SWIG_IsOK(res4)) { + SWIG_exception_fail(SWIG_ArgError(res4), "in method '" "writeraw" "', argument " "4"" of type '" "struct cc_subtitle *""'"); + } + arg4 = (struct cc_subtitle *)(argp4); + result = (int)writeraw((unsigned char const *)arg1,arg2,arg3,arg4); + resultobj = SWIG_From_int((int)(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_flushbuffer(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct lib_ccx_ctx *arg1 = (struct lib_ccx_ctx *) 0 ; + struct ccx_s_write *arg2 = (struct ccx_s_write *) 0 ; + int arg3 ; + void *argp1 = 0 ; + int res1 = 0 ; + void *argp2 = 0 ; + int res2 = 0 ; + int val3 ; + int ecode3 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + PyObject * obj2 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OOO:flushbuffer",&obj0,&obj1,&obj2)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_lib_ccx_ctx, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "flushbuffer" "', argument " "1"" of type '" "struct lib_ccx_ctx *""'"); + } + arg1 = (struct lib_ccx_ctx *)(argp1); + res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_ccx_s_write, 0 | 0 ); + if (!SWIG_IsOK(res2)) { + SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "flushbuffer" "', argument " "2"" of type '" "struct ccx_s_write *""'"); + } + arg2 = (struct ccx_s_write *)(argp2); + ecode3 = SWIG_AsVal_int(obj2, &val3); + if (!SWIG_IsOK(ecode3)) { + SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "flushbuffer" "', argument " "3"" of type '" "int""'"); + } + arg3 = (int)(val3); + flushbuffer(arg1,arg2,arg3); + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_writercwtdata(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct lib_cc_decode *arg1 = (struct lib_cc_decode *) 0 ; + unsigned char *arg2 = (unsigned char *) 0 ; + struct cc_subtitle *arg3 = (struct cc_subtitle *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + void *argp2 = 0 ; + int res2 = 0 ; + void *argp3 = 0 ; + int res3 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + PyObject * obj2 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OOO:writercwtdata",&obj0,&obj1,&obj2)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_lib_cc_decode, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "writercwtdata" "', argument " "1"" of type '" "struct lib_cc_decode *""'"); + } + arg1 = (struct lib_cc_decode *)(argp1); + res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_unsigned_char, 0 | 0 ); + if (!SWIG_IsOK(res2)) { + SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "writercwtdata" "', argument " "2"" of type '" "unsigned char const *""'"); + } + arg2 = (unsigned char *)(argp2); + res3 = SWIG_ConvertPtr(obj2, &argp3,SWIGTYPE_p_cc_subtitle, 0 | 0 ); + if (!SWIG_IsOK(res3)) { + SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "writercwtdata" "', argument " "3"" of type '" "struct cc_subtitle *""'"); + } + arg3 = (struct cc_subtitle *)(argp3); + writercwtdata(arg1,(unsigned char const *)arg2,arg3); + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_isValidMP4Box(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + unsigned char *arg1 = (unsigned char *) 0 ; + size_t arg2 ; + size_t *arg3 = (size_t *) 0 ; + int *arg4 = (int *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + size_t val2 ; + int ecode2 = 0 ; + void *argp3 = 0 ; + int res3 = 0 ; + void *argp4 = 0 ; + int res4 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + PyObject * obj2 = 0 ; + PyObject * obj3 = 0 ; + int result; + + if (!PyArg_ParseTuple(args,(char *)"OOOO:isValidMP4Box",&obj0,&obj1,&obj2,&obj3)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_unsigned_char, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "isValidMP4Box" "', argument " "1"" of type '" "unsigned char *""'"); + } + arg1 = (unsigned char *)(argp1); + ecode2 = SWIG_AsVal_size_t(obj1, &val2); + if (!SWIG_IsOK(ecode2)) { + SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "isValidMP4Box" "', argument " "2"" of type '" "size_t""'"); + } + arg2 = (size_t)(val2); + res3 = SWIG_ConvertPtr(obj2, &argp3,SWIGTYPE_p_size_t, 0 | 0 ); + if (!SWIG_IsOK(res3)) { + SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "isValidMP4Box" "', argument " "3"" of type '" "size_t *""'"); + } + arg3 = (size_t *)(argp3); + res4 = SWIG_ConvertPtr(obj3, &argp4,SWIGTYPE_p_int, 0 | 0 ); + if (!SWIG_IsOK(res4)) { + SWIG_exception_fail(SWIG_ArgError(res4), "in method '" "isValidMP4Box" "', argument " "4"" of type '" "int *""'"); + } + arg4 = (int *)(argp4); + result = (int)isValidMP4Box(arg1,arg2,arg3,arg4); + resultobj = SWIG_From_int((int)(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_detect_stream_type(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct ccx_demuxer *arg1 = (struct ccx_demuxer *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"O:detect_stream_type",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_ccx_demuxer, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "detect_stream_type" "', argument " "1"" of type '" "struct ccx_demuxer *""'"); + } + arg1 = (struct ccx_demuxer *)(argp1); + detect_stream_type(arg1); + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_detect_myth(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct ccx_demuxer *arg1 = (struct ccx_demuxer *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + int result; + + if (!PyArg_ParseTuple(args,(char *)"O:detect_myth",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_ccx_demuxer, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "detect_myth" "', argument " "1"" of type '" "struct ccx_demuxer *""'"); + } + arg1 = (struct ccx_demuxer *)(argp1); + result = (int)detect_myth(arg1); + resultobj = SWIG_From_int((int)(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_read_video_pes_header(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct ccx_demuxer *arg1 = (struct ccx_demuxer *) 0 ; + struct demuxer_data *arg2 = (struct demuxer_data *) 0 ; + unsigned char *arg3 = (unsigned char *) 0 ; + int *arg4 = (int *) 0 ; + int arg5 ; + void *argp1 = 0 ; + int res1 = 0 ; + void *argp2 = 0 ; + int res2 = 0 ; + void *argp3 = 0 ; + int res3 = 0 ; + void *argp4 = 0 ; + int res4 = 0 ; + int val5 ; + int ecode5 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + PyObject * obj2 = 0 ; + PyObject * obj3 = 0 ; + PyObject * obj4 = 0 ; + int result; + + if (!PyArg_ParseTuple(args,(char *)"OOOOO:read_video_pes_header",&obj0,&obj1,&obj2,&obj3,&obj4)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_ccx_demuxer, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "read_video_pes_header" "', argument " "1"" of type '" "struct ccx_demuxer *""'"); + } + arg1 = (struct ccx_demuxer *)(argp1); + res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_demuxer_data, 0 | 0 ); + if (!SWIG_IsOK(res2)) { + SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "read_video_pes_header" "', argument " "2"" of type '" "struct demuxer_data *""'"); + } + arg2 = (struct demuxer_data *)(argp2); + res3 = SWIG_ConvertPtr(obj2, &argp3,SWIGTYPE_p_unsigned_char, 0 | 0 ); + if (!SWIG_IsOK(res3)) { + SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "read_video_pes_header" "', argument " "3"" of type '" "unsigned char *""'"); + } + arg3 = (unsigned char *)(argp3); + res4 = SWIG_ConvertPtr(obj3, &argp4,SWIGTYPE_p_int, 0 | 0 ); + if (!SWIG_IsOK(res4)) { + SWIG_exception_fail(SWIG_ArgError(res4), "in method '" "read_video_pes_header" "', argument " "4"" of type '" "int *""'"); + } + arg4 = (int *)(argp4); + ecode5 = SWIG_AsVal_int(obj4, &val5); + if (!SWIG_IsOK(ecode5)) { + SWIG_exception_fail(SWIG_ArgError(ecode5), "in method '" "read_video_pes_header" "', argument " "5"" of type '" "int""'"); + } + arg5 = (int)(val5); + result = (int)read_video_pes_header(arg1,arg2,arg3,arg4,arg5); + resultobj = SWIG_From_int((int)(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_init_ts(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct ccx_demuxer *arg1 = (struct ccx_demuxer *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"O:init_ts",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_ccx_demuxer, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "init_ts" "', argument " "1"" of type '" "struct ccx_demuxer *""'"); + } + arg1 = (struct ccx_demuxer *)(argp1); + init_ts(arg1); + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_ts_readpacket(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct ccx_demuxer *arg1 = (struct ccx_demuxer *) 0 ; + struct ts_payload *arg2 = (struct ts_payload *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + void *argp2 = 0 ; + int res2 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + int result; + + if (!PyArg_ParseTuple(args,(char *)"OO:ts_readpacket",&obj0,&obj1)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_ccx_demuxer, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "ts_readpacket" "', argument " "1"" of type '" "struct ccx_demuxer *""'"); + } + arg1 = (struct ccx_demuxer *)(argp1); + res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_ts_payload, 0 | 0 ); + if (!SWIG_IsOK(res2)) { + SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "ts_readpacket" "', argument " "2"" of type '" "struct ts_payload *""'"); + } + arg2 = (struct ts_payload *)(argp2); + result = (int)ts_readpacket(arg1,arg2); + resultobj = SWIG_From_int((int)(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_ts_readstream(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct ccx_demuxer *arg1 = (struct ccx_demuxer *) 0 ; + struct demuxer_data **arg2 = (struct demuxer_data **) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + void *argp2 = 0 ; + int res2 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + long result; + + if (!PyArg_ParseTuple(args,(char *)"OO:ts_readstream",&obj0,&obj1)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_ccx_demuxer, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "ts_readstream" "', argument " "1"" of type '" "struct ccx_demuxer *""'"); + } + arg1 = (struct ccx_demuxer *)(argp1); + res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_p_demuxer_data, 0 | 0 ); + if (!SWIG_IsOK(res2)) { + SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "ts_readstream" "', argument " "2"" of type '" "struct demuxer_data **""'"); + } + arg2 = (struct demuxer_data **)(argp2); + result = (long)ts_readstream(arg1,arg2); + resultobj = SWIG_From_long((long)(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_ts_get_more_data(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct ccx_demuxer *arg1 = (struct ccx_demuxer *) 0 ; + struct demuxer_data **arg2 = (struct demuxer_data **) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + void *argp2 = 0 ; + int res2 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + int result; + + if (!PyArg_ParseTuple(args,(char *)"OO:ts_get_more_data",&obj0,&obj1)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_ccx_demuxer, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "ts_get_more_data" "', argument " "1"" of type '" "struct ccx_demuxer *""'"); + } + arg1 = (struct ccx_demuxer *)(argp1); + res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_p_demuxer_data, 0 | 0 ); + if (!SWIG_IsOK(res2)) { + SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "ts_get_more_data" "', argument " "2"" of type '" "struct demuxer_data **""'"); + } + arg2 = (struct demuxer_data **)(argp2); + result = (int)ts_get_more_data(arg1,arg2); + resultobj = SWIG_From_int((int)(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_write_section(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct ccx_demuxer *arg1 = (struct ccx_demuxer *) 0 ; + struct ts_payload *arg2 = (struct ts_payload *) 0 ; + unsigned char *arg3 = (unsigned char *) 0 ; + int arg4 ; + struct program_info *arg5 = (struct program_info *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + void *argp2 = 0 ; + int res2 = 0 ; + void *argp3 = 0 ; + int res3 = 0 ; + int val4 ; + int ecode4 = 0 ; + void *argp5 = 0 ; + int res5 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + PyObject * obj2 = 0 ; + PyObject * obj3 = 0 ; + PyObject * obj4 = 0 ; + int result; + + if (!PyArg_ParseTuple(args,(char *)"OOOOO:write_section",&obj0,&obj1,&obj2,&obj3,&obj4)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_ccx_demuxer, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "write_section" "', argument " "1"" of type '" "struct ccx_demuxer *""'"); + } + arg1 = (struct ccx_demuxer *)(argp1); + res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_ts_payload, 0 | 0 ); + if (!SWIG_IsOK(res2)) { + SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "write_section" "', argument " "2"" of type '" "struct ts_payload *""'"); + } + arg2 = (struct ts_payload *)(argp2); + res3 = SWIG_ConvertPtr(obj2, &argp3,SWIGTYPE_p_unsigned_char, 0 | 0 ); + if (!SWIG_IsOK(res3)) { + SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "write_section" "', argument " "3"" of type '" "unsigned char *""'"); + } + arg3 = (unsigned char *)(argp3); + ecode4 = SWIG_AsVal_int(obj3, &val4); + if (!SWIG_IsOK(ecode4)) { + SWIG_exception_fail(SWIG_ArgError(ecode4), "in method '" "write_section" "', argument " "4"" of type '" "int""'"); + } + arg4 = (int)(val4); + res5 = SWIG_ConvertPtr(obj4, &argp5,SWIGTYPE_p_program_info, 0 | 0 ); + if (!SWIG_IsOK(res5)) { + SWIG_exception_fail(SWIG_ArgError(res5), "in method '" "write_section" "', argument " "5"" of type '" "struct program_info *""'"); + } + arg5 = (struct program_info *)(argp5); + result = (int)write_section(arg1,arg2,arg3,arg4,arg5); + resultobj = SWIG_From_int((int)(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_ts_buffer_psi_packet(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct ccx_demuxer *arg1 = (struct ccx_demuxer *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"O:ts_buffer_psi_packet",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_ccx_demuxer, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "ts_buffer_psi_packet" "', argument " "1"" of type '" "struct ccx_demuxer *""'"); + } + arg1 = (struct ccx_demuxer *)(argp1); + ts_buffer_psi_packet(arg1); + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_parse_PMT(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct ccx_demuxer *arg1 = (struct ccx_demuxer *) 0 ; + unsigned char *arg2 = (unsigned char *) 0 ; + int arg3 ; + struct program_info *arg4 = (struct program_info *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + void *argp2 = 0 ; + int res2 = 0 ; + int val3 ; + int ecode3 = 0 ; + void *argp4 = 0 ; + int res4 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + PyObject * obj2 = 0 ; + PyObject * obj3 = 0 ; + int result; + + if (!PyArg_ParseTuple(args,(char *)"OOOO:parse_PMT",&obj0,&obj1,&obj2,&obj3)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_ccx_demuxer, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "parse_PMT" "', argument " "1"" of type '" "struct ccx_demuxer *""'"); + } + arg1 = (struct ccx_demuxer *)(argp1); + res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_unsigned_char, 0 | 0 ); + if (!SWIG_IsOK(res2)) { + SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "parse_PMT" "', argument " "2"" of type '" "unsigned char *""'"); + } + arg2 = (unsigned char *)(argp2); + ecode3 = SWIG_AsVal_int(obj2, &val3); + if (!SWIG_IsOK(ecode3)) { + SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "parse_PMT" "', argument " "3"" of type '" "int""'"); + } + arg3 = (int)(val3); + res4 = SWIG_ConvertPtr(obj3, &argp4,SWIGTYPE_p_program_info, 0 | 0 ); + if (!SWIG_IsOK(res4)) { + SWIG_exception_fail(SWIG_ArgError(res4), "in method '" "parse_PMT" "', argument " "4"" of type '" "struct program_info *""'"); + } + arg4 = (struct program_info *)(argp4); + result = (int)parse_PMT(arg1,arg2,arg3,arg4); + resultobj = SWIG_From_int((int)(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_parse_PAT(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct ccx_demuxer *arg1 = (struct ccx_demuxer *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + int result; + + if (!PyArg_ParseTuple(args,(char *)"O:parse_PAT",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_ccx_demuxer, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "parse_PAT" "', argument " "1"" of type '" "struct ccx_demuxer *""'"); + } + arg1 = (struct ccx_demuxer *)(argp1); + result = (int)parse_PAT(arg1); + resultobj = SWIG_From_int((int)(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_parse_EPG_packet(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct lib_ccx_ctx *arg1 = (struct lib_ccx_ctx *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"O:parse_EPG_packet",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_lib_ccx_ctx, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "parse_EPG_packet" "', argument " "1"" of type '" "struct lib_ccx_ctx *""'"); + } + arg1 = (struct lib_ccx_ctx *)(argp1); + parse_EPG_packet(arg1); + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_EPG_free(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct lib_ccx_ctx *arg1 = (struct lib_ccx_ctx *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"O:EPG_free",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_lib_ccx_ctx, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "EPG_free" "', argument " "1"" of type '" "struct lib_ccx_ctx *""'"); + } + arg1 = (struct lib_ccx_ctx *)(argp1); + EPG_free(arg1); + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_EPG_DVB_decode_string(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + uint8_t *arg1 = (uint8_t *) 0 ; + size_t arg2 ; + void *argp1 = 0 ; + int res1 = 0 ; + size_t val2 ; + int ecode2 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + char *result = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OO:EPG_DVB_decode_string",&obj0,&obj1)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_uint8_t, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "EPG_DVB_decode_string" "', argument " "1"" of type '" "uint8_t *""'"); + } + arg1 = (uint8_t *)(argp1); + ecode2 = SWIG_AsVal_size_t(obj1, &val2); + if (!SWIG_IsOK(ecode2)) { + SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "EPG_DVB_decode_string" "', argument " "2"" of type '" "size_t""'"); + } + arg2 = (size_t)(val2); + result = (char *)EPG_DVB_decode_string(arg1,arg2); + resultobj = SWIG_FromCharPtr((const char *)result); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_parse_SDT(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct ccx_demuxer *arg1 = (struct ccx_demuxer *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"O:parse_SDT",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_ccx_demuxer, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "parse_SDT" "', argument " "1"" of type '" "struct ccx_demuxer *""'"); + } + arg1 = (struct ccx_demuxer *)(argp1); + parse_SDT(arg1); + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_myth_loop(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct lib_ccx_ctx *arg1 = (struct lib_ccx_ctx *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + int result; + + if (!PyArg_ParseTuple(args,(char *)"O:myth_loop",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_lib_ccx_ctx, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "myth_loop" "', argument " "1"" of type '" "struct lib_ccx_ctx *""'"); + } + arg1 = (struct lib_ccx_ctx *)(argp1); + result = (int)myth_loop(arg1); + resultobj = SWIG_From_int((int)(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_matroska_loop(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct lib_ccx_ctx *arg1 = (struct lib_ccx_ctx *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + int result; + + if (!PyArg_ParseTuple(args,(char *)"O:matroska_loop",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_lib_ccx_ctx, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "matroska_loop" "', argument " "1"" of type '" "struct lib_ccx_ctx *""'"); + } + arg1 = (struct lib_ccx_ctx *)(argp1); + result = (int)matroska_loop(arg1); + resultobj = SWIG_From_int((int)(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_fatal__varargs__(PyObject *SWIGUNUSEDPARM(self), PyObject *args, PyObject *varargs) { + PyObject *resultobj = 0; + int arg1 ; + char *arg2 = (char *) 0 ; + void *arg3 = 0 ; + int val1 ; + int ecode1 = 0 ; + int res2 ; + char *buf2 = 0 ; + int alloc2 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OO:fatal",&obj0,&obj1)) SWIG_fail; + ecode1 = SWIG_AsVal_int(obj0, &val1); + if (!SWIG_IsOK(ecode1)) { + SWIG_exception_fail(SWIG_ArgError(ecode1), "in method '" "fatal" "', argument " "1"" of type '" "int""'"); + } + arg1 = (int)(val1); + res2 = SWIG_AsCharPtrAndSize(obj1, &buf2, NULL, &alloc2); + if (!SWIG_IsOK(res2)) { + SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "fatal" "', argument " "2"" of type '" "char const *""'"); + } + arg2 = (char *)(buf2); + fatal(arg1,(char const *)arg2,arg3); + resultobj = SWIG_Py_Void(); + if (alloc2 == SWIG_NEWOBJ) free((char*)buf2); + return resultobj; +fail: + if (alloc2 == SWIG_NEWOBJ) free((char*)buf2); + return NULL; +} + + +SWIGINTERN PyObject *_wrap_fatal(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj; + PyObject *varargs; + PyObject *newargs; + + newargs = PyTuple_GetSlice(args,0,2); + varargs = PyTuple_GetSlice(args,2,PyTuple_Size(args)); + resultobj = _wrap_fatal__varargs__(NULL,newargs,varargs); + Py_XDECREF(newargs); + Py_XDECREF(varargs); + return resultobj; +} + + +SWIGINTERN PyObject *_wrap_mprint__varargs__(PyObject *SWIGUNUSEDPARM(self), PyObject *args, PyObject *varargs) { + PyObject *resultobj = 0; + char *arg1 = (char *) 0 ; + void *arg2 = 0 ; + int res1 ; + char *buf1 = 0 ; + int alloc1 = 0 ; + PyObject * obj0 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"O:mprint",&obj0)) SWIG_fail; + res1 = SWIG_AsCharPtrAndSize(obj0, &buf1, NULL, &alloc1); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "mprint" "', argument " "1"" of type '" "char const *""'"); + } + arg1 = (char *)(buf1); + mprint((char const *)arg1,arg2); + resultobj = SWIG_Py_Void(); + if (alloc1 == SWIG_NEWOBJ) free((char*)buf1); + return resultobj; +fail: + if (alloc1 == SWIG_NEWOBJ) free((char*)buf1); + return NULL; +} + + +SWIGINTERN PyObject *_wrap_mprint(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj; + PyObject *varargs; + PyObject *newargs; + + newargs = PyTuple_GetSlice(args,0,1); + varargs = PyTuple_GetSlice(args,1,PyTuple_Size(args)); + resultobj = _wrap_mprint__varargs__(NULL,newargs,varargs); + Py_XDECREF(newargs); + Py_XDECREF(varargs); + return resultobj; +} + + +SWIGINTERN PyObject *_wrap_sleep_secs(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + int arg1 ; + int val1 ; + int ecode1 = 0 ; + PyObject * obj0 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"O:sleep_secs",&obj0)) SWIG_fail; + ecode1 = SWIG_AsVal_int(obj0, &val1); + if (!SWIG_IsOK(ecode1)) { + SWIG_exception_fail(SWIG_ArgError(ecode1), "in method '" "sleep_secs" "', argument " "1"" of type '" "int""'"); + } + arg1 = (int)(val1); + sleep_secs(arg1); + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_dump(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + LLONG arg1 ; + unsigned char *arg2 = (unsigned char *) 0 ; + int arg3 ; + unsigned long arg4 ; + unsigned int arg5 ; + void *argp1 ; + int res1 = 0 ; + void *argp2 = 0 ; + int res2 = 0 ; + int val3 ; + int ecode3 = 0 ; + unsigned long val4 ; + int ecode4 = 0 ; + unsigned int val5 ; + int ecode5 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + PyObject * obj2 = 0 ; + PyObject * obj3 = 0 ; + PyObject * obj4 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OOOOO:dump",&obj0,&obj1,&obj2,&obj3,&obj4)) SWIG_fail; + { + res1 = SWIG_ConvertPtr(obj0, &argp1, SWIGTYPE_p_LLONG, 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "dump" "', argument " "1"" of type '" "LLONG""'"); + } + if (!argp1) { + SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "dump" "', argument " "1"" of type '" "LLONG""'"); + } else { + arg1 = *((LLONG *)(argp1)); + } + } + res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_unsigned_char, 0 | 0 ); + if (!SWIG_IsOK(res2)) { + SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "dump" "', argument " "2"" of type '" "unsigned char *""'"); + } + arg2 = (unsigned char *)(argp2); + ecode3 = SWIG_AsVal_int(obj2, &val3); + if (!SWIG_IsOK(ecode3)) { + SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "dump" "', argument " "3"" of type '" "int""'"); + } + arg3 = (int)(val3); + ecode4 = SWIG_AsVal_unsigned_SS_long(obj3, &val4); + if (!SWIG_IsOK(ecode4)) { + SWIG_exception_fail(SWIG_ArgError(ecode4), "in method '" "dump" "', argument " "4"" of type '" "unsigned long""'"); + } + arg4 = (unsigned long)(val4); + ecode5 = SWIG_AsVal_unsigned_SS_int(obj4, &val5); + if (!SWIG_IsOK(ecode5)) { + SWIG_exception_fail(SWIG_ArgError(ecode5), "in method '" "dump" "', argument " "5"" of type '" "unsigned int""'"); + } + arg5 = (unsigned int)(val5); + dump(arg1,arg2,arg3,arg4,arg5); + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_in_array(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + uint16_t *arg1 = (uint16_t *) 0 ; + uint16_t arg2 ; + uint16_t arg3 ; + void *argp1 = 0 ; + int res1 = 0 ; + void *argp2 ; + int res2 = 0 ; + void *argp3 ; + int res3 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + PyObject * obj2 = 0 ; + bool_t result; + + if (!PyArg_ParseTuple(args,(char *)"OOO:in_array",&obj0,&obj1,&obj2)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_uint16_t, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "in_array" "', argument " "1"" of type '" "uint16_t *""'"); + } + arg1 = (uint16_t *)(argp1); + { + res2 = SWIG_ConvertPtr(obj1, &argp2, SWIGTYPE_p_uint16_t, 0 ); + if (!SWIG_IsOK(res2)) { + SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "in_array" "', argument " "2"" of type '" "uint16_t""'"); + } + if (!argp2) { + SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "in_array" "', argument " "2"" of type '" "uint16_t""'"); + } else { + arg2 = *((uint16_t *)(argp2)); + } + } + { + res3 = SWIG_ConvertPtr(obj2, &argp3, SWIGTYPE_p_uint16_t, 0 ); + if (!SWIG_IsOK(res3)) { + SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "in_array" "', argument " "3"" of type '" "uint16_t""'"); + } + if (!argp3) { + SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "in_array" "', argument " "3"" of type '" "uint16_t""'"); + } else { + arg3 = *((uint16_t *)(argp3)); + } + } + result = in_array(arg1,arg2,arg3); + resultobj = SWIG_NewPointerObj((bool_t *)memcpy((bool_t *)calloc(1,sizeof(bool_t)),&result,sizeof(bool_t)), SWIGTYPE_p_bool_t, SWIG_POINTER_OWN | 0 ); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_hex_to_int(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + char arg1 ; + char arg2 ; + char val1 ; + int ecode1 = 0 ; + char val2 ; + int ecode2 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + int result; + + if (!PyArg_ParseTuple(args,(char *)"OO:hex_to_int",&obj0,&obj1)) SWIG_fail; + ecode1 = SWIG_AsVal_char(obj0, &val1); + if (!SWIG_IsOK(ecode1)) { + SWIG_exception_fail(SWIG_ArgError(ecode1), "in method '" "hex_to_int" "', argument " "1"" of type '" "char""'"); + } + arg1 = (char)(val1); + ecode2 = SWIG_AsVal_char(obj1, &val2); + if (!SWIG_IsOK(ecode2)) { + SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "hex_to_int" "', argument " "2"" of type '" "char""'"); + } + arg2 = (char)(val2); + result = (int)hex_to_int(arg1,arg2); + resultobj = SWIG_From_int((int)(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_hex_string_to_int(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + char *arg1 = (char *) 0 ; + int arg2 ; + int res1 ; + char *buf1 = 0 ; + int alloc1 = 0 ; + int val2 ; + int ecode2 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + int result; + + if (!PyArg_ParseTuple(args,(char *)"OO:hex_string_to_int",&obj0,&obj1)) SWIG_fail; + res1 = SWIG_AsCharPtrAndSize(obj0, &buf1, NULL, &alloc1); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "hex_string_to_int" "', argument " "1"" of type '" "char *""'"); + } + arg1 = (char *)(buf1); + ecode2 = SWIG_AsVal_int(obj1, &val2); + if (!SWIG_IsOK(ecode2)) { + SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "hex_string_to_int" "', argument " "2"" of type '" "int""'"); + } + arg2 = (int)(val2); + result = (int)hex_string_to_int(arg1,arg2); + resultobj = SWIG_From_int((int)(result)); + if (alloc1 == SWIG_NEWOBJ) free((char*)buf1); + return resultobj; +fail: + if (alloc1 == SWIG_NEWOBJ) free((char*)buf1); + return NULL; +} + + +SWIGINTERN PyObject *_wrap_timestamp_to_srttime(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + uint64_t arg1 ; + char *arg2 = (char *) 0 ; + void *argp1 ; + int res1 = 0 ; + int res2 ; + char *buf2 = 0 ; + int alloc2 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OO:timestamp_to_srttime",&obj0,&obj1)) SWIG_fail; + { + res1 = SWIG_ConvertPtr(obj0, &argp1, SWIGTYPE_p_uint64_t, 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "timestamp_to_srttime" "', argument " "1"" of type '" "uint64_t""'"); + } + if (!argp1) { + SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "timestamp_to_srttime" "', argument " "1"" of type '" "uint64_t""'"); + } else { + arg1 = *((uint64_t *)(argp1)); + } + } + res2 = SWIG_AsCharPtrAndSize(obj1, &buf2, NULL, &alloc2); + if (!SWIG_IsOK(res2)) { + SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "timestamp_to_srttime" "', argument " "2"" of type '" "char *""'"); + } + arg2 = (char *)(buf2); + timestamp_to_srttime(arg1,arg2); + resultobj = SWIG_Py_Void(); + if (alloc2 == SWIG_NEWOBJ) free((char*)buf2); + return resultobj; +fail: + if (alloc2 == SWIG_NEWOBJ) free((char*)buf2); + return NULL; +} + + +SWIGINTERN PyObject *_wrap_levenshtein_dist(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + uint64_t *arg1 = (uint64_t *) 0 ; + uint64_t *arg2 = (uint64_t *) 0 ; + unsigned int arg3 ; + unsigned int arg4 ; + void *argp1 = 0 ; + int res1 = 0 ; + void *argp2 = 0 ; + int res2 = 0 ; + unsigned int val3 ; + int ecode3 = 0 ; + unsigned int val4 ; + int ecode4 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + PyObject * obj2 = 0 ; + PyObject * obj3 = 0 ; + int result; + + if (!PyArg_ParseTuple(args,(char *)"OOOO:levenshtein_dist",&obj0,&obj1,&obj2,&obj3)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_uint64_t, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "levenshtein_dist" "', argument " "1"" of type '" "uint64_t const *""'"); + } + arg1 = (uint64_t *)(argp1); + res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_uint64_t, 0 | 0 ); + if (!SWIG_IsOK(res2)) { + SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "levenshtein_dist" "', argument " "2"" of type '" "uint64_t const *""'"); + } + arg2 = (uint64_t *)(argp2); + ecode3 = SWIG_AsVal_unsigned_SS_int(obj2, &val3); + if (!SWIG_IsOK(ecode3)) { + SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "levenshtein_dist" "', argument " "3"" of type '" "unsigned int""'"); + } + arg3 = (unsigned int)(val3); + ecode4 = SWIG_AsVal_unsigned_SS_int(obj3, &val4); + if (!SWIG_IsOK(ecode4)) { + SWIG_exception_fail(SWIG_ArgError(ecode4), "in method '" "levenshtein_dist" "', argument " "4"" of type '" "unsigned int""'"); + } + arg4 = (unsigned int)(val4); + result = (int)levenshtein_dist((uint64_t const *)arg1,(uint64_t const *)arg2,arg3,arg4); + resultobj = SWIG_From_int((int)(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_millis_to_date(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + uint64_t arg1 ; + char *arg2 = (char *) 0 ; + enum ccx_output_date_format arg3 ; + char arg4 ; + void *argp1 ; + int res1 = 0 ; + int res2 ; + char *buf2 = 0 ; + int alloc2 = 0 ; + int val3 ; + int ecode3 = 0 ; + char val4 ; + int ecode4 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + PyObject * obj2 = 0 ; + PyObject * obj3 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OOOO:millis_to_date",&obj0,&obj1,&obj2,&obj3)) SWIG_fail; + { + res1 = SWIG_ConvertPtr(obj0, &argp1, SWIGTYPE_p_uint64_t, 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "millis_to_date" "', argument " "1"" of type '" "uint64_t""'"); + } + if (!argp1) { + SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "millis_to_date" "', argument " "1"" of type '" "uint64_t""'"); + } else { + arg1 = *((uint64_t *)(argp1)); + } + } + res2 = SWIG_AsCharPtrAndSize(obj1, &buf2, NULL, &alloc2); + if (!SWIG_IsOK(res2)) { + SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "millis_to_date" "', argument " "2"" of type '" "char *""'"); + } + arg2 = (char *)(buf2); + ecode3 = SWIG_AsVal_int(obj2, &val3); + if (!SWIG_IsOK(ecode3)) { + SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "millis_to_date" "', argument " "3"" of type '" "enum ccx_output_date_format""'"); + } + arg3 = (enum ccx_output_date_format)(val3); + ecode4 = SWIG_AsVal_char(obj3, &val4); + if (!SWIG_IsOK(ecode4)) { + SWIG_exception_fail(SWIG_ArgError(ecode4), "in method '" "millis_to_date" "', argument " "4"" of type '" "char""'"); + } + arg4 = (char)(val4); + millis_to_date(arg1,arg2,arg3,arg4); + resultobj = SWIG_Py_Void(); + if (alloc2 == SWIG_NEWOBJ) free((char*)buf2); + return resultobj; +fail: + if (alloc2 == SWIG_NEWOBJ) free((char*)buf2); + return NULL; +} + + +SWIGINTERN PyObject *_wrap_signal_handler(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + int arg1 ; + int val1 ; + int ecode1 = 0 ; + PyObject * obj0 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"O:signal_handler",&obj0)) SWIG_fail; + ecode1 = SWIG_AsVal_int(obj0, &val1); + if (!SWIG_IsOK(ecode1)) { + SWIG_exception_fail(SWIG_ArgError(ecode1), "in method '" "signal_handler" "', argument " "1"" of type '" "int""'"); + } + arg1 = (int)(val1); + signal_handler(arg1); + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_change_filename(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct encoder_ctx *arg1 = (struct encoder_ctx *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + struct encoder_ctx *result = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"O:change_filename",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_encoder_ctx, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "change_filename" "', argument " "1"" of type '" "struct encoder_ctx *""'"); + } + arg1 = (struct encoder_ctx *)(argp1); + result = (struct encoder_ctx *)change_filename(arg1); + resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_encoder_ctx, 0 | 0 ); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_m_signal(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + int arg1 ; + void (*arg2)(int) = (void (*)(int)) 0 ; + int val1 ; + int ecode1 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OO:m_signal",&obj0,&obj1)) SWIG_fail; + ecode1 = SWIG_AsVal_int(obj0, &val1); + if (!SWIG_IsOK(ecode1)) { + SWIG_exception_fail(SWIG_ArgError(ecode1), "in method '" "m_signal" "', argument " "1"" of type '" "int""'"); + } + arg1 = (int)(val1); + { + int res = SWIG_ConvertFunctionPtr(obj1, (void**)(&arg2), SWIGTYPE_p_f_int__void); + if (!SWIG_IsOK(res)) { + SWIG_exception_fail(SWIG_ArgError(res), "in method '" "m_signal" "', argument " "2"" of type '" "void (*)(int)""'"); + } + } + m_signal(arg1,arg2); + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_buffered_seek(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct ccx_demuxer *arg1 = (struct ccx_demuxer *) 0 ; + int arg2 ; + void *argp1 = 0 ; + int res1 = 0 ; + int val2 ; + int ecode2 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OO:buffered_seek",&obj0,&obj1)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_ccx_demuxer, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "buffered_seek" "', argument " "1"" of type '" "struct ccx_demuxer *""'"); + } + arg1 = (struct ccx_demuxer *)(argp1); + ecode2 = SWIG_AsVal_int(obj1, &val2); + if (!SWIG_IsOK(ecode2)) { + SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "buffered_seek" "', argument " "2"" of type '" "int""'"); + } + arg2 = (int)(val2); + buffered_seek(arg1,arg2); + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_build_parity_table(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + + if (!PyArg_ParseTuple(args,(char *)":build_parity_table")) SWIG_fail; + build_parity_table(); + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_tlt_process_pes_packet(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct lib_cc_decode *arg1 = (struct lib_cc_decode *) 0 ; + uint8_t *arg2 = (uint8_t *) 0 ; + uint16_t arg3 ; + struct cc_subtitle *arg4 = (struct cc_subtitle *) 0 ; + int arg5 ; + void *argp1 = 0 ; + int res1 = 0 ; + void *argp2 = 0 ; + int res2 = 0 ; + void *argp3 ; + int res3 = 0 ; + void *argp4 = 0 ; + int res4 = 0 ; + int val5 ; + int ecode5 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + PyObject * obj2 = 0 ; + PyObject * obj3 = 0 ; + PyObject * obj4 = 0 ; + int result; + + if (!PyArg_ParseTuple(args,(char *)"OOOOO:tlt_process_pes_packet",&obj0,&obj1,&obj2,&obj3,&obj4)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_lib_cc_decode, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "tlt_process_pes_packet" "', argument " "1"" of type '" "struct lib_cc_decode *""'"); + } + arg1 = (struct lib_cc_decode *)(argp1); + res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_uint8_t, 0 | 0 ); + if (!SWIG_IsOK(res2)) { + SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "tlt_process_pes_packet" "', argument " "2"" of type '" "uint8_t *""'"); + } + arg2 = (uint8_t *)(argp2); + { + res3 = SWIG_ConvertPtr(obj2, &argp3, SWIGTYPE_p_uint16_t, 0 ); + if (!SWIG_IsOK(res3)) { + SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "tlt_process_pes_packet" "', argument " "3"" of type '" "uint16_t""'"); + } + if (!argp3) { + SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "tlt_process_pes_packet" "', argument " "3"" of type '" "uint16_t""'"); + } else { + arg3 = *((uint16_t *)(argp3)); + } + } + res4 = SWIG_ConvertPtr(obj3, &argp4,SWIGTYPE_p_cc_subtitle, 0 | 0 ); + if (!SWIG_IsOK(res4)) { + SWIG_exception_fail(SWIG_ArgError(res4), "in method '" "tlt_process_pes_packet" "', argument " "4"" of type '" "struct cc_subtitle *""'"); + } + arg4 = (struct cc_subtitle *)(argp4); + ecode5 = SWIG_AsVal_int(obj4, &val5); + if (!SWIG_IsOK(ecode5)) { + SWIG_exception_fail(SWIG_ArgError(ecode5), "in method '" "tlt_process_pes_packet" "', argument " "5"" of type '" "int""'"); + } + arg5 = (int)(val5); + result = (int)tlt_process_pes_packet(arg1,arg2,arg3,arg4,arg5); + resultobj = SWIG_From_int((int)(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_telxcc_init(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + void *result = 0 ; + + if (!PyArg_ParseTuple(args,(char *)":telxcc_init")) SWIG_fail; + result = (void *)telxcc_init(); + resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_void, 0 | 0 ); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_telxcc_close(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + void **arg1 = (void **) 0 ; + struct cc_subtitle *arg2 = (struct cc_subtitle *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + void *argp2 = 0 ; + int res2 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OO:telxcc_close",&obj0,&obj1)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_p_void, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "telxcc_close" "', argument " "1"" of type '" "void **""'"); + } + arg1 = (void **)(argp1); + res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_cc_subtitle, 0 | 0 ); + if (!SWIG_IsOK(res2)) { + SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "telxcc_close" "', argument " "2"" of type '" "struct cc_subtitle *""'"); + } + arg2 = (struct cc_subtitle *)(argp2); + telxcc_close(arg1,arg2); + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_tlt_read_rcwt(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + void *arg1 = (void *) 0 ; + unsigned char *arg2 = (unsigned char *) 0 ; + struct cc_subtitle *arg3 = (struct cc_subtitle *) 0 ; + int res1 ; + void *argp2 = 0 ; + int res2 = 0 ; + void *argp3 = 0 ; + int res3 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + PyObject * obj2 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OOO:tlt_read_rcwt",&obj0,&obj1,&obj2)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0,SWIG_as_voidptrptr(&arg1), 0, 0); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "tlt_read_rcwt" "', argument " "1"" of type '" "void *""'"); + } + res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_unsigned_char, 0 | 0 ); + if (!SWIG_IsOK(res2)) { + SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "tlt_read_rcwt" "', argument " "2"" of type '" "unsigned char *""'"); + } + arg2 = (unsigned char *)(argp2); + res3 = SWIG_ConvertPtr(obj2, &argp3,SWIGTYPE_p_cc_subtitle, 0 | 0 ); + if (!SWIG_IsOK(res3)) { + SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "tlt_read_rcwt" "', argument " "3"" of type '" "struct cc_subtitle *""'"); + } + arg3 = (struct cc_subtitle *)(argp3); + tlt_read_rcwt(arg1,arg2,arg3); + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_telxcc_configure(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + void *arg1 = (void *) 0 ; + struct ccx_s_teletext_config *arg2 = (struct ccx_s_teletext_config *) 0 ; + int res1 ; + void *argp2 = 0 ; + int res2 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OO:telxcc_configure",&obj0,&obj1)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0,SWIG_as_voidptrptr(&arg1), 0, 0); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "telxcc_configure" "', argument " "1"" of type '" "void *""'"); + } + res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_ccx_s_teletext_config, 0 | 0 ); + if (!SWIG_IsOK(res2)) { + SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "telxcc_configure" "', argument " "2"" of type '" "struct ccx_s_teletext_config *""'"); + } + arg2 = (struct ccx_s_teletext_config *)(argp2); + telxcc_configure(arg1,arg2); + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_telxcc_update_gt(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + void *arg1 = (void *) 0 ; + uint32_t arg2 ; + int res1 ; + void *argp2 ; + int res2 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OO:telxcc_update_gt",&obj0,&obj1)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0,SWIG_as_voidptrptr(&arg1), 0, 0); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "telxcc_update_gt" "', argument " "1"" of type '" "void *""'"); + } + { + res2 = SWIG_ConvertPtr(obj1, &argp2, SWIGTYPE_p_uint32_t, 0 ); + if (!SWIG_IsOK(res2)) { + SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "telxcc_update_gt" "', argument " "2"" of type '" "uint32_t""'"); + } + if (!argp2) { + SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "telxcc_update_gt" "', argument " "2"" of type '" "uint32_t""'"); + } else { + arg2 = *((uint32_t *)(argp2)); + } + } + telxcc_update_gt(arg1,arg2); + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN int Swig_var_strangeheader_set(PyObject *_val) { + { + int val; + int res = SWIG_AsVal_int(_val, &val); + if (!SWIG_IsOK(res)) { + SWIG_exception_fail(SWIG_ArgError(res), "in variable '""strangeheader""' of type '""int""'"); + } + strangeheader = (int)(val); + } + return 0; +fail: + return 1; +} + + +SWIGINTERN PyObject *Swig_var_strangeheader_get(void) { + PyObject *pyobj = 0; + + pyobj = SWIG_From_int((int)(strangeheader)); + return pyobj; +} + + +SWIGINTERN int Swig_var_desc_set(PyObject *_val) { + { + char const * *inp = 0; + int res = SWIG_ConvertPtr(_val, SWIG_as_voidptrptr(&inp), SWIGTYPE_p_p_char, 0 ); + if (!SWIG_IsOK(res)) { + SWIG_exception_fail(SWIG_ArgError(res), "in variable '""desc""' of type '""char const *[256]""'"); + } else if (inp) { + size_t ii = 0; + for (; ii < (size_t)256; ++ii) *(char const * *)&desc[ii] = *((char const * *)inp + ii); + } else { + SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in variable '""desc""' of type '""char const *[256]""'"); + } + } + return 0; +fail: + return 1; +} + + +SWIGINTERN PyObject *Swig_var_desc_get(void) { + PyObject *pyobj = 0; + + pyobj = SWIG_NewPointerObj(SWIG_as_voidptr(desc), SWIGTYPE_p_p_char, 0 ); + return pyobj; +} + + +SWIGINTERN int Swig_var_FILEBUFFERSIZE_set(PyObject *_val) { + { + long val; + int res = SWIG_AsVal_long(_val, &val); + if (!SWIG_IsOK(res)) { + SWIG_exception_fail(SWIG_ArgError(res), "in variable '""FILEBUFFERSIZE""' of type '""long""'"); + } + FILEBUFFERSIZE = (long)(val); + } + return 0; +fail: + return 1; +} + + +SWIGINTERN PyObject *Swig_var_FILEBUFFERSIZE_get(void) { + PyObject *pyobj = 0; + + pyobj = SWIG_From_long((long)(FILEBUFFERSIZE)); + return pyobj; +} + + +SWIGINTERN int Swig_var_firstcall_set(PyObject *_val) { + { + int val; + int res = SWIG_AsVal_int(_val, &val); + if (!SWIG_IsOK(res)) { + SWIG_exception_fail(SWIG_ArgError(res), "in variable '""firstcall""' of type '""int""'"); + } + firstcall = (int)(val); + } + return 0; +fail: + return 1; +} + + +SWIGINTERN PyObject *Swig_var_firstcall_get(void) { + PyObject *pyobj = 0; + + pyobj = SWIG_From_int((int)(firstcall)); + return pyobj; +} + + +SWIGINTERN int Swig_var_tspacket_set(PyObject *_val) { + { + unsigned char *inp = 0; + int res = SWIG_ConvertPtr(_val, SWIG_as_voidptrptr(&inp), SWIGTYPE_p_unsigned_char, 0 ); + if (!SWIG_IsOK(res)) { + SWIG_exception_fail(SWIG_ArgError(res), "in variable '""tspacket""' of type '""unsigned char [188]""'"); + } else if (inp) { + size_t ii = 0; + for (; ii < (size_t)188; ++ii) *(unsigned char *)&tspacket[ii] = *((unsigned char *)inp + ii); + } else { + SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in variable '""tspacket""' of type '""unsigned char [188]""'"); + } + } + return 0; +fail: + return 1; +} + + +SWIGINTERN PyObject *Swig_var_tspacket_get(void) { + PyObject *pyobj = 0; + + pyobj = SWIG_NewPointerObj(SWIG_as_voidptr(tspacket), SWIGTYPE_p_unsigned_char, 0 ); + return pyobj; +} + + +SWIGINTERN int Swig_var_last_pat_payload_set(PyObject *_val) { + { + void *argp = 0; + int res = SWIG_ConvertPtr(_val, &argp, SWIGTYPE_p_unsigned_char, 0 ); + if (!SWIG_IsOK(res)) { + SWIG_exception_fail(SWIG_ArgError(res), "in variable '""last_pat_payload""' of type '""unsigned char *""'"); + } + last_pat_payload = (unsigned char *)(argp); + } + return 0; +fail: + return 1; +} + + +SWIGINTERN PyObject *Swig_var_last_pat_payload_get(void) { + PyObject *pyobj = 0; + + pyobj = SWIG_NewPointerObj(SWIG_as_voidptr(last_pat_payload), SWIGTYPE_p_unsigned_char, 0 ); + return pyobj; +} + + +SWIGINTERN int Swig_var_last_pat_length_set(PyObject *_val) { + { + unsigned int val; + int res = SWIG_AsVal_unsigned_SS_int(_val, &val); + if (!SWIG_IsOK(res)) { + SWIG_exception_fail(SWIG_ArgError(res), "in variable '""last_pat_length""' of type '""unsigned int""'"); + } + last_pat_length = (unsigned int)(val); + } + return 0; +fail: + return 1; +} + + +SWIGINTERN PyObject *Swig_var_last_pat_length_get(void) { + PyObject *pyobj = 0; + + pyobj = SWIG_From_unsigned_SS_int((unsigned int)(last_pat_length)); + return pyobj; +} + + +SWIGINTERN int Swig_var_terminate_asap_set(PyObject *_val) { + { + int val; + int res = SWIG_AsVal_int(_val, &val); + if (!SWIG_IsOK(res)) { + SWIG_exception_fail(SWIG_ArgError(res), "in variable '""terminate_asap""' of type '""int volatile""'"); + } + terminate_asap = (int)(val); + } + return 0; +fail: + return 1; +} + + +SWIGINTERN PyObject *Swig_var_terminate_asap_get(void) { + PyObject *pyobj = 0; + + pyobj = SWIG_From_int((int)(terminate_asap)); + return pyobj; +} + + +SWIGINTERN int Swig_var_teletext_mode_set(PyObject *_val) { + { + unsigned int val; + int res = SWIG_AsVal_unsigned_SS_int(_val, &val); + if (!SWIG_IsOK(res)) { + SWIG_exception_fail(SWIG_ArgError(res), "in variable '""teletext_mode""' of type '""unsigned int""'"); + } + teletext_mode = (unsigned int)(val); + } + return 0; +fail: + return 1; +} + + +SWIGINTERN PyObject *Swig_var_teletext_mode_get(void) { + PyObject *pyobj = 0; + + pyobj = SWIG_From_unsigned_SS_int((unsigned int)(teletext_mode)); + return pyobj; +} + + +SWIGINTERN int Swig_var_tlt_config_set(PyObject *_val) { + { + void *argp = 0; + int res = SWIG_ConvertPtr(_val, &argp, SWIGTYPE_p_ccx_s_teletext_config, 0 ); + if (!SWIG_IsOK(res)) { + SWIG_exception_fail(SWIG_ArgError(res), "in variable '""tlt_config""' of type '""struct ccx_s_teletext_config""'"); + } + if (!argp) { + SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in variable '""tlt_config""' of type '""struct ccx_s_teletext_config""'"); + } else { + tlt_config = *((struct ccx_s_teletext_config *)(argp)); + } + } + return 0; +fail: + return 1; +} + + +SWIGINTERN PyObject *Swig_var_tlt_config_get(void) { + PyObject *pyobj = 0; + + pyobj = SWIG_NewPointerObj(SWIG_as_voidptr(&tlt_config), SWIGTYPE_p_ccx_s_teletext_config, 0 ); + return pyobj; +} + + +SWIGINTERN PyObject *_wrap_is_decoder_processed_enough(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct lib_ccx_ctx *arg1 = (struct lib_ccx_ctx *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + int result; + + if (!PyArg_ParseTuple(args,(char *)"O:is_decoder_processed_enough",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_lib_ccx_ctx, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "is_decoder_processed_enough" "', argument " "1"" of type '" "struct lib_ccx_ctx *""'"); + } + arg1 = (struct lib_ccx_ctx *)(argp1); + result = (int)is_decoder_processed_enough(arg1); + resultobj = SWIG_From_int((int)(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_update_decoder_list_cinfo(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct lib_ccx_ctx *arg1 = (struct lib_ccx_ctx *) 0 ; + struct cap_info *arg2 = (struct cap_info *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + void *argp2 = 0 ; + int res2 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + struct lib_cc_decode *result = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OO:update_decoder_list_cinfo",&obj0,&obj1)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_lib_ccx_ctx, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "update_decoder_list_cinfo" "', argument " "1"" of type '" "struct lib_ccx_ctx *""'"); + } + arg1 = (struct lib_ccx_ctx *)(argp1); + res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_cap_info, 0 | 0 ); + if (!SWIG_IsOK(res2)) { + SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "update_decoder_list_cinfo" "', argument " "2"" of type '" "struct cap_info *""'"); + } + arg2 = (struct cap_info *)(argp2); + result = (struct lib_cc_decode *)update_decoder_list_cinfo(arg1,arg2); + resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_lib_cc_decode, 0 | 0 ); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_update_decoder_list(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct lib_ccx_ctx *arg1 = (struct lib_ccx_ctx *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + struct lib_cc_decode *result = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"O:update_decoder_list",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_lib_ccx_ctx, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "update_decoder_list" "', argument " "1"" of type '" "struct lib_ccx_ctx *""'"); + } + arg1 = (struct lib_ccx_ctx *)(argp1); + result = (struct lib_cc_decode *)update_decoder_list(arg1); + resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_lib_cc_decode, 0 | 0 ); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_update_encoder_list_cinfo(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct lib_ccx_ctx *arg1 = (struct lib_ccx_ctx *) 0 ; + struct cap_info *arg2 = (struct cap_info *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + void *argp2 = 0 ; + int res2 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + struct encoder_ctx *result = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OO:update_encoder_list_cinfo",&obj0,&obj1)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_lib_ccx_ctx, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "update_encoder_list_cinfo" "', argument " "1"" of type '" "struct lib_ccx_ctx *""'"); + } + arg1 = (struct lib_ccx_ctx *)(argp1); + res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_cap_info, 0 | 0 ); + if (!SWIG_IsOK(res2)) { + SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "update_encoder_list_cinfo" "', argument " "2"" of type '" "struct cap_info *""'"); + } + arg2 = (struct cap_info *)(argp2); + result = (struct encoder_ctx *)update_encoder_list_cinfo(arg1,arg2); + resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_encoder_ctx, 0 | 0 ); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_update_encoder_list(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct lib_ccx_ctx *arg1 = (struct lib_ccx_ctx *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + struct encoder_ctx *result = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"O:update_encoder_list",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_lib_ccx_ctx, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "update_encoder_list" "', argument " "1"" of type '" "struct lib_ccx_ctx *""'"); + } + arg1 = (struct lib_ccx_ctx *)(argp1); + result = (struct encoder_ctx *)update_encoder_list(arg1); + resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_encoder_ctx, 0 | 0 ); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_get_encoder_by_pn(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct lib_ccx_ctx *arg1 = (struct lib_ccx_ctx *) 0 ; + int arg2 ; + void *argp1 = 0 ; + int res1 = 0 ; + int val2 ; + int ecode2 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + struct encoder_ctx *result = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OO:get_encoder_by_pn",&obj0,&obj1)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_lib_ccx_ctx, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "get_encoder_by_pn" "', argument " "1"" of type '" "struct lib_ccx_ctx *""'"); + } + arg1 = (struct lib_ccx_ctx *)(argp1); + ecode2 = SWIG_AsVal_int(obj1, &val2); + if (!SWIG_IsOK(ecode2)) { + SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "get_encoder_by_pn" "', argument " "2"" of type '" "int""'"); + } + arg2 = (int)(val2); + result = (struct encoder_ctx *)get_encoder_by_pn(arg1,arg2); + resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_encoder_ctx, 0 | 0 ); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_parse_configuration(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct ccx_s_options *arg1 = (struct ccx_s_options *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"O:parse_configuration",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_ccx_s_options, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "parse_configuration" "', argument " "1"" of type '" "struct ccx_s_options *""'"); + } + arg1 = (struct ccx_s_options *)(argp1); + parse_configuration(arg1); + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_demuxer_cfg_m2ts_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct demuxer_cfg *arg1 = (struct demuxer_cfg *) 0 ; + int arg2 ; + void *argp1 = 0 ; + int res1 = 0 ; + int val2 ; + int ecode2 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OO:demuxer_cfg_m2ts_set",&obj0,&obj1)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_demuxer_cfg, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "demuxer_cfg_m2ts_set" "', argument " "1"" of type '" "struct demuxer_cfg *""'"); + } + arg1 = (struct demuxer_cfg *)(argp1); + ecode2 = SWIG_AsVal_int(obj1, &val2); + if (!SWIG_IsOK(ecode2)) { + SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "demuxer_cfg_m2ts_set" "', argument " "2"" of type '" "int""'"); + } + arg2 = (int)(val2); + if (arg1) (arg1)->m2ts = arg2; + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_demuxer_cfg_m2ts_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct demuxer_cfg *arg1 = (struct demuxer_cfg *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + int result; + + if (!PyArg_ParseTuple(args,(char *)"O:demuxer_cfg_m2ts_get",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_demuxer_cfg, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "demuxer_cfg_m2ts_get" "', argument " "1"" of type '" "struct demuxer_cfg *""'"); + } + arg1 = (struct demuxer_cfg *)(argp1); + result = (int) ((arg1)->m2ts); + resultobj = SWIG_From_int((int)(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_demuxer_cfg_auto_stream_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct demuxer_cfg *arg1 = (struct demuxer_cfg *) 0 ; + enum ccx_stream_mode_enum arg2 ; + void *argp1 = 0 ; + int res1 = 0 ; + int val2 ; + int ecode2 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OO:demuxer_cfg_auto_stream_set",&obj0,&obj1)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_demuxer_cfg, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "demuxer_cfg_auto_stream_set" "', argument " "1"" of type '" "struct demuxer_cfg *""'"); + } + arg1 = (struct demuxer_cfg *)(argp1); + ecode2 = SWIG_AsVal_int(obj1, &val2); + if (!SWIG_IsOK(ecode2)) { + SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "demuxer_cfg_auto_stream_set" "', argument " "2"" of type '" "enum ccx_stream_mode_enum""'"); + } + arg2 = (enum ccx_stream_mode_enum)(val2); + if (arg1) (arg1)->auto_stream = arg2; + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_demuxer_cfg_auto_stream_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct demuxer_cfg *arg1 = (struct demuxer_cfg *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + enum ccx_stream_mode_enum result; + + if (!PyArg_ParseTuple(args,(char *)"O:demuxer_cfg_auto_stream_get",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_demuxer_cfg, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "demuxer_cfg_auto_stream_get" "', argument " "1"" of type '" "struct demuxer_cfg *""'"); + } + arg1 = (struct demuxer_cfg *)(argp1); + result = (enum ccx_stream_mode_enum) ((arg1)->auto_stream); + resultobj = SWIG_From_int((int)(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_demuxer_cfg_out_elementarystream_filename_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct demuxer_cfg *arg1 = (struct demuxer_cfg *) 0 ; + char *arg2 = (char *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + int res2 ; + char *buf2 = 0 ; + int alloc2 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OO:demuxer_cfg_out_elementarystream_filename_set",&obj0,&obj1)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_demuxer_cfg, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "demuxer_cfg_out_elementarystream_filename_set" "', argument " "1"" of type '" "struct demuxer_cfg *""'"); + } + arg1 = (struct demuxer_cfg *)(argp1); + res2 = SWIG_AsCharPtrAndSize(obj1, &buf2, NULL, &alloc2); + if (!SWIG_IsOK(res2)) { + SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "demuxer_cfg_out_elementarystream_filename_set" "', argument " "2"" of type '" "char *""'"); + } + arg2 = (char *)(buf2); + if (arg1->out_elementarystream_filename) free((char*)arg1->out_elementarystream_filename); + if (arg2) { + size_t size = strlen((const char *)(arg2)) + 1; + arg1->out_elementarystream_filename = (char *)(char *)memcpy(malloc((size)*sizeof(char)), (const char *)(arg2), sizeof(char)*(size)); + } else { + arg1->out_elementarystream_filename = 0; + } + resultobj = SWIG_Py_Void(); + if (alloc2 == SWIG_NEWOBJ) free((char*)buf2); + return resultobj; +fail: + if (alloc2 == SWIG_NEWOBJ) free((char*)buf2); + return NULL; +} + + +SWIGINTERN PyObject *_wrap_demuxer_cfg_out_elementarystream_filename_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct demuxer_cfg *arg1 = (struct demuxer_cfg *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + char *result = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"O:demuxer_cfg_out_elementarystream_filename_get",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_demuxer_cfg, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "demuxer_cfg_out_elementarystream_filename_get" "', argument " "1"" of type '" "struct demuxer_cfg *""'"); + } + arg1 = (struct demuxer_cfg *)(argp1); + result = (char *) ((arg1)->out_elementarystream_filename); + resultobj = SWIG_FromCharPtr((const char *)result); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_demuxer_cfg_codec_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct demuxer_cfg *arg1 = (struct demuxer_cfg *) 0 ; + enum ccx_code_type arg2 ; + void *argp1 = 0 ; + int res1 = 0 ; + int val2 ; + int ecode2 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OO:demuxer_cfg_codec_set",&obj0,&obj1)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_demuxer_cfg, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "demuxer_cfg_codec_set" "', argument " "1"" of type '" "struct demuxer_cfg *""'"); + } + arg1 = (struct demuxer_cfg *)(argp1); + ecode2 = SWIG_AsVal_int(obj1, &val2); + if (!SWIG_IsOK(ecode2)) { + SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "demuxer_cfg_codec_set" "', argument " "2"" of type '" "enum ccx_code_type""'"); + } + arg2 = (enum ccx_code_type)(val2); + if (arg1) (arg1)->codec = arg2; + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_demuxer_cfg_codec_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct demuxer_cfg *arg1 = (struct demuxer_cfg *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + enum ccx_code_type result; + + if (!PyArg_ParseTuple(args,(char *)"O:demuxer_cfg_codec_get",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_demuxer_cfg, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "demuxer_cfg_codec_get" "', argument " "1"" of type '" "struct demuxer_cfg *""'"); + } + arg1 = (struct demuxer_cfg *)(argp1); + result = (enum ccx_code_type) ((arg1)->codec); + resultobj = SWIG_From_int((int)(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_demuxer_cfg_nocodec_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct demuxer_cfg *arg1 = (struct demuxer_cfg *) 0 ; + enum ccx_code_type arg2 ; + void *argp1 = 0 ; + int res1 = 0 ; + int val2 ; + int ecode2 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OO:demuxer_cfg_nocodec_set",&obj0,&obj1)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_demuxer_cfg, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "demuxer_cfg_nocodec_set" "', argument " "1"" of type '" "struct demuxer_cfg *""'"); + } + arg1 = (struct demuxer_cfg *)(argp1); + ecode2 = SWIG_AsVal_int(obj1, &val2); + if (!SWIG_IsOK(ecode2)) { + SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "demuxer_cfg_nocodec_set" "', argument " "2"" of type '" "enum ccx_code_type""'"); + } + arg2 = (enum ccx_code_type)(val2); + if (arg1) (arg1)->nocodec = arg2; + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_demuxer_cfg_nocodec_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct demuxer_cfg *arg1 = (struct demuxer_cfg *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + enum ccx_code_type result; + + if (!PyArg_ParseTuple(args,(char *)"O:demuxer_cfg_nocodec_get",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_demuxer_cfg, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "demuxer_cfg_nocodec_get" "', argument " "1"" of type '" "struct demuxer_cfg *""'"); + } + arg1 = (struct demuxer_cfg *)(argp1); + result = (enum ccx_code_type) ((arg1)->nocodec); + resultobj = SWIG_From_int((int)(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_demuxer_cfg_ts_autoprogram_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct demuxer_cfg *arg1 = (struct demuxer_cfg *) 0 ; + unsigned int arg2 ; + void *argp1 = 0 ; + int res1 = 0 ; + unsigned int val2 ; + int ecode2 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OO:demuxer_cfg_ts_autoprogram_set",&obj0,&obj1)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_demuxer_cfg, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "demuxer_cfg_ts_autoprogram_set" "', argument " "1"" of type '" "struct demuxer_cfg *""'"); + } + arg1 = (struct demuxer_cfg *)(argp1); + ecode2 = SWIG_AsVal_unsigned_SS_int(obj1, &val2); + if (!SWIG_IsOK(ecode2)) { + SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "demuxer_cfg_ts_autoprogram_set" "', argument " "2"" of type '" "unsigned int""'"); + } + arg2 = (unsigned int)(val2); + if (arg1) (arg1)->ts_autoprogram = arg2; + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_demuxer_cfg_ts_autoprogram_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct demuxer_cfg *arg1 = (struct demuxer_cfg *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + unsigned int result; + + if (!PyArg_ParseTuple(args,(char *)"O:demuxer_cfg_ts_autoprogram_get",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_demuxer_cfg, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "demuxer_cfg_ts_autoprogram_get" "', argument " "1"" of type '" "struct demuxer_cfg *""'"); + } + arg1 = (struct demuxer_cfg *)(argp1); + result = (unsigned int) ((arg1)->ts_autoprogram); + resultobj = SWIG_From_unsigned_SS_int((unsigned int)(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_demuxer_cfg_ts_allprogram_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct demuxer_cfg *arg1 = (struct demuxer_cfg *) 0 ; + unsigned int arg2 ; + void *argp1 = 0 ; + int res1 = 0 ; + unsigned int val2 ; + int ecode2 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OO:demuxer_cfg_ts_allprogram_set",&obj0,&obj1)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_demuxer_cfg, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "demuxer_cfg_ts_allprogram_set" "', argument " "1"" of type '" "struct demuxer_cfg *""'"); + } + arg1 = (struct demuxer_cfg *)(argp1); + ecode2 = SWIG_AsVal_unsigned_SS_int(obj1, &val2); + if (!SWIG_IsOK(ecode2)) { + SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "demuxer_cfg_ts_allprogram_set" "', argument " "2"" of type '" "unsigned int""'"); + } + arg2 = (unsigned int)(val2); + if (arg1) (arg1)->ts_allprogram = arg2; + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_demuxer_cfg_ts_allprogram_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct demuxer_cfg *arg1 = (struct demuxer_cfg *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + unsigned int result; + + if (!PyArg_ParseTuple(args,(char *)"O:demuxer_cfg_ts_allprogram_get",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_demuxer_cfg, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "demuxer_cfg_ts_allprogram_get" "', argument " "1"" of type '" "struct demuxer_cfg *""'"); + } + arg1 = (struct demuxer_cfg *)(argp1); + result = (unsigned int) ((arg1)->ts_allprogram); + resultobj = SWIG_From_unsigned_SS_int((unsigned int)(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_demuxer_cfg_ts_cappids_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct demuxer_cfg *arg1 = (struct demuxer_cfg *) 0 ; + unsigned int *arg2 ; + void *argp1 = 0 ; + int res1 = 0 ; + void *argp2 = 0 ; + int res2 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OO:demuxer_cfg_ts_cappids_set",&obj0,&obj1)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_demuxer_cfg, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "demuxer_cfg_ts_cappids_set" "', argument " "1"" of type '" "struct demuxer_cfg *""'"); + } + arg1 = (struct demuxer_cfg *)(argp1); + res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_unsigned_int, 0 | 0 ); + if (!SWIG_IsOK(res2)) { + SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "demuxer_cfg_ts_cappids_set" "', argument " "2"" of type '" "unsigned int [128]""'"); + } + arg2 = (unsigned int *)(argp2); + { + if (arg2) { + size_t ii = 0; + for (; ii < (size_t)128; ++ii) *(unsigned int *)&arg1->ts_cappids[ii] = *((unsigned int *)arg2 + ii); + } else { + SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in variable '""ts_cappids""' of type '""unsigned int [128]""'"); + } + } + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_demuxer_cfg_ts_cappids_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct demuxer_cfg *arg1 = (struct demuxer_cfg *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + unsigned int *result = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"O:demuxer_cfg_ts_cappids_get",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_demuxer_cfg, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "demuxer_cfg_ts_cappids_get" "', argument " "1"" of type '" "struct demuxer_cfg *""'"); + } + arg1 = (struct demuxer_cfg *)(argp1); + result = (unsigned int *)(unsigned int *) ((arg1)->ts_cappids); + resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_unsigned_int, 0 | 0 ); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_demuxer_cfg_nb_ts_cappid_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct demuxer_cfg *arg1 = (struct demuxer_cfg *) 0 ; + int arg2 ; + void *argp1 = 0 ; + int res1 = 0 ; + int val2 ; + int ecode2 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OO:demuxer_cfg_nb_ts_cappid_set",&obj0,&obj1)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_demuxer_cfg, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "demuxer_cfg_nb_ts_cappid_set" "', argument " "1"" of type '" "struct demuxer_cfg *""'"); + } + arg1 = (struct demuxer_cfg *)(argp1); + ecode2 = SWIG_AsVal_int(obj1, &val2); + if (!SWIG_IsOK(ecode2)) { + SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "demuxer_cfg_nb_ts_cappid_set" "', argument " "2"" of type '" "int""'"); + } + arg2 = (int)(val2); + if (arg1) (arg1)->nb_ts_cappid = arg2; + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_demuxer_cfg_nb_ts_cappid_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct demuxer_cfg *arg1 = (struct demuxer_cfg *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + int result; + + if (!PyArg_ParseTuple(args,(char *)"O:demuxer_cfg_nb_ts_cappid_get",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_demuxer_cfg, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "demuxer_cfg_nb_ts_cappid_get" "', argument " "1"" of type '" "struct demuxer_cfg *""'"); + } + arg1 = (struct demuxer_cfg *)(argp1); + result = (int) ((arg1)->nb_ts_cappid); + resultobj = SWIG_From_int((int)(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_demuxer_cfg_ts_forced_cappid_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct demuxer_cfg *arg1 = (struct demuxer_cfg *) 0 ; + unsigned int arg2 ; + void *argp1 = 0 ; + int res1 = 0 ; + unsigned int val2 ; + int ecode2 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OO:demuxer_cfg_ts_forced_cappid_set",&obj0,&obj1)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_demuxer_cfg, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "demuxer_cfg_ts_forced_cappid_set" "', argument " "1"" of type '" "struct demuxer_cfg *""'"); + } + arg1 = (struct demuxer_cfg *)(argp1); + ecode2 = SWIG_AsVal_unsigned_SS_int(obj1, &val2); + if (!SWIG_IsOK(ecode2)) { + SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "demuxer_cfg_ts_forced_cappid_set" "', argument " "2"" of type '" "unsigned int""'"); + } + arg2 = (unsigned int)(val2); + if (arg1) (arg1)->ts_forced_cappid = arg2; + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_demuxer_cfg_ts_forced_cappid_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct demuxer_cfg *arg1 = (struct demuxer_cfg *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + unsigned int result; + + if (!PyArg_ParseTuple(args,(char *)"O:demuxer_cfg_ts_forced_cappid_get",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_demuxer_cfg, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "demuxer_cfg_ts_forced_cappid_get" "', argument " "1"" of type '" "struct demuxer_cfg *""'"); + } + arg1 = (struct demuxer_cfg *)(argp1); + result = (unsigned int) ((arg1)->ts_forced_cappid); + resultobj = SWIG_From_unsigned_SS_int((unsigned int)(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_demuxer_cfg_ts_forced_program_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct demuxer_cfg *arg1 = (struct demuxer_cfg *) 0 ; + int arg2 ; + void *argp1 = 0 ; + int res1 = 0 ; + int val2 ; + int ecode2 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OO:demuxer_cfg_ts_forced_program_set",&obj0,&obj1)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_demuxer_cfg, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "demuxer_cfg_ts_forced_program_set" "', argument " "1"" of type '" "struct demuxer_cfg *""'"); + } + arg1 = (struct demuxer_cfg *)(argp1); + ecode2 = SWIG_AsVal_int(obj1, &val2); + if (!SWIG_IsOK(ecode2)) { + SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "demuxer_cfg_ts_forced_program_set" "', argument " "2"" of type '" "int""'"); + } + arg2 = (int)(val2); + if (arg1) (arg1)->ts_forced_program = arg2; + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_demuxer_cfg_ts_forced_program_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct demuxer_cfg *arg1 = (struct demuxer_cfg *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + int result; + + if (!PyArg_ParseTuple(args,(char *)"O:demuxer_cfg_ts_forced_program_get",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_demuxer_cfg, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "demuxer_cfg_ts_forced_program_get" "', argument " "1"" of type '" "struct demuxer_cfg *""'"); + } + arg1 = (struct demuxer_cfg *)(argp1); + result = (int) ((arg1)->ts_forced_program); + resultobj = SWIG_From_int((int)(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_demuxer_cfg_ts_forced_program_selected_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct demuxer_cfg *arg1 = (struct demuxer_cfg *) 0 ; + unsigned int arg2 ; + void *argp1 = 0 ; + int res1 = 0 ; + unsigned int val2 ; + int ecode2 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OO:demuxer_cfg_ts_forced_program_selected_set",&obj0,&obj1)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_demuxer_cfg, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "demuxer_cfg_ts_forced_program_selected_set" "', argument " "1"" of type '" "struct demuxer_cfg *""'"); + } + arg1 = (struct demuxer_cfg *)(argp1); + ecode2 = SWIG_AsVal_unsigned_SS_int(obj1, &val2); + if (!SWIG_IsOK(ecode2)) { + SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "demuxer_cfg_ts_forced_program_selected_set" "', argument " "2"" of type '" "unsigned int""'"); + } + arg2 = (unsigned int)(val2); + if (arg1) (arg1)->ts_forced_program_selected = arg2; + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_demuxer_cfg_ts_forced_program_selected_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct demuxer_cfg *arg1 = (struct demuxer_cfg *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + unsigned int result; + + if (!PyArg_ParseTuple(args,(char *)"O:demuxer_cfg_ts_forced_program_selected_get",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_demuxer_cfg, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "demuxer_cfg_ts_forced_program_selected_get" "', argument " "1"" of type '" "struct demuxer_cfg *""'"); + } + arg1 = (struct demuxer_cfg *)(argp1); + result = (unsigned int) ((arg1)->ts_forced_program_selected); + resultobj = SWIG_From_unsigned_SS_int((unsigned int)(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_demuxer_cfg_ts_datastreamtype_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct demuxer_cfg *arg1 = (struct demuxer_cfg *) 0 ; + int arg2 ; + void *argp1 = 0 ; + int res1 = 0 ; + int val2 ; + int ecode2 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OO:demuxer_cfg_ts_datastreamtype_set",&obj0,&obj1)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_demuxer_cfg, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "demuxer_cfg_ts_datastreamtype_set" "', argument " "1"" of type '" "struct demuxer_cfg *""'"); + } + arg1 = (struct demuxer_cfg *)(argp1); + ecode2 = SWIG_AsVal_int(obj1, &val2); + if (!SWIG_IsOK(ecode2)) { + SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "demuxer_cfg_ts_datastreamtype_set" "', argument " "2"" of type '" "int""'"); + } + arg2 = (int)(val2); + if (arg1) (arg1)->ts_datastreamtype = arg2; + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_demuxer_cfg_ts_datastreamtype_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct demuxer_cfg *arg1 = (struct demuxer_cfg *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + int result; + + if (!PyArg_ParseTuple(args,(char *)"O:demuxer_cfg_ts_datastreamtype_get",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_demuxer_cfg, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "demuxer_cfg_ts_datastreamtype_get" "', argument " "1"" of type '" "struct demuxer_cfg *""'"); + } + arg1 = (struct demuxer_cfg *)(argp1); + result = (int) ((arg1)->ts_datastreamtype); + resultobj = SWIG_From_int((int)(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_demuxer_cfg_ts_forced_streamtype_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct demuxer_cfg *arg1 = (struct demuxer_cfg *) 0 ; + unsigned int arg2 ; + void *argp1 = 0 ; + int res1 = 0 ; + unsigned int val2 ; + int ecode2 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OO:demuxer_cfg_ts_forced_streamtype_set",&obj0,&obj1)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_demuxer_cfg, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "demuxer_cfg_ts_forced_streamtype_set" "', argument " "1"" of type '" "struct demuxer_cfg *""'"); + } + arg1 = (struct demuxer_cfg *)(argp1); + ecode2 = SWIG_AsVal_unsigned_SS_int(obj1, &val2); + if (!SWIG_IsOK(ecode2)) { + SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "demuxer_cfg_ts_forced_streamtype_set" "', argument " "2"" of type '" "unsigned int""'"); + } + arg2 = (unsigned int)(val2); + if (arg1) (arg1)->ts_forced_streamtype = arg2; + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_demuxer_cfg_ts_forced_streamtype_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct demuxer_cfg *arg1 = (struct demuxer_cfg *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + unsigned int result; + + if (!PyArg_ParseTuple(args,(char *)"O:demuxer_cfg_ts_forced_streamtype_get",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_demuxer_cfg, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "demuxer_cfg_ts_forced_streamtype_get" "', argument " "1"" of type '" "struct demuxer_cfg *""'"); + } + arg1 = (struct demuxer_cfg *)(argp1); + result = (unsigned int) ((arg1)->ts_forced_streamtype); + resultobj = SWIG_From_unsigned_SS_int((unsigned int)(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_new_demuxer_cfg(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct demuxer_cfg *result = 0 ; + + if (!PyArg_ParseTuple(args,(char *)":new_demuxer_cfg")) SWIG_fail; + result = (struct demuxer_cfg *)calloc(1, sizeof(struct demuxer_cfg)); + resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_demuxer_cfg, SWIG_POINTER_NEW | 0 ); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_delete_demuxer_cfg(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct demuxer_cfg *arg1 = (struct demuxer_cfg *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"O:delete_demuxer_cfg",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_demuxer_cfg, SWIG_POINTER_DISOWN | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_demuxer_cfg" "', argument " "1"" of type '" "struct demuxer_cfg *""'"); + } + arg1 = (struct demuxer_cfg *)(argp1); + free((char *) arg1); + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *demuxer_cfg_swigregister(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *obj; + if (!PyArg_ParseTuple(args,(char *)"O:swigregister", &obj)) return NULL; + SWIG_TypeNewClientData(SWIGTYPE_p_demuxer_cfg, SWIG_NewClientData(obj)); + return SWIG_Py_Void(); +} + +SWIGINTERN PyObject *_wrap_encoder_cfg_extract_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct encoder_cfg *arg1 = (struct encoder_cfg *) 0 ; + int arg2 ; + void *argp1 = 0 ; + int res1 = 0 ; + int val2 ; + int ecode2 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OO:encoder_cfg_extract_set",&obj0,&obj1)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_encoder_cfg, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "encoder_cfg_extract_set" "', argument " "1"" of type '" "struct encoder_cfg *""'"); + } + arg1 = (struct encoder_cfg *)(argp1); + ecode2 = SWIG_AsVal_int(obj1, &val2); + if (!SWIG_IsOK(ecode2)) { + SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "encoder_cfg_extract_set" "', argument " "2"" of type '" "int""'"); + } + arg2 = (int)(val2); + if (arg1) (arg1)->extract = arg2; + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_encoder_cfg_extract_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct encoder_cfg *arg1 = (struct encoder_cfg *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + int result; + + if (!PyArg_ParseTuple(args,(char *)"O:encoder_cfg_extract_get",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_encoder_cfg, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "encoder_cfg_extract_get" "', argument " "1"" of type '" "struct encoder_cfg *""'"); + } + arg1 = (struct encoder_cfg *)(argp1); + result = (int) ((arg1)->extract); + resultobj = SWIG_From_int((int)(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_encoder_cfg_dtvcc_extract_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct encoder_cfg *arg1 = (struct encoder_cfg *) 0 ; + int arg2 ; + void *argp1 = 0 ; + int res1 = 0 ; + int val2 ; + int ecode2 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OO:encoder_cfg_dtvcc_extract_set",&obj0,&obj1)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_encoder_cfg, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "encoder_cfg_dtvcc_extract_set" "', argument " "1"" of type '" "struct encoder_cfg *""'"); + } + arg1 = (struct encoder_cfg *)(argp1); + ecode2 = SWIG_AsVal_int(obj1, &val2); + if (!SWIG_IsOK(ecode2)) { + SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "encoder_cfg_dtvcc_extract_set" "', argument " "2"" of type '" "int""'"); + } + arg2 = (int)(val2); + if (arg1) (arg1)->dtvcc_extract = arg2; + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_encoder_cfg_dtvcc_extract_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct encoder_cfg *arg1 = (struct encoder_cfg *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + int result; + + if (!PyArg_ParseTuple(args,(char *)"O:encoder_cfg_dtvcc_extract_get",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_encoder_cfg, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "encoder_cfg_dtvcc_extract_get" "', argument " "1"" of type '" "struct encoder_cfg *""'"); + } + arg1 = (struct encoder_cfg *)(argp1); + result = (int) ((arg1)->dtvcc_extract); + resultobj = SWIG_From_int((int)(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_encoder_cfg_gui_mode_reports_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct encoder_cfg *arg1 = (struct encoder_cfg *) 0 ; + int arg2 ; + void *argp1 = 0 ; + int res1 = 0 ; + int val2 ; + int ecode2 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OO:encoder_cfg_gui_mode_reports_set",&obj0,&obj1)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_encoder_cfg, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "encoder_cfg_gui_mode_reports_set" "', argument " "1"" of type '" "struct encoder_cfg *""'"); + } + arg1 = (struct encoder_cfg *)(argp1); + ecode2 = SWIG_AsVal_int(obj1, &val2); + if (!SWIG_IsOK(ecode2)) { + SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "encoder_cfg_gui_mode_reports_set" "', argument " "2"" of type '" "int""'"); + } + arg2 = (int)(val2); + if (arg1) (arg1)->gui_mode_reports = arg2; + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_encoder_cfg_gui_mode_reports_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct encoder_cfg *arg1 = (struct encoder_cfg *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + int result; + + if (!PyArg_ParseTuple(args,(char *)"O:encoder_cfg_gui_mode_reports_get",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_encoder_cfg, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "encoder_cfg_gui_mode_reports_get" "', argument " "1"" of type '" "struct encoder_cfg *""'"); + } + arg1 = (struct encoder_cfg *)(argp1); + result = (int) ((arg1)->gui_mode_reports); + resultobj = SWIG_From_int((int)(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_encoder_cfg_output_filename_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct encoder_cfg *arg1 = (struct encoder_cfg *) 0 ; + char *arg2 = (char *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + int res2 ; + char *buf2 = 0 ; + int alloc2 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OO:encoder_cfg_output_filename_set",&obj0,&obj1)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_encoder_cfg, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "encoder_cfg_output_filename_set" "', argument " "1"" of type '" "struct encoder_cfg *""'"); + } + arg1 = (struct encoder_cfg *)(argp1); + res2 = SWIG_AsCharPtrAndSize(obj1, &buf2, NULL, &alloc2); + if (!SWIG_IsOK(res2)) { + SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "encoder_cfg_output_filename_set" "', argument " "2"" of type '" "char *""'"); + } + arg2 = (char *)(buf2); + if (arg1->output_filename) free((char*)arg1->output_filename); + if (arg2) { + size_t size = strlen((const char *)(arg2)) + 1; + arg1->output_filename = (char *)(char *)memcpy(malloc((size)*sizeof(char)), (const char *)(arg2), sizeof(char)*(size)); + } else { + arg1->output_filename = 0; + } + resultobj = SWIG_Py_Void(); + if (alloc2 == SWIG_NEWOBJ) free((char*)buf2); + return resultobj; +fail: + if (alloc2 == SWIG_NEWOBJ) free((char*)buf2); + return NULL; +} + + +SWIGINTERN PyObject *_wrap_encoder_cfg_output_filename_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct encoder_cfg *arg1 = (struct encoder_cfg *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + char *result = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"O:encoder_cfg_output_filename_get",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_encoder_cfg, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "encoder_cfg_output_filename_get" "', argument " "1"" of type '" "struct encoder_cfg *""'"); + } + arg1 = (struct encoder_cfg *)(argp1); + result = (char *) ((arg1)->output_filename); + resultobj = SWIG_FromCharPtr((const char *)result); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_encoder_cfg_write_format_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct encoder_cfg *arg1 = (struct encoder_cfg *) 0 ; + enum ccx_output_format arg2 ; + void *argp1 = 0 ; + int res1 = 0 ; + int val2 ; + int ecode2 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OO:encoder_cfg_write_format_set",&obj0,&obj1)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_encoder_cfg, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "encoder_cfg_write_format_set" "', argument " "1"" of type '" "struct encoder_cfg *""'"); + } + arg1 = (struct encoder_cfg *)(argp1); + ecode2 = SWIG_AsVal_int(obj1, &val2); + if (!SWIG_IsOK(ecode2)) { + SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "encoder_cfg_write_format_set" "', argument " "2"" of type '" "enum ccx_output_format""'"); + } + arg2 = (enum ccx_output_format)(val2); + if (arg1) (arg1)->write_format = arg2; + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_encoder_cfg_write_format_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct encoder_cfg *arg1 = (struct encoder_cfg *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + enum ccx_output_format result; + + if (!PyArg_ParseTuple(args,(char *)"O:encoder_cfg_write_format_get",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_encoder_cfg, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "encoder_cfg_write_format_get" "', argument " "1"" of type '" "struct encoder_cfg *""'"); + } + arg1 = (struct encoder_cfg *)(argp1); + result = (enum ccx_output_format) ((arg1)->write_format); + resultobj = SWIG_From_int((int)(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_encoder_cfg_keep_output_closed_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct encoder_cfg *arg1 = (struct encoder_cfg *) 0 ; + int arg2 ; + void *argp1 = 0 ; + int res1 = 0 ; + int val2 ; + int ecode2 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OO:encoder_cfg_keep_output_closed_set",&obj0,&obj1)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_encoder_cfg, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "encoder_cfg_keep_output_closed_set" "', argument " "1"" of type '" "struct encoder_cfg *""'"); + } + arg1 = (struct encoder_cfg *)(argp1); + ecode2 = SWIG_AsVal_int(obj1, &val2); + if (!SWIG_IsOK(ecode2)) { + SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "encoder_cfg_keep_output_closed_set" "', argument " "2"" of type '" "int""'"); + } + arg2 = (int)(val2); + if (arg1) (arg1)->keep_output_closed = arg2; + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_encoder_cfg_keep_output_closed_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct encoder_cfg *arg1 = (struct encoder_cfg *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + int result; + + if (!PyArg_ParseTuple(args,(char *)"O:encoder_cfg_keep_output_closed_get",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_encoder_cfg, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "encoder_cfg_keep_output_closed_get" "', argument " "1"" of type '" "struct encoder_cfg *""'"); + } + arg1 = (struct encoder_cfg *)(argp1); + result = (int) ((arg1)->keep_output_closed); + resultobj = SWIG_From_int((int)(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_encoder_cfg_force_flush_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct encoder_cfg *arg1 = (struct encoder_cfg *) 0 ; + int arg2 ; + void *argp1 = 0 ; + int res1 = 0 ; + int val2 ; + int ecode2 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OO:encoder_cfg_force_flush_set",&obj0,&obj1)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_encoder_cfg, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "encoder_cfg_force_flush_set" "', argument " "1"" of type '" "struct encoder_cfg *""'"); + } + arg1 = (struct encoder_cfg *)(argp1); + ecode2 = SWIG_AsVal_int(obj1, &val2); + if (!SWIG_IsOK(ecode2)) { + SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "encoder_cfg_force_flush_set" "', argument " "2"" of type '" "int""'"); + } + arg2 = (int)(val2); + if (arg1) (arg1)->force_flush = arg2; + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_encoder_cfg_force_flush_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct encoder_cfg *arg1 = (struct encoder_cfg *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + int result; + + if (!PyArg_ParseTuple(args,(char *)"O:encoder_cfg_force_flush_get",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_encoder_cfg, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "encoder_cfg_force_flush_get" "', argument " "1"" of type '" "struct encoder_cfg *""'"); + } + arg1 = (struct encoder_cfg *)(argp1); + result = (int) ((arg1)->force_flush); + resultobj = SWIG_From_int((int)(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_encoder_cfg_append_mode_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct encoder_cfg *arg1 = (struct encoder_cfg *) 0 ; + int arg2 ; + void *argp1 = 0 ; + int res1 = 0 ; + int val2 ; + int ecode2 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OO:encoder_cfg_append_mode_set",&obj0,&obj1)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_encoder_cfg, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "encoder_cfg_append_mode_set" "', argument " "1"" of type '" "struct encoder_cfg *""'"); + } + arg1 = (struct encoder_cfg *)(argp1); + ecode2 = SWIG_AsVal_int(obj1, &val2); + if (!SWIG_IsOK(ecode2)) { + SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "encoder_cfg_append_mode_set" "', argument " "2"" of type '" "int""'"); + } + arg2 = (int)(val2); + if (arg1) (arg1)->append_mode = arg2; + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_encoder_cfg_append_mode_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct encoder_cfg *arg1 = (struct encoder_cfg *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + int result; + + if (!PyArg_ParseTuple(args,(char *)"O:encoder_cfg_append_mode_get",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_encoder_cfg, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "encoder_cfg_append_mode_get" "', argument " "1"" of type '" "struct encoder_cfg *""'"); + } + arg1 = (struct encoder_cfg *)(argp1); + result = (int) ((arg1)->append_mode); + resultobj = SWIG_From_int((int)(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_encoder_cfg_ucla_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct encoder_cfg *arg1 = (struct encoder_cfg *) 0 ; + int arg2 ; + void *argp1 = 0 ; + int res1 = 0 ; + int val2 ; + int ecode2 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OO:encoder_cfg_ucla_set",&obj0,&obj1)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_encoder_cfg, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "encoder_cfg_ucla_set" "', argument " "1"" of type '" "struct encoder_cfg *""'"); + } + arg1 = (struct encoder_cfg *)(argp1); + ecode2 = SWIG_AsVal_int(obj1, &val2); + if (!SWIG_IsOK(ecode2)) { + SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "encoder_cfg_ucla_set" "', argument " "2"" of type '" "int""'"); + } + arg2 = (int)(val2); + if (arg1) (arg1)->ucla = arg2; + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_encoder_cfg_ucla_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct encoder_cfg *arg1 = (struct encoder_cfg *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + int result; + + if (!PyArg_ParseTuple(args,(char *)"O:encoder_cfg_ucla_get",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_encoder_cfg, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "encoder_cfg_ucla_get" "', argument " "1"" of type '" "struct encoder_cfg *""'"); + } + arg1 = (struct encoder_cfg *)(argp1); + result = (int) ((arg1)->ucla); + resultobj = SWIG_From_int((int)(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_encoder_cfg_encoding_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct encoder_cfg *arg1 = (struct encoder_cfg *) 0 ; + enum ccx_encoding_type arg2 ; + void *argp1 = 0 ; + int res1 = 0 ; + int val2 ; + int ecode2 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OO:encoder_cfg_encoding_set",&obj0,&obj1)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_encoder_cfg, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "encoder_cfg_encoding_set" "', argument " "1"" of type '" "struct encoder_cfg *""'"); + } + arg1 = (struct encoder_cfg *)(argp1); + ecode2 = SWIG_AsVal_int(obj1, &val2); + if (!SWIG_IsOK(ecode2)) { + SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "encoder_cfg_encoding_set" "', argument " "2"" of type '" "enum ccx_encoding_type""'"); + } + arg2 = (enum ccx_encoding_type)(val2); + if (arg1) (arg1)->encoding = arg2; + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_encoder_cfg_encoding_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct encoder_cfg *arg1 = (struct encoder_cfg *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + enum ccx_encoding_type result; + + if (!PyArg_ParseTuple(args,(char *)"O:encoder_cfg_encoding_get",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_encoder_cfg, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "encoder_cfg_encoding_get" "', argument " "1"" of type '" "struct encoder_cfg *""'"); + } + arg1 = (struct encoder_cfg *)(argp1); + result = (enum ccx_encoding_type) ((arg1)->encoding); + resultobj = SWIG_From_int((int)(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_encoder_cfg_date_format_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct encoder_cfg *arg1 = (struct encoder_cfg *) 0 ; + enum ccx_output_date_format arg2 ; + void *argp1 = 0 ; + int res1 = 0 ; + int val2 ; + int ecode2 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OO:encoder_cfg_date_format_set",&obj0,&obj1)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_encoder_cfg, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "encoder_cfg_date_format_set" "', argument " "1"" of type '" "struct encoder_cfg *""'"); + } + arg1 = (struct encoder_cfg *)(argp1); + ecode2 = SWIG_AsVal_int(obj1, &val2); + if (!SWIG_IsOK(ecode2)) { + SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "encoder_cfg_date_format_set" "', argument " "2"" of type '" "enum ccx_output_date_format""'"); + } + arg2 = (enum ccx_output_date_format)(val2); + if (arg1) (arg1)->date_format = arg2; + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_encoder_cfg_date_format_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct encoder_cfg *arg1 = (struct encoder_cfg *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + enum ccx_output_date_format result; + + if (!PyArg_ParseTuple(args,(char *)"O:encoder_cfg_date_format_get",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_encoder_cfg, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "encoder_cfg_date_format_get" "', argument " "1"" of type '" "struct encoder_cfg *""'"); + } + arg1 = (struct encoder_cfg *)(argp1); + result = (enum ccx_output_date_format) ((arg1)->date_format); + resultobj = SWIG_From_int((int)(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_encoder_cfg_millis_separator_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct encoder_cfg *arg1 = (struct encoder_cfg *) 0 ; + char arg2 ; + void *argp1 = 0 ; + int res1 = 0 ; + char val2 ; + int ecode2 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OO:encoder_cfg_millis_separator_set",&obj0,&obj1)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_encoder_cfg, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "encoder_cfg_millis_separator_set" "', argument " "1"" of type '" "struct encoder_cfg *""'"); + } + arg1 = (struct encoder_cfg *)(argp1); + ecode2 = SWIG_AsVal_char(obj1, &val2); + if (!SWIG_IsOK(ecode2)) { + SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "encoder_cfg_millis_separator_set" "', argument " "2"" of type '" "char""'"); + } + arg2 = (char)(val2); + if (arg1) (arg1)->millis_separator = arg2; + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_encoder_cfg_millis_separator_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct encoder_cfg *arg1 = (struct encoder_cfg *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + char result; + + if (!PyArg_ParseTuple(args,(char *)"O:encoder_cfg_millis_separator_get",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_encoder_cfg, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "encoder_cfg_millis_separator_get" "', argument " "1"" of type '" "struct encoder_cfg *""'"); + } + arg1 = (struct encoder_cfg *)(argp1); + result = (char) ((arg1)->millis_separator); + resultobj = SWIG_From_char((char)(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_encoder_cfg_autodash_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct encoder_cfg *arg1 = (struct encoder_cfg *) 0 ; + int arg2 ; + void *argp1 = 0 ; + int res1 = 0 ; + int val2 ; + int ecode2 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OO:encoder_cfg_autodash_set",&obj0,&obj1)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_encoder_cfg, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "encoder_cfg_autodash_set" "', argument " "1"" of type '" "struct encoder_cfg *""'"); + } + arg1 = (struct encoder_cfg *)(argp1); + ecode2 = SWIG_AsVal_int(obj1, &val2); + if (!SWIG_IsOK(ecode2)) { + SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "encoder_cfg_autodash_set" "', argument " "2"" of type '" "int""'"); + } + arg2 = (int)(val2); + if (arg1) (arg1)->autodash = arg2; + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_encoder_cfg_autodash_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct encoder_cfg *arg1 = (struct encoder_cfg *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + int result; + + if (!PyArg_ParseTuple(args,(char *)"O:encoder_cfg_autodash_get",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_encoder_cfg, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "encoder_cfg_autodash_get" "', argument " "1"" of type '" "struct encoder_cfg *""'"); + } + arg1 = (struct encoder_cfg *)(argp1); + result = (int) ((arg1)->autodash); + resultobj = SWIG_From_int((int)(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_encoder_cfg_trim_subs_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct encoder_cfg *arg1 = (struct encoder_cfg *) 0 ; + int arg2 ; + void *argp1 = 0 ; + int res1 = 0 ; + int val2 ; + int ecode2 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OO:encoder_cfg_trim_subs_set",&obj0,&obj1)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_encoder_cfg, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "encoder_cfg_trim_subs_set" "', argument " "1"" of type '" "struct encoder_cfg *""'"); + } + arg1 = (struct encoder_cfg *)(argp1); + ecode2 = SWIG_AsVal_int(obj1, &val2); + if (!SWIG_IsOK(ecode2)) { + SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "encoder_cfg_trim_subs_set" "', argument " "2"" of type '" "int""'"); + } + arg2 = (int)(val2); + if (arg1) (arg1)->trim_subs = arg2; + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_encoder_cfg_trim_subs_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct encoder_cfg *arg1 = (struct encoder_cfg *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + int result; + + if (!PyArg_ParseTuple(args,(char *)"O:encoder_cfg_trim_subs_get",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_encoder_cfg, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "encoder_cfg_trim_subs_get" "', argument " "1"" of type '" "struct encoder_cfg *""'"); + } + arg1 = (struct encoder_cfg *)(argp1); + result = (int) ((arg1)->trim_subs); + resultobj = SWIG_From_int((int)(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_encoder_cfg_sentence_cap_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct encoder_cfg *arg1 = (struct encoder_cfg *) 0 ; + int arg2 ; + void *argp1 = 0 ; + int res1 = 0 ; + int val2 ; + int ecode2 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OO:encoder_cfg_sentence_cap_set",&obj0,&obj1)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_encoder_cfg, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "encoder_cfg_sentence_cap_set" "', argument " "1"" of type '" "struct encoder_cfg *""'"); + } + arg1 = (struct encoder_cfg *)(argp1); + ecode2 = SWIG_AsVal_int(obj1, &val2); + if (!SWIG_IsOK(ecode2)) { + SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "encoder_cfg_sentence_cap_set" "', argument " "2"" of type '" "int""'"); + } + arg2 = (int)(val2); + if (arg1) (arg1)->sentence_cap = arg2; + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_encoder_cfg_sentence_cap_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct encoder_cfg *arg1 = (struct encoder_cfg *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + int result; + + if (!PyArg_ParseTuple(args,(char *)"O:encoder_cfg_sentence_cap_get",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_encoder_cfg, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "encoder_cfg_sentence_cap_get" "', argument " "1"" of type '" "struct encoder_cfg *""'"); + } + arg1 = (struct encoder_cfg *)(argp1); + result = (int) ((arg1)->sentence_cap); + resultobj = SWIG_From_int((int)(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_encoder_cfg_splitbysentence_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct encoder_cfg *arg1 = (struct encoder_cfg *) 0 ; + int arg2 ; + void *argp1 = 0 ; + int res1 = 0 ; + int val2 ; + int ecode2 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OO:encoder_cfg_splitbysentence_set",&obj0,&obj1)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_encoder_cfg, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "encoder_cfg_splitbysentence_set" "', argument " "1"" of type '" "struct encoder_cfg *""'"); + } + arg1 = (struct encoder_cfg *)(argp1); + ecode2 = SWIG_AsVal_int(obj1, &val2); + if (!SWIG_IsOK(ecode2)) { + SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "encoder_cfg_splitbysentence_set" "', argument " "2"" of type '" "int""'"); + } + arg2 = (int)(val2); + if (arg1) (arg1)->splitbysentence = arg2; + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_encoder_cfg_splitbysentence_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct encoder_cfg *arg1 = (struct encoder_cfg *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + int result; + + if (!PyArg_ParseTuple(args,(char *)"O:encoder_cfg_splitbysentence_get",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_encoder_cfg, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "encoder_cfg_splitbysentence_get" "', argument " "1"" of type '" "struct encoder_cfg *""'"); + } + arg1 = (struct encoder_cfg *)(argp1); + result = (int) ((arg1)->splitbysentence); + resultobj = SWIG_From_int((int)(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_encoder_cfg_with_semaphore_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct encoder_cfg *arg1 = (struct encoder_cfg *) 0 ; + int arg2 ; + void *argp1 = 0 ; + int res1 = 0 ; + int val2 ; + int ecode2 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OO:encoder_cfg_with_semaphore_set",&obj0,&obj1)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_encoder_cfg, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "encoder_cfg_with_semaphore_set" "', argument " "1"" of type '" "struct encoder_cfg *""'"); + } + arg1 = (struct encoder_cfg *)(argp1); + ecode2 = SWIG_AsVal_int(obj1, &val2); + if (!SWIG_IsOK(ecode2)) { + SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "encoder_cfg_with_semaphore_set" "', argument " "2"" of type '" "int""'"); + } + arg2 = (int)(val2); + if (arg1) (arg1)->with_semaphore = arg2; + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_encoder_cfg_with_semaphore_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct encoder_cfg *arg1 = (struct encoder_cfg *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + int result; + + if (!PyArg_ParseTuple(args,(char *)"O:encoder_cfg_with_semaphore_get",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_encoder_cfg, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "encoder_cfg_with_semaphore_get" "', argument " "1"" of type '" "struct encoder_cfg *""'"); + } + arg1 = (struct encoder_cfg *)(argp1); + result = (int) ((arg1)->with_semaphore); + resultobj = SWIG_From_int((int)(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_encoder_cfg_start_credits_text_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct encoder_cfg *arg1 = (struct encoder_cfg *) 0 ; + char *arg2 = (char *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + int res2 ; + char *buf2 = 0 ; + int alloc2 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OO:encoder_cfg_start_credits_text_set",&obj0,&obj1)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_encoder_cfg, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "encoder_cfg_start_credits_text_set" "', argument " "1"" of type '" "struct encoder_cfg *""'"); + } + arg1 = (struct encoder_cfg *)(argp1); + res2 = SWIG_AsCharPtrAndSize(obj1, &buf2, NULL, &alloc2); + if (!SWIG_IsOK(res2)) { + SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "encoder_cfg_start_credits_text_set" "', argument " "2"" of type '" "char *""'"); + } + arg2 = (char *)(buf2); + if (arg1->start_credits_text) free((char*)arg1->start_credits_text); + if (arg2) { + size_t size = strlen((const char *)(arg2)) + 1; + arg1->start_credits_text = (char *)(char *)memcpy(malloc((size)*sizeof(char)), (const char *)(arg2), sizeof(char)*(size)); + } else { + arg1->start_credits_text = 0; + } + resultobj = SWIG_Py_Void(); + if (alloc2 == SWIG_NEWOBJ) free((char*)buf2); + return resultobj; +fail: + if (alloc2 == SWIG_NEWOBJ) free((char*)buf2); + return NULL; +} + + +SWIGINTERN PyObject *_wrap_encoder_cfg_start_credits_text_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct encoder_cfg *arg1 = (struct encoder_cfg *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + char *result = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"O:encoder_cfg_start_credits_text_get",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_encoder_cfg, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "encoder_cfg_start_credits_text_get" "', argument " "1"" of type '" "struct encoder_cfg *""'"); + } + arg1 = (struct encoder_cfg *)(argp1); + result = (char *) ((arg1)->start_credits_text); + resultobj = SWIG_FromCharPtr((const char *)result); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_encoder_cfg_end_credits_text_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct encoder_cfg *arg1 = (struct encoder_cfg *) 0 ; + char *arg2 = (char *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + int res2 ; + char *buf2 = 0 ; + int alloc2 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OO:encoder_cfg_end_credits_text_set",&obj0,&obj1)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_encoder_cfg, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "encoder_cfg_end_credits_text_set" "', argument " "1"" of type '" "struct encoder_cfg *""'"); + } + arg1 = (struct encoder_cfg *)(argp1); + res2 = SWIG_AsCharPtrAndSize(obj1, &buf2, NULL, &alloc2); + if (!SWIG_IsOK(res2)) { + SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "encoder_cfg_end_credits_text_set" "', argument " "2"" of type '" "char *""'"); + } + arg2 = (char *)(buf2); + if (arg1->end_credits_text) free((char*)arg1->end_credits_text); + if (arg2) { + size_t size = strlen((const char *)(arg2)) + 1; + arg1->end_credits_text = (char *)(char *)memcpy(malloc((size)*sizeof(char)), (const char *)(arg2), sizeof(char)*(size)); + } else { + arg1->end_credits_text = 0; + } + resultobj = SWIG_Py_Void(); + if (alloc2 == SWIG_NEWOBJ) free((char*)buf2); + return resultobj; +fail: + if (alloc2 == SWIG_NEWOBJ) free((char*)buf2); + return NULL; +} + + +SWIGINTERN PyObject *_wrap_encoder_cfg_end_credits_text_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct encoder_cfg *arg1 = (struct encoder_cfg *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + char *result = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"O:encoder_cfg_end_credits_text_get",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_encoder_cfg, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "encoder_cfg_end_credits_text_get" "', argument " "1"" of type '" "struct encoder_cfg *""'"); + } + arg1 = (struct encoder_cfg *)(argp1); + result = (char *) ((arg1)->end_credits_text); + resultobj = SWIG_FromCharPtr((const char *)result); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_encoder_cfg_startcreditsnotbefore_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct encoder_cfg *arg1 = (struct encoder_cfg *) 0 ; + struct ccx_boundary_time arg2 ; + void *argp1 = 0 ; + int res1 = 0 ; + void *argp2 ; + int res2 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OO:encoder_cfg_startcreditsnotbefore_set",&obj0,&obj1)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_encoder_cfg, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "encoder_cfg_startcreditsnotbefore_set" "', argument " "1"" of type '" "struct encoder_cfg *""'"); + } + arg1 = (struct encoder_cfg *)(argp1); + { + res2 = SWIG_ConvertPtr(obj1, &argp2, SWIGTYPE_p_ccx_boundary_time, 0 ); + if (!SWIG_IsOK(res2)) { + SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "encoder_cfg_startcreditsnotbefore_set" "', argument " "2"" of type '" "struct ccx_boundary_time""'"); + } + if (!argp2) { + SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "encoder_cfg_startcreditsnotbefore_set" "', argument " "2"" of type '" "struct ccx_boundary_time""'"); + } else { + arg2 = *((struct ccx_boundary_time *)(argp2)); + } + } + if (arg1) (arg1)->startcreditsnotbefore = arg2; + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_encoder_cfg_startcreditsnotbefore_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct encoder_cfg *arg1 = (struct encoder_cfg *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + struct ccx_boundary_time result; + + if (!PyArg_ParseTuple(args,(char *)"O:encoder_cfg_startcreditsnotbefore_get",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_encoder_cfg, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "encoder_cfg_startcreditsnotbefore_get" "', argument " "1"" of type '" "struct encoder_cfg *""'"); + } + arg1 = (struct encoder_cfg *)(argp1); + result = ((arg1)->startcreditsnotbefore); + resultobj = SWIG_NewPointerObj((struct ccx_boundary_time *)memcpy((struct ccx_boundary_time *)calloc(1,sizeof(struct ccx_boundary_time)),&result,sizeof(struct ccx_boundary_time)), SWIGTYPE_p_ccx_boundary_time, SWIG_POINTER_OWN | 0 ); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_encoder_cfg_startcreditsnotafter_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct encoder_cfg *arg1 = (struct encoder_cfg *) 0 ; + struct ccx_boundary_time arg2 ; + void *argp1 = 0 ; + int res1 = 0 ; + void *argp2 ; + int res2 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OO:encoder_cfg_startcreditsnotafter_set",&obj0,&obj1)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_encoder_cfg, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "encoder_cfg_startcreditsnotafter_set" "', argument " "1"" of type '" "struct encoder_cfg *""'"); + } + arg1 = (struct encoder_cfg *)(argp1); + { + res2 = SWIG_ConvertPtr(obj1, &argp2, SWIGTYPE_p_ccx_boundary_time, 0 ); + if (!SWIG_IsOK(res2)) { + SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "encoder_cfg_startcreditsnotafter_set" "', argument " "2"" of type '" "struct ccx_boundary_time""'"); + } + if (!argp2) { + SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "encoder_cfg_startcreditsnotafter_set" "', argument " "2"" of type '" "struct ccx_boundary_time""'"); + } else { + arg2 = *((struct ccx_boundary_time *)(argp2)); + } + } + if (arg1) (arg1)->startcreditsnotafter = arg2; + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_encoder_cfg_startcreditsnotafter_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct encoder_cfg *arg1 = (struct encoder_cfg *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + struct ccx_boundary_time result; + + if (!PyArg_ParseTuple(args,(char *)"O:encoder_cfg_startcreditsnotafter_get",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_encoder_cfg, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "encoder_cfg_startcreditsnotafter_get" "', argument " "1"" of type '" "struct encoder_cfg *""'"); + } + arg1 = (struct encoder_cfg *)(argp1); + result = ((arg1)->startcreditsnotafter); + resultobj = SWIG_NewPointerObj((struct ccx_boundary_time *)memcpy((struct ccx_boundary_time *)calloc(1,sizeof(struct ccx_boundary_time)),&result,sizeof(struct ccx_boundary_time)), SWIGTYPE_p_ccx_boundary_time, SWIG_POINTER_OWN | 0 ); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_encoder_cfg_startcreditsforatleast_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct encoder_cfg *arg1 = (struct encoder_cfg *) 0 ; + struct ccx_boundary_time arg2 ; + void *argp1 = 0 ; + int res1 = 0 ; + void *argp2 ; + int res2 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OO:encoder_cfg_startcreditsforatleast_set",&obj0,&obj1)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_encoder_cfg, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "encoder_cfg_startcreditsforatleast_set" "', argument " "1"" of type '" "struct encoder_cfg *""'"); + } + arg1 = (struct encoder_cfg *)(argp1); + { + res2 = SWIG_ConvertPtr(obj1, &argp2, SWIGTYPE_p_ccx_boundary_time, 0 ); + if (!SWIG_IsOK(res2)) { + SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "encoder_cfg_startcreditsforatleast_set" "', argument " "2"" of type '" "struct ccx_boundary_time""'"); + } + if (!argp2) { + SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "encoder_cfg_startcreditsforatleast_set" "', argument " "2"" of type '" "struct ccx_boundary_time""'"); + } else { + arg2 = *((struct ccx_boundary_time *)(argp2)); + } + } + if (arg1) (arg1)->startcreditsforatleast = arg2; + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_encoder_cfg_startcreditsforatleast_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct encoder_cfg *arg1 = (struct encoder_cfg *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + struct ccx_boundary_time result; + + if (!PyArg_ParseTuple(args,(char *)"O:encoder_cfg_startcreditsforatleast_get",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_encoder_cfg, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "encoder_cfg_startcreditsforatleast_get" "', argument " "1"" of type '" "struct encoder_cfg *""'"); + } + arg1 = (struct encoder_cfg *)(argp1); + result = ((arg1)->startcreditsforatleast); + resultobj = SWIG_NewPointerObj((struct ccx_boundary_time *)memcpy((struct ccx_boundary_time *)calloc(1,sizeof(struct ccx_boundary_time)),&result,sizeof(struct ccx_boundary_time)), SWIGTYPE_p_ccx_boundary_time, SWIG_POINTER_OWN | 0 ); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_encoder_cfg_startcreditsforatmost_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct encoder_cfg *arg1 = (struct encoder_cfg *) 0 ; + struct ccx_boundary_time arg2 ; + void *argp1 = 0 ; + int res1 = 0 ; + void *argp2 ; + int res2 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OO:encoder_cfg_startcreditsforatmost_set",&obj0,&obj1)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_encoder_cfg, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "encoder_cfg_startcreditsforatmost_set" "', argument " "1"" of type '" "struct encoder_cfg *""'"); + } + arg1 = (struct encoder_cfg *)(argp1); + { + res2 = SWIG_ConvertPtr(obj1, &argp2, SWIGTYPE_p_ccx_boundary_time, 0 ); + if (!SWIG_IsOK(res2)) { + SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "encoder_cfg_startcreditsforatmost_set" "', argument " "2"" of type '" "struct ccx_boundary_time""'"); + } + if (!argp2) { + SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "encoder_cfg_startcreditsforatmost_set" "', argument " "2"" of type '" "struct ccx_boundary_time""'"); + } else { + arg2 = *((struct ccx_boundary_time *)(argp2)); + } + } + if (arg1) (arg1)->startcreditsforatmost = arg2; + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_encoder_cfg_startcreditsforatmost_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct encoder_cfg *arg1 = (struct encoder_cfg *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + struct ccx_boundary_time result; + + if (!PyArg_ParseTuple(args,(char *)"O:encoder_cfg_startcreditsforatmost_get",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_encoder_cfg, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "encoder_cfg_startcreditsforatmost_get" "', argument " "1"" of type '" "struct encoder_cfg *""'"); + } + arg1 = (struct encoder_cfg *)(argp1); + result = ((arg1)->startcreditsforatmost); + resultobj = SWIG_NewPointerObj((struct ccx_boundary_time *)memcpy((struct ccx_boundary_time *)calloc(1,sizeof(struct ccx_boundary_time)),&result,sizeof(struct ccx_boundary_time)), SWIGTYPE_p_ccx_boundary_time, SWIG_POINTER_OWN | 0 ); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_encoder_cfg_endcreditsforatleast_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct encoder_cfg *arg1 = (struct encoder_cfg *) 0 ; + struct ccx_boundary_time arg2 ; + void *argp1 = 0 ; + int res1 = 0 ; + void *argp2 ; + int res2 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OO:encoder_cfg_endcreditsforatleast_set",&obj0,&obj1)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_encoder_cfg, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "encoder_cfg_endcreditsforatleast_set" "', argument " "1"" of type '" "struct encoder_cfg *""'"); + } + arg1 = (struct encoder_cfg *)(argp1); + { + res2 = SWIG_ConvertPtr(obj1, &argp2, SWIGTYPE_p_ccx_boundary_time, 0 ); + if (!SWIG_IsOK(res2)) { + SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "encoder_cfg_endcreditsforatleast_set" "', argument " "2"" of type '" "struct ccx_boundary_time""'"); + } + if (!argp2) { + SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "encoder_cfg_endcreditsforatleast_set" "', argument " "2"" of type '" "struct ccx_boundary_time""'"); + } else { + arg2 = *((struct ccx_boundary_time *)(argp2)); + } + } + if (arg1) (arg1)->endcreditsforatleast = arg2; + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_encoder_cfg_endcreditsforatleast_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct encoder_cfg *arg1 = (struct encoder_cfg *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + struct ccx_boundary_time result; + + if (!PyArg_ParseTuple(args,(char *)"O:encoder_cfg_endcreditsforatleast_get",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_encoder_cfg, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "encoder_cfg_endcreditsforatleast_get" "', argument " "1"" of type '" "struct encoder_cfg *""'"); + } + arg1 = (struct encoder_cfg *)(argp1); + result = ((arg1)->endcreditsforatleast); + resultobj = SWIG_NewPointerObj((struct ccx_boundary_time *)memcpy((struct ccx_boundary_time *)calloc(1,sizeof(struct ccx_boundary_time)),&result,sizeof(struct ccx_boundary_time)), SWIGTYPE_p_ccx_boundary_time, SWIG_POINTER_OWN | 0 ); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_encoder_cfg_endcreditsforatmost_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct encoder_cfg *arg1 = (struct encoder_cfg *) 0 ; + struct ccx_boundary_time arg2 ; + void *argp1 = 0 ; + int res1 = 0 ; + void *argp2 ; + int res2 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OO:encoder_cfg_endcreditsforatmost_set",&obj0,&obj1)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_encoder_cfg, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "encoder_cfg_endcreditsforatmost_set" "', argument " "1"" of type '" "struct encoder_cfg *""'"); + } + arg1 = (struct encoder_cfg *)(argp1); + { + res2 = SWIG_ConvertPtr(obj1, &argp2, SWIGTYPE_p_ccx_boundary_time, 0 ); + if (!SWIG_IsOK(res2)) { + SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "encoder_cfg_endcreditsforatmost_set" "', argument " "2"" of type '" "struct ccx_boundary_time""'"); + } + if (!argp2) { + SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "encoder_cfg_endcreditsforatmost_set" "', argument " "2"" of type '" "struct ccx_boundary_time""'"); + } else { + arg2 = *((struct ccx_boundary_time *)(argp2)); + } + } + if (arg1) (arg1)->endcreditsforatmost = arg2; + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_encoder_cfg_endcreditsforatmost_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct encoder_cfg *arg1 = (struct encoder_cfg *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + struct ccx_boundary_time result; + + if (!PyArg_ParseTuple(args,(char *)"O:encoder_cfg_endcreditsforatmost_get",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_encoder_cfg, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "encoder_cfg_endcreditsforatmost_get" "', argument " "1"" of type '" "struct encoder_cfg *""'"); + } + arg1 = (struct encoder_cfg *)(argp1); + result = ((arg1)->endcreditsforatmost); + resultobj = SWIG_NewPointerObj((struct ccx_boundary_time *)memcpy((struct ccx_boundary_time *)calloc(1,sizeof(struct ccx_boundary_time)),&result,sizeof(struct ccx_boundary_time)), SWIGTYPE_p_ccx_boundary_time, SWIG_POINTER_OWN | 0 ); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_encoder_cfg_transcript_settings_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct encoder_cfg *arg1 = (struct encoder_cfg *) 0 ; + ccx_encoders_transcript_format arg2 ; + void *argp1 = 0 ; + int res1 = 0 ; + void *argp2 ; + int res2 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OO:encoder_cfg_transcript_settings_set",&obj0,&obj1)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_encoder_cfg, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "encoder_cfg_transcript_settings_set" "', argument " "1"" of type '" "struct encoder_cfg *""'"); + } + arg1 = (struct encoder_cfg *)(argp1); + { + res2 = SWIG_ConvertPtr(obj1, &argp2, SWIGTYPE_p_ccx_encoders_transcript_format, 0 ); + if (!SWIG_IsOK(res2)) { + SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "encoder_cfg_transcript_settings_set" "', argument " "2"" of type '" "ccx_encoders_transcript_format""'"); + } + if (!argp2) { + SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "encoder_cfg_transcript_settings_set" "', argument " "2"" of type '" "ccx_encoders_transcript_format""'"); + } else { + arg2 = *((ccx_encoders_transcript_format *)(argp2)); + } + } + if (arg1) (arg1)->transcript_settings = arg2; + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_encoder_cfg_transcript_settings_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct encoder_cfg *arg1 = (struct encoder_cfg *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + ccx_encoders_transcript_format result; + + if (!PyArg_ParseTuple(args,(char *)"O:encoder_cfg_transcript_settings_get",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_encoder_cfg, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "encoder_cfg_transcript_settings_get" "', argument " "1"" of type '" "struct encoder_cfg *""'"); + } + arg1 = (struct encoder_cfg *)(argp1); + result = ((arg1)->transcript_settings); + resultobj = SWIG_NewPointerObj((ccx_encoders_transcript_format *)memcpy((ccx_encoders_transcript_format *)calloc(1,sizeof(ccx_encoders_transcript_format)),&result,sizeof(ccx_encoders_transcript_format)), SWIGTYPE_p_ccx_encoders_transcript_format, SWIG_POINTER_OWN | 0 ); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_encoder_cfg_send_to_srv_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct encoder_cfg *arg1 = (struct encoder_cfg *) 0 ; + unsigned int arg2 ; + void *argp1 = 0 ; + int res1 = 0 ; + unsigned int val2 ; + int ecode2 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OO:encoder_cfg_send_to_srv_set",&obj0,&obj1)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_encoder_cfg, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "encoder_cfg_send_to_srv_set" "', argument " "1"" of type '" "struct encoder_cfg *""'"); + } + arg1 = (struct encoder_cfg *)(argp1); + ecode2 = SWIG_AsVal_unsigned_SS_int(obj1, &val2); + if (!SWIG_IsOK(ecode2)) { + SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "encoder_cfg_send_to_srv_set" "', argument " "2"" of type '" "unsigned int""'"); + } + arg2 = (unsigned int)(val2); + if (arg1) (arg1)->send_to_srv = arg2; + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_encoder_cfg_send_to_srv_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct encoder_cfg *arg1 = (struct encoder_cfg *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + unsigned int result; + + if (!PyArg_ParseTuple(args,(char *)"O:encoder_cfg_send_to_srv_get",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_encoder_cfg, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "encoder_cfg_send_to_srv_get" "', argument " "1"" of type '" "struct encoder_cfg *""'"); + } + arg1 = (struct encoder_cfg *)(argp1); + result = (unsigned int) ((arg1)->send_to_srv); + resultobj = SWIG_From_unsigned_SS_int((unsigned int)(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_encoder_cfg_no_bom_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct encoder_cfg *arg1 = (struct encoder_cfg *) 0 ; + int arg2 ; + void *argp1 = 0 ; + int res1 = 0 ; + int val2 ; + int ecode2 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OO:encoder_cfg_no_bom_set",&obj0,&obj1)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_encoder_cfg, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "encoder_cfg_no_bom_set" "', argument " "1"" of type '" "struct encoder_cfg *""'"); + } + arg1 = (struct encoder_cfg *)(argp1); + ecode2 = SWIG_AsVal_int(obj1, &val2); + if (!SWIG_IsOK(ecode2)) { + SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "encoder_cfg_no_bom_set" "', argument " "2"" of type '" "int""'"); + } + arg2 = (int)(val2); + if (arg1) (arg1)->no_bom = arg2; + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_encoder_cfg_no_bom_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct encoder_cfg *arg1 = (struct encoder_cfg *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + int result; + + if (!PyArg_ParseTuple(args,(char *)"O:encoder_cfg_no_bom_get",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_encoder_cfg, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "encoder_cfg_no_bom_get" "', argument " "1"" of type '" "struct encoder_cfg *""'"); + } + arg1 = (struct encoder_cfg *)(argp1); + result = (int) ((arg1)->no_bom); + resultobj = SWIG_From_int((int)(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_encoder_cfg_first_input_file_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct encoder_cfg *arg1 = (struct encoder_cfg *) 0 ; + char *arg2 = (char *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + int res2 ; + char *buf2 = 0 ; + int alloc2 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OO:encoder_cfg_first_input_file_set",&obj0,&obj1)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_encoder_cfg, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "encoder_cfg_first_input_file_set" "', argument " "1"" of type '" "struct encoder_cfg *""'"); + } + arg1 = (struct encoder_cfg *)(argp1); + res2 = SWIG_AsCharPtrAndSize(obj1, &buf2, NULL, &alloc2); + if (!SWIG_IsOK(res2)) { + SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "encoder_cfg_first_input_file_set" "', argument " "2"" of type '" "char *""'"); + } + arg2 = (char *)(buf2); + if (arg1->first_input_file) free((char*)arg1->first_input_file); + if (arg2) { + size_t size = strlen((const char *)(arg2)) + 1; + arg1->first_input_file = (char *)(char *)memcpy(malloc((size)*sizeof(char)), (const char *)(arg2), sizeof(char)*(size)); + } else { + arg1->first_input_file = 0; + } + resultobj = SWIG_Py_Void(); + if (alloc2 == SWIG_NEWOBJ) free((char*)buf2); + return resultobj; +fail: + if (alloc2 == SWIG_NEWOBJ) free((char*)buf2); + return NULL; +} + + +SWIGINTERN PyObject *_wrap_encoder_cfg_first_input_file_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct encoder_cfg *arg1 = (struct encoder_cfg *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + char *result = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"O:encoder_cfg_first_input_file_get",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_encoder_cfg, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "encoder_cfg_first_input_file_get" "', argument " "1"" of type '" "struct encoder_cfg *""'"); + } + arg1 = (struct encoder_cfg *)(argp1); + result = (char *) ((arg1)->first_input_file); + resultobj = SWIG_FromCharPtr((const char *)result); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_encoder_cfg_multiple_files_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct encoder_cfg *arg1 = (struct encoder_cfg *) 0 ; + int arg2 ; + void *argp1 = 0 ; + int res1 = 0 ; + int val2 ; + int ecode2 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OO:encoder_cfg_multiple_files_set",&obj0,&obj1)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_encoder_cfg, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "encoder_cfg_multiple_files_set" "', argument " "1"" of type '" "struct encoder_cfg *""'"); + } + arg1 = (struct encoder_cfg *)(argp1); + ecode2 = SWIG_AsVal_int(obj1, &val2); + if (!SWIG_IsOK(ecode2)) { + SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "encoder_cfg_multiple_files_set" "', argument " "2"" of type '" "int""'"); + } + arg2 = (int)(val2); + if (arg1) (arg1)->multiple_files = arg2; + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_encoder_cfg_multiple_files_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct encoder_cfg *arg1 = (struct encoder_cfg *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + int result; + + if (!PyArg_ParseTuple(args,(char *)"O:encoder_cfg_multiple_files_get",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_encoder_cfg, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "encoder_cfg_multiple_files_get" "', argument " "1"" of type '" "struct encoder_cfg *""'"); + } + arg1 = (struct encoder_cfg *)(argp1); + result = (int) ((arg1)->multiple_files); + resultobj = SWIG_From_int((int)(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_encoder_cfg_no_font_color_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct encoder_cfg *arg1 = (struct encoder_cfg *) 0 ; + int arg2 ; + void *argp1 = 0 ; + int res1 = 0 ; + int val2 ; + int ecode2 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OO:encoder_cfg_no_font_color_set",&obj0,&obj1)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_encoder_cfg, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "encoder_cfg_no_font_color_set" "', argument " "1"" of type '" "struct encoder_cfg *""'"); + } + arg1 = (struct encoder_cfg *)(argp1); + ecode2 = SWIG_AsVal_int(obj1, &val2); + if (!SWIG_IsOK(ecode2)) { + SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "encoder_cfg_no_font_color_set" "', argument " "2"" of type '" "int""'"); + } + arg2 = (int)(val2); + if (arg1) (arg1)->no_font_color = arg2; + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_encoder_cfg_no_font_color_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct encoder_cfg *arg1 = (struct encoder_cfg *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + int result; + + if (!PyArg_ParseTuple(args,(char *)"O:encoder_cfg_no_font_color_get",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_encoder_cfg, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "encoder_cfg_no_font_color_get" "', argument " "1"" of type '" "struct encoder_cfg *""'"); + } + arg1 = (struct encoder_cfg *)(argp1); + result = (int) ((arg1)->no_font_color); + resultobj = SWIG_From_int((int)(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_encoder_cfg_no_type_setting_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct encoder_cfg *arg1 = (struct encoder_cfg *) 0 ; + int arg2 ; + void *argp1 = 0 ; + int res1 = 0 ; + int val2 ; + int ecode2 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OO:encoder_cfg_no_type_setting_set",&obj0,&obj1)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_encoder_cfg, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "encoder_cfg_no_type_setting_set" "', argument " "1"" of type '" "struct encoder_cfg *""'"); + } + arg1 = (struct encoder_cfg *)(argp1); + ecode2 = SWIG_AsVal_int(obj1, &val2); + if (!SWIG_IsOK(ecode2)) { + SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "encoder_cfg_no_type_setting_set" "', argument " "2"" of type '" "int""'"); + } + arg2 = (int)(val2); + if (arg1) (arg1)->no_type_setting = arg2; + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_encoder_cfg_no_type_setting_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct encoder_cfg *arg1 = (struct encoder_cfg *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + int result; + + if (!PyArg_ParseTuple(args,(char *)"O:encoder_cfg_no_type_setting_get",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_encoder_cfg, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "encoder_cfg_no_type_setting_get" "', argument " "1"" of type '" "struct encoder_cfg *""'"); + } + arg1 = (struct encoder_cfg *)(argp1); + result = (int) ((arg1)->no_type_setting); + resultobj = SWIG_From_int((int)(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_encoder_cfg_cc_to_stdout_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct encoder_cfg *arg1 = (struct encoder_cfg *) 0 ; + int arg2 ; + void *argp1 = 0 ; + int res1 = 0 ; + int val2 ; + int ecode2 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OO:encoder_cfg_cc_to_stdout_set",&obj0,&obj1)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_encoder_cfg, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "encoder_cfg_cc_to_stdout_set" "', argument " "1"" of type '" "struct encoder_cfg *""'"); + } + arg1 = (struct encoder_cfg *)(argp1); + ecode2 = SWIG_AsVal_int(obj1, &val2); + if (!SWIG_IsOK(ecode2)) { + SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "encoder_cfg_cc_to_stdout_set" "', argument " "2"" of type '" "int""'"); + } + arg2 = (int)(val2); + if (arg1) (arg1)->cc_to_stdout = arg2; + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_encoder_cfg_cc_to_stdout_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct encoder_cfg *arg1 = (struct encoder_cfg *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + int result; + + if (!PyArg_ParseTuple(args,(char *)"O:encoder_cfg_cc_to_stdout_get",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_encoder_cfg, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "encoder_cfg_cc_to_stdout_get" "', argument " "1"" of type '" "struct encoder_cfg *""'"); + } + arg1 = (struct encoder_cfg *)(argp1); + result = (int) ((arg1)->cc_to_stdout); + resultobj = SWIG_From_int((int)(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_encoder_cfg_line_terminator_lf_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct encoder_cfg *arg1 = (struct encoder_cfg *) 0 ; + int arg2 ; + void *argp1 = 0 ; + int res1 = 0 ; + int val2 ; + int ecode2 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OO:encoder_cfg_line_terminator_lf_set",&obj0,&obj1)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_encoder_cfg, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "encoder_cfg_line_terminator_lf_set" "', argument " "1"" of type '" "struct encoder_cfg *""'"); + } + arg1 = (struct encoder_cfg *)(argp1); + ecode2 = SWIG_AsVal_int(obj1, &val2); + if (!SWIG_IsOK(ecode2)) { + SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "encoder_cfg_line_terminator_lf_set" "', argument " "2"" of type '" "int""'"); + } + arg2 = (int)(val2); + if (arg1) (arg1)->line_terminator_lf = arg2; + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_encoder_cfg_line_terminator_lf_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct encoder_cfg *arg1 = (struct encoder_cfg *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + int result; + + if (!PyArg_ParseTuple(args,(char *)"O:encoder_cfg_line_terminator_lf_get",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_encoder_cfg, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "encoder_cfg_line_terminator_lf_get" "', argument " "1"" of type '" "struct encoder_cfg *""'"); + } + arg1 = (struct encoder_cfg *)(argp1); + result = (int) ((arg1)->line_terminator_lf); + resultobj = SWIG_From_int((int)(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_encoder_cfg_subs_delay_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct encoder_cfg *arg1 = (struct encoder_cfg *) 0 ; + LLONG arg2 ; + void *argp1 = 0 ; + int res1 = 0 ; + void *argp2 ; + int res2 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OO:encoder_cfg_subs_delay_set",&obj0,&obj1)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_encoder_cfg, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "encoder_cfg_subs_delay_set" "', argument " "1"" of type '" "struct encoder_cfg *""'"); + } + arg1 = (struct encoder_cfg *)(argp1); + { + res2 = SWIG_ConvertPtr(obj1, &argp2, SWIGTYPE_p_LLONG, 0 ); + if (!SWIG_IsOK(res2)) { + SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "encoder_cfg_subs_delay_set" "', argument " "2"" of type '" "LLONG""'"); + } + if (!argp2) { + SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "encoder_cfg_subs_delay_set" "', argument " "2"" of type '" "LLONG""'"); + } else { + arg2 = *((LLONG *)(argp2)); + } + } + if (arg1) (arg1)->subs_delay = arg2; + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_encoder_cfg_subs_delay_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct encoder_cfg *arg1 = (struct encoder_cfg *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + LLONG result; + + if (!PyArg_ParseTuple(args,(char *)"O:encoder_cfg_subs_delay_get",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_encoder_cfg, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "encoder_cfg_subs_delay_get" "', argument " "1"" of type '" "struct encoder_cfg *""'"); + } + arg1 = (struct encoder_cfg *)(argp1); + result = ((arg1)->subs_delay); + resultobj = SWIG_NewPointerObj((LLONG *)memcpy((LLONG *)calloc(1,sizeof(LLONG)),&result,sizeof(LLONG)), SWIGTYPE_p_LLONG, SWIG_POINTER_OWN | 0 ); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_encoder_cfg_program_number_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct encoder_cfg *arg1 = (struct encoder_cfg *) 0 ; + int arg2 ; + void *argp1 = 0 ; + int res1 = 0 ; + int val2 ; + int ecode2 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OO:encoder_cfg_program_number_set",&obj0,&obj1)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_encoder_cfg, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "encoder_cfg_program_number_set" "', argument " "1"" of type '" "struct encoder_cfg *""'"); + } + arg1 = (struct encoder_cfg *)(argp1); + ecode2 = SWIG_AsVal_int(obj1, &val2); + if (!SWIG_IsOK(ecode2)) { + SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "encoder_cfg_program_number_set" "', argument " "2"" of type '" "int""'"); + } + arg2 = (int)(val2); + if (arg1) (arg1)->program_number = arg2; + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_encoder_cfg_program_number_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct encoder_cfg *arg1 = (struct encoder_cfg *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + int result; + + if (!PyArg_ParseTuple(args,(char *)"O:encoder_cfg_program_number_get",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_encoder_cfg, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "encoder_cfg_program_number_get" "', argument " "1"" of type '" "struct encoder_cfg *""'"); + } + arg1 = (struct encoder_cfg *)(argp1); + result = (int) ((arg1)->program_number); + resultobj = SWIG_From_int((int)(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_encoder_cfg_in_format_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct encoder_cfg *arg1 = (struct encoder_cfg *) 0 ; + unsigned char arg2 ; + void *argp1 = 0 ; + int res1 = 0 ; + unsigned char val2 ; + int ecode2 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OO:encoder_cfg_in_format_set",&obj0,&obj1)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_encoder_cfg, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "encoder_cfg_in_format_set" "', argument " "1"" of type '" "struct encoder_cfg *""'"); + } + arg1 = (struct encoder_cfg *)(argp1); + ecode2 = SWIG_AsVal_unsigned_SS_char(obj1, &val2); + if (!SWIG_IsOK(ecode2)) { + SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "encoder_cfg_in_format_set" "', argument " "2"" of type '" "unsigned char""'"); + } + arg2 = (unsigned char)(val2); + if (arg1) (arg1)->in_format = arg2; + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_encoder_cfg_in_format_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct encoder_cfg *arg1 = (struct encoder_cfg *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + unsigned char result; + + if (!PyArg_ParseTuple(args,(char *)"O:encoder_cfg_in_format_get",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_encoder_cfg, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "encoder_cfg_in_format_get" "', argument " "1"" of type '" "struct encoder_cfg *""'"); + } + arg1 = (struct encoder_cfg *)(argp1); + result = (unsigned char) ((arg1)->in_format); + resultobj = SWIG_From_unsigned_SS_char((unsigned char)(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_encoder_cfg_services_enabled_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct encoder_cfg *arg1 = (struct encoder_cfg *) 0 ; + int *arg2 ; + void *argp1 = 0 ; + int res1 = 0 ; + void *argp2 = 0 ; + int res2 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OO:encoder_cfg_services_enabled_set",&obj0,&obj1)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_encoder_cfg, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "encoder_cfg_services_enabled_set" "', argument " "1"" of type '" "struct encoder_cfg *""'"); + } + arg1 = (struct encoder_cfg *)(argp1); + res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_int, 0 | 0 ); + if (!SWIG_IsOK(res2)) { + SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "encoder_cfg_services_enabled_set" "', argument " "2"" of type '" "int [CCX_DTVCC_MAX_SERVICES]""'"); + } + arg2 = (int *)(argp2); + { + if (arg2) { + size_t ii = 0; + for (; ii < (size_t)CCX_DTVCC_MAX_SERVICES; ++ii) *(int *)&arg1->services_enabled[ii] = *((int *)arg2 + ii); + } else { + SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in variable '""services_enabled""' of type '""int [CCX_DTVCC_MAX_SERVICES]""'"); + } + } + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_encoder_cfg_services_enabled_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct encoder_cfg *arg1 = (struct encoder_cfg *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + int *result = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"O:encoder_cfg_services_enabled_get",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_encoder_cfg, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "encoder_cfg_services_enabled_get" "', argument " "1"" of type '" "struct encoder_cfg *""'"); + } + arg1 = (struct encoder_cfg *)(argp1); + result = (int *)(int *) ((arg1)->services_enabled); + resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_int, 0 | 0 ); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_encoder_cfg_services_charsets_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct encoder_cfg *arg1 = (struct encoder_cfg *) 0 ; + char **arg2 = (char **) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + void *argp2 = 0 ; + int res2 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OO:encoder_cfg_services_charsets_set",&obj0,&obj1)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_encoder_cfg, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "encoder_cfg_services_charsets_set" "', argument " "1"" of type '" "struct encoder_cfg *""'"); + } + arg1 = (struct encoder_cfg *)(argp1); + res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_p_char, 0 | 0 ); + if (!SWIG_IsOK(res2)) { + SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "encoder_cfg_services_charsets_set" "', argument " "2"" of type '" "char **""'"); + } + arg2 = (char **)(argp2); + if (arg1) (arg1)->services_charsets = arg2; + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_encoder_cfg_services_charsets_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct encoder_cfg *arg1 = (struct encoder_cfg *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + char **result = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"O:encoder_cfg_services_charsets_get",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_encoder_cfg, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "encoder_cfg_services_charsets_get" "', argument " "1"" of type '" "struct encoder_cfg *""'"); + } + arg1 = (struct encoder_cfg *)(argp1); + result = (char **) ((arg1)->services_charsets); + resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_p_char, 0 | 0 ); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_encoder_cfg_all_services_charset_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct encoder_cfg *arg1 = (struct encoder_cfg *) 0 ; + char *arg2 = (char *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + int res2 ; + char *buf2 = 0 ; + int alloc2 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OO:encoder_cfg_all_services_charset_set",&obj0,&obj1)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_encoder_cfg, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "encoder_cfg_all_services_charset_set" "', argument " "1"" of type '" "struct encoder_cfg *""'"); + } + arg1 = (struct encoder_cfg *)(argp1); + res2 = SWIG_AsCharPtrAndSize(obj1, &buf2, NULL, &alloc2); + if (!SWIG_IsOK(res2)) { + SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "encoder_cfg_all_services_charset_set" "', argument " "2"" of type '" "char *""'"); + } + arg2 = (char *)(buf2); + if (arg1->all_services_charset) free((char*)arg1->all_services_charset); + if (arg2) { + size_t size = strlen((const char *)(arg2)) + 1; + arg1->all_services_charset = (char *)(char *)memcpy(malloc((size)*sizeof(char)), (const char *)(arg2), sizeof(char)*(size)); + } else { + arg1->all_services_charset = 0; + } + resultobj = SWIG_Py_Void(); + if (alloc2 == SWIG_NEWOBJ) free((char*)buf2); + return resultobj; +fail: + if (alloc2 == SWIG_NEWOBJ) free((char*)buf2); + return NULL; +} + + +SWIGINTERN PyObject *_wrap_encoder_cfg_all_services_charset_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct encoder_cfg *arg1 = (struct encoder_cfg *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + char *result = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"O:encoder_cfg_all_services_charset_get",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_encoder_cfg, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "encoder_cfg_all_services_charset_get" "', argument " "1"" of type '" "struct encoder_cfg *""'"); + } + arg1 = (struct encoder_cfg *)(argp1); + result = (char *) ((arg1)->all_services_charset); + resultobj = SWIG_FromCharPtr((const char *)result); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_new_encoder_cfg(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct encoder_cfg *result = 0 ; + + if (!PyArg_ParseTuple(args,(char *)":new_encoder_cfg")) SWIG_fail; + result = (struct encoder_cfg *)calloc(1, sizeof(struct encoder_cfg)); + resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_encoder_cfg, SWIG_POINTER_NEW | 0 ); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_delete_encoder_cfg(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct encoder_cfg *arg1 = (struct encoder_cfg *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"O:delete_encoder_cfg",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_encoder_cfg, SWIG_POINTER_DISOWN | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_encoder_cfg" "', argument " "1"" of type '" "struct encoder_cfg *""'"); + } + arg1 = (struct encoder_cfg *)(argp1); + free((char *) arg1); + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *encoder_cfg_swigregister(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *obj; + if (!PyArg_ParseTuple(args,(char *)"O:swigregister", &obj)) return NULL; + SWIG_TypeNewClientData(SWIGTYPE_p_encoder_cfg, SWIG_NewClientData(obj)); + return SWIG_Py_Void(); +} + +SWIGINTERN PyObject *_wrap_ccx_s_options_extract_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct ccx_s_options *arg1 = (struct ccx_s_options *) 0 ; + int arg2 ; + void *argp1 = 0 ; + int res1 = 0 ; + int val2 ; + int ecode2 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OO:ccx_s_options_extract_set",&obj0,&obj1)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_ccx_s_options, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "ccx_s_options_extract_set" "', argument " "1"" of type '" "struct ccx_s_options *""'"); + } + arg1 = (struct ccx_s_options *)(argp1); + ecode2 = SWIG_AsVal_int(obj1, &val2); + if (!SWIG_IsOK(ecode2)) { + SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "ccx_s_options_extract_set" "', argument " "2"" of type '" "int""'"); + } + arg2 = (int)(val2); + if (arg1) (arg1)->extract = arg2; + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_ccx_s_options_extract_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct ccx_s_options *arg1 = (struct ccx_s_options *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + int result; + + if (!PyArg_ParseTuple(args,(char *)"O:ccx_s_options_extract_get",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_ccx_s_options, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "ccx_s_options_extract_get" "', argument " "1"" of type '" "struct ccx_s_options *""'"); + } + arg1 = (struct ccx_s_options *)(argp1); + result = (int) ((arg1)->extract); + resultobj = SWIG_From_int((int)(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_ccx_s_options_no_rollup_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct ccx_s_options *arg1 = (struct ccx_s_options *) 0 ; + int arg2 ; + void *argp1 = 0 ; + int res1 = 0 ; + int val2 ; + int ecode2 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OO:ccx_s_options_no_rollup_set",&obj0,&obj1)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_ccx_s_options, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "ccx_s_options_no_rollup_set" "', argument " "1"" of type '" "struct ccx_s_options *""'"); + } + arg1 = (struct ccx_s_options *)(argp1); + ecode2 = SWIG_AsVal_int(obj1, &val2); + if (!SWIG_IsOK(ecode2)) { + SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "ccx_s_options_no_rollup_set" "', argument " "2"" of type '" "int""'"); + } + arg2 = (int)(val2); + if (arg1) (arg1)->no_rollup = arg2; + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_ccx_s_options_no_rollup_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct ccx_s_options *arg1 = (struct ccx_s_options *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + int result; + + if (!PyArg_ParseTuple(args,(char *)"O:ccx_s_options_no_rollup_get",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_ccx_s_options, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "ccx_s_options_no_rollup_get" "', argument " "1"" of type '" "struct ccx_s_options *""'"); + } + arg1 = (struct ccx_s_options *)(argp1); + result = (int) ((arg1)->no_rollup); + resultobj = SWIG_From_int((int)(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_ccx_s_options_noscte20_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct ccx_s_options *arg1 = (struct ccx_s_options *) 0 ; + int arg2 ; + void *argp1 = 0 ; + int res1 = 0 ; + int val2 ; + int ecode2 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OO:ccx_s_options_noscte20_set",&obj0,&obj1)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_ccx_s_options, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "ccx_s_options_noscte20_set" "', argument " "1"" of type '" "struct ccx_s_options *""'"); + } + arg1 = (struct ccx_s_options *)(argp1); + ecode2 = SWIG_AsVal_int(obj1, &val2); + if (!SWIG_IsOK(ecode2)) { + SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "ccx_s_options_noscte20_set" "', argument " "2"" of type '" "int""'"); + } + arg2 = (int)(val2); + if (arg1) (arg1)->noscte20 = arg2; + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_ccx_s_options_noscte20_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct ccx_s_options *arg1 = (struct ccx_s_options *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + int result; + + if (!PyArg_ParseTuple(args,(char *)"O:ccx_s_options_noscte20_get",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_ccx_s_options, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "ccx_s_options_noscte20_get" "', argument " "1"" of type '" "struct ccx_s_options *""'"); + } + arg1 = (struct ccx_s_options *)(argp1); + result = (int) ((arg1)->noscte20); + resultobj = SWIG_From_int((int)(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_ccx_s_options_webvtt_create_css_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct ccx_s_options *arg1 = (struct ccx_s_options *) 0 ; + int arg2 ; + void *argp1 = 0 ; + int res1 = 0 ; + int val2 ; + int ecode2 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OO:ccx_s_options_webvtt_create_css_set",&obj0,&obj1)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_ccx_s_options, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "ccx_s_options_webvtt_create_css_set" "', argument " "1"" of type '" "struct ccx_s_options *""'"); + } + arg1 = (struct ccx_s_options *)(argp1); + ecode2 = SWIG_AsVal_int(obj1, &val2); + if (!SWIG_IsOK(ecode2)) { + SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "ccx_s_options_webvtt_create_css_set" "', argument " "2"" of type '" "int""'"); + } + arg2 = (int)(val2); + if (arg1) (arg1)->webvtt_create_css = arg2; + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_ccx_s_options_webvtt_create_css_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct ccx_s_options *arg1 = (struct ccx_s_options *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + int result; + + if (!PyArg_ParseTuple(args,(char *)"O:ccx_s_options_webvtt_create_css_get",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_ccx_s_options, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "ccx_s_options_webvtt_create_css_get" "', argument " "1"" of type '" "struct ccx_s_options *""'"); + } + arg1 = (struct ccx_s_options *)(argp1); + result = (int) ((arg1)->webvtt_create_css); + resultobj = SWIG_From_int((int)(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_ccx_s_options_cc_channel_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct ccx_s_options *arg1 = (struct ccx_s_options *) 0 ; + int arg2 ; + void *argp1 = 0 ; + int res1 = 0 ; + int val2 ; + int ecode2 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OO:ccx_s_options_cc_channel_set",&obj0,&obj1)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_ccx_s_options, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "ccx_s_options_cc_channel_set" "', argument " "1"" of type '" "struct ccx_s_options *""'"); + } + arg1 = (struct ccx_s_options *)(argp1); + ecode2 = SWIG_AsVal_int(obj1, &val2); + if (!SWIG_IsOK(ecode2)) { + SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "ccx_s_options_cc_channel_set" "', argument " "2"" of type '" "int""'"); + } + arg2 = (int)(val2); + if (arg1) (arg1)->cc_channel = arg2; + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_ccx_s_options_cc_channel_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct ccx_s_options *arg1 = (struct ccx_s_options *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + int result; + + if (!PyArg_ParseTuple(args,(char *)"O:ccx_s_options_cc_channel_get",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_ccx_s_options, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "ccx_s_options_cc_channel_get" "', argument " "1"" of type '" "struct ccx_s_options *""'"); + } + arg1 = (struct ccx_s_options *)(argp1); + result = (int) ((arg1)->cc_channel); + resultobj = SWIG_From_int((int)(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_ccx_s_options_buffer_input_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct ccx_s_options *arg1 = (struct ccx_s_options *) 0 ; + int arg2 ; + void *argp1 = 0 ; + int res1 = 0 ; + int val2 ; + int ecode2 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OO:ccx_s_options_buffer_input_set",&obj0,&obj1)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_ccx_s_options, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "ccx_s_options_buffer_input_set" "', argument " "1"" of type '" "struct ccx_s_options *""'"); + } + arg1 = (struct ccx_s_options *)(argp1); + ecode2 = SWIG_AsVal_int(obj1, &val2); + if (!SWIG_IsOK(ecode2)) { + SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "ccx_s_options_buffer_input_set" "', argument " "2"" of type '" "int""'"); + } + arg2 = (int)(val2); + if (arg1) (arg1)->buffer_input = arg2; + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_ccx_s_options_buffer_input_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct ccx_s_options *arg1 = (struct ccx_s_options *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + int result; + + if (!PyArg_ParseTuple(args,(char *)"O:ccx_s_options_buffer_input_get",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_ccx_s_options, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "ccx_s_options_buffer_input_get" "', argument " "1"" of type '" "struct ccx_s_options *""'"); + } + arg1 = (struct ccx_s_options *)(argp1); + result = (int) ((arg1)->buffer_input); + resultobj = SWIG_From_int((int)(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_ccx_s_options_nofontcolor_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct ccx_s_options *arg1 = (struct ccx_s_options *) 0 ; + int arg2 ; + void *argp1 = 0 ; + int res1 = 0 ; + int val2 ; + int ecode2 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OO:ccx_s_options_nofontcolor_set",&obj0,&obj1)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_ccx_s_options, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "ccx_s_options_nofontcolor_set" "', argument " "1"" of type '" "struct ccx_s_options *""'"); + } + arg1 = (struct ccx_s_options *)(argp1); + ecode2 = SWIG_AsVal_int(obj1, &val2); + if (!SWIG_IsOK(ecode2)) { + SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "ccx_s_options_nofontcolor_set" "', argument " "2"" of type '" "int""'"); + } + arg2 = (int)(val2); + if (arg1) (arg1)->nofontcolor = arg2; + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_ccx_s_options_nofontcolor_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct ccx_s_options *arg1 = (struct ccx_s_options *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + int result; + + if (!PyArg_ParseTuple(args,(char *)"O:ccx_s_options_nofontcolor_get",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_ccx_s_options, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "ccx_s_options_nofontcolor_get" "', argument " "1"" of type '" "struct ccx_s_options *""'"); + } + arg1 = (struct ccx_s_options *)(argp1); + result = (int) ((arg1)->nofontcolor); + resultobj = SWIG_From_int((int)(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_ccx_s_options_nohtmlescape_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct ccx_s_options *arg1 = (struct ccx_s_options *) 0 ; + int arg2 ; + void *argp1 = 0 ; + int res1 = 0 ; + int val2 ; + int ecode2 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OO:ccx_s_options_nohtmlescape_set",&obj0,&obj1)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_ccx_s_options, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "ccx_s_options_nohtmlescape_set" "', argument " "1"" of type '" "struct ccx_s_options *""'"); + } + arg1 = (struct ccx_s_options *)(argp1); + ecode2 = SWIG_AsVal_int(obj1, &val2); + if (!SWIG_IsOK(ecode2)) { + SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "ccx_s_options_nohtmlescape_set" "', argument " "2"" of type '" "int""'"); + } + arg2 = (int)(val2); + if (arg1) (arg1)->nohtmlescape = arg2; + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_ccx_s_options_nohtmlescape_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct ccx_s_options *arg1 = (struct ccx_s_options *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + int result; + + if (!PyArg_ParseTuple(args,(char *)"O:ccx_s_options_nohtmlescape_get",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_ccx_s_options, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "ccx_s_options_nohtmlescape_get" "', argument " "1"" of type '" "struct ccx_s_options *""'"); + } + arg1 = (struct ccx_s_options *)(argp1); + result = (int) ((arg1)->nohtmlescape); + resultobj = SWIG_From_int((int)(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_ccx_s_options_notypesetting_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct ccx_s_options *arg1 = (struct ccx_s_options *) 0 ; + int arg2 ; + void *argp1 = 0 ; + int res1 = 0 ; + int val2 ; + int ecode2 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OO:ccx_s_options_notypesetting_set",&obj0,&obj1)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_ccx_s_options, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "ccx_s_options_notypesetting_set" "', argument " "1"" of type '" "struct ccx_s_options *""'"); + } + arg1 = (struct ccx_s_options *)(argp1); + ecode2 = SWIG_AsVal_int(obj1, &val2); + if (!SWIG_IsOK(ecode2)) { + SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "ccx_s_options_notypesetting_set" "', argument " "2"" of type '" "int""'"); + } + arg2 = (int)(val2); + if (arg1) (arg1)->notypesetting = arg2; + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_ccx_s_options_notypesetting_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct ccx_s_options *arg1 = (struct ccx_s_options *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + int result; + + if (!PyArg_ParseTuple(args,(char *)"O:ccx_s_options_notypesetting_get",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_ccx_s_options, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "ccx_s_options_notypesetting_get" "', argument " "1"" of type '" "struct ccx_s_options *""'"); + } + arg1 = (struct ccx_s_options *)(argp1); + result = (int) ((arg1)->notypesetting); + resultobj = SWIG_From_int((int)(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_ccx_s_options_extraction_start_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct ccx_s_options *arg1 = (struct ccx_s_options *) 0 ; + struct ccx_boundary_time arg2 ; + void *argp1 = 0 ; + int res1 = 0 ; + void *argp2 ; + int res2 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OO:ccx_s_options_extraction_start_set",&obj0,&obj1)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_ccx_s_options, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "ccx_s_options_extraction_start_set" "', argument " "1"" of type '" "struct ccx_s_options *""'"); + } + arg1 = (struct ccx_s_options *)(argp1); + { + res2 = SWIG_ConvertPtr(obj1, &argp2, SWIGTYPE_p_ccx_boundary_time, 0 ); + if (!SWIG_IsOK(res2)) { + SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "ccx_s_options_extraction_start_set" "', argument " "2"" of type '" "struct ccx_boundary_time""'"); + } + if (!argp2) { + SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "ccx_s_options_extraction_start_set" "', argument " "2"" of type '" "struct ccx_boundary_time""'"); + } else { + arg2 = *((struct ccx_boundary_time *)(argp2)); + } + } + if (arg1) (arg1)->extraction_start = arg2; + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_ccx_s_options_extraction_start_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct ccx_s_options *arg1 = (struct ccx_s_options *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + struct ccx_boundary_time result; + + if (!PyArg_ParseTuple(args,(char *)"O:ccx_s_options_extraction_start_get",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_ccx_s_options, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "ccx_s_options_extraction_start_get" "', argument " "1"" of type '" "struct ccx_s_options *""'"); + } + arg1 = (struct ccx_s_options *)(argp1); + result = ((arg1)->extraction_start); + resultobj = SWIG_NewPointerObj((struct ccx_boundary_time *)memcpy((struct ccx_boundary_time *)calloc(1,sizeof(struct ccx_boundary_time)),&result,sizeof(struct ccx_boundary_time)), SWIGTYPE_p_ccx_boundary_time, SWIG_POINTER_OWN | 0 ); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_ccx_s_options_extraction_end_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct ccx_s_options *arg1 = (struct ccx_s_options *) 0 ; + struct ccx_boundary_time arg2 ; + void *argp1 = 0 ; + int res1 = 0 ; + void *argp2 ; + int res2 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OO:ccx_s_options_extraction_end_set",&obj0,&obj1)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_ccx_s_options, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "ccx_s_options_extraction_end_set" "', argument " "1"" of type '" "struct ccx_s_options *""'"); + } + arg1 = (struct ccx_s_options *)(argp1); + { + res2 = SWIG_ConvertPtr(obj1, &argp2, SWIGTYPE_p_ccx_boundary_time, 0 ); + if (!SWIG_IsOK(res2)) { + SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "ccx_s_options_extraction_end_set" "', argument " "2"" of type '" "struct ccx_boundary_time""'"); + } + if (!argp2) { + SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "ccx_s_options_extraction_end_set" "', argument " "2"" of type '" "struct ccx_boundary_time""'"); + } else { + arg2 = *((struct ccx_boundary_time *)(argp2)); + } + } + if (arg1) (arg1)->extraction_end = arg2; + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_ccx_s_options_extraction_end_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct ccx_s_options *arg1 = (struct ccx_s_options *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + struct ccx_boundary_time result; + + if (!PyArg_ParseTuple(args,(char *)"O:ccx_s_options_extraction_end_get",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_ccx_s_options, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "ccx_s_options_extraction_end_get" "', argument " "1"" of type '" "struct ccx_s_options *""'"); + } + arg1 = (struct ccx_s_options *)(argp1); + result = ((arg1)->extraction_end); + resultobj = SWIG_NewPointerObj((struct ccx_boundary_time *)memcpy((struct ccx_boundary_time *)calloc(1,sizeof(struct ccx_boundary_time)),&result,sizeof(struct ccx_boundary_time)), SWIGTYPE_p_ccx_boundary_time, SWIG_POINTER_OWN | 0 ); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_ccx_s_options_print_file_reports_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct ccx_s_options *arg1 = (struct ccx_s_options *) 0 ; + int arg2 ; + void *argp1 = 0 ; + int res1 = 0 ; + int val2 ; + int ecode2 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OO:ccx_s_options_print_file_reports_set",&obj0,&obj1)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_ccx_s_options, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "ccx_s_options_print_file_reports_set" "', argument " "1"" of type '" "struct ccx_s_options *""'"); + } + arg1 = (struct ccx_s_options *)(argp1); + ecode2 = SWIG_AsVal_int(obj1, &val2); + if (!SWIG_IsOK(ecode2)) { + SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "ccx_s_options_print_file_reports_set" "', argument " "2"" of type '" "int""'"); + } + arg2 = (int)(val2); + if (arg1) (arg1)->print_file_reports = arg2; + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_ccx_s_options_print_file_reports_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct ccx_s_options *arg1 = (struct ccx_s_options *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + int result; + + if (!PyArg_ParseTuple(args,(char *)"O:ccx_s_options_print_file_reports_get",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_ccx_s_options, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "ccx_s_options_print_file_reports_get" "', argument " "1"" of type '" "struct ccx_s_options *""'"); + } + arg1 = (struct ccx_s_options *)(argp1); + result = (int) ((arg1)->print_file_reports); + resultobj = SWIG_From_int((int)(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_ccx_s_options_settings_608_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct ccx_s_options *arg1 = (struct ccx_s_options *) 0 ; + ccx_decoder_608_settings arg2 ; + void *argp1 = 0 ; + int res1 = 0 ; + void *argp2 ; + int res2 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OO:ccx_s_options_settings_608_set",&obj0,&obj1)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_ccx_s_options, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "ccx_s_options_settings_608_set" "', argument " "1"" of type '" "struct ccx_s_options *""'"); + } + arg1 = (struct ccx_s_options *)(argp1); + { + res2 = SWIG_ConvertPtr(obj1, &argp2, SWIGTYPE_p_ccx_decoder_608_settings, 0 ); + if (!SWIG_IsOK(res2)) { + SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "ccx_s_options_settings_608_set" "', argument " "2"" of type '" "ccx_decoder_608_settings""'"); + } + if (!argp2) { + SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "ccx_s_options_settings_608_set" "', argument " "2"" of type '" "ccx_decoder_608_settings""'"); + } else { + arg2 = *((ccx_decoder_608_settings *)(argp2)); + } + } + if (arg1) (arg1)->settings_608 = arg2; + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_ccx_s_options_settings_608_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct ccx_s_options *arg1 = (struct ccx_s_options *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + ccx_decoder_608_settings result; + + if (!PyArg_ParseTuple(args,(char *)"O:ccx_s_options_settings_608_get",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_ccx_s_options, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "ccx_s_options_settings_608_get" "', argument " "1"" of type '" "struct ccx_s_options *""'"); + } + arg1 = (struct ccx_s_options *)(argp1); + result = ((arg1)->settings_608); + resultobj = SWIG_NewPointerObj((ccx_decoder_608_settings *)memcpy((ccx_decoder_608_settings *)calloc(1,sizeof(ccx_decoder_608_settings)),&result,sizeof(ccx_decoder_608_settings)), SWIGTYPE_p_ccx_decoder_608_settings, SWIG_POINTER_OWN | 0 ); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_ccx_s_options_settings_dtvcc_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct ccx_s_options *arg1 = (struct ccx_s_options *) 0 ; + ccx_decoder_dtvcc_settings arg2 ; + void *argp1 = 0 ; + int res1 = 0 ; + void *argp2 ; + int res2 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OO:ccx_s_options_settings_dtvcc_set",&obj0,&obj1)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_ccx_s_options, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "ccx_s_options_settings_dtvcc_set" "', argument " "1"" of type '" "struct ccx_s_options *""'"); + } + arg1 = (struct ccx_s_options *)(argp1); + { + res2 = SWIG_ConvertPtr(obj1, &argp2, SWIGTYPE_p_ccx_decoder_dtvcc_settings, 0 ); + if (!SWIG_IsOK(res2)) { + SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "ccx_s_options_settings_dtvcc_set" "', argument " "2"" of type '" "ccx_decoder_dtvcc_settings""'"); + } + if (!argp2) { + SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "ccx_s_options_settings_dtvcc_set" "', argument " "2"" of type '" "ccx_decoder_dtvcc_settings""'"); + } else { + arg2 = *((ccx_decoder_dtvcc_settings *)(argp2)); + } + } + if (arg1) (arg1)->settings_dtvcc = arg2; + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_ccx_s_options_settings_dtvcc_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct ccx_s_options *arg1 = (struct ccx_s_options *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + ccx_decoder_dtvcc_settings result; + + if (!PyArg_ParseTuple(args,(char *)"O:ccx_s_options_settings_dtvcc_get",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_ccx_s_options, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "ccx_s_options_settings_dtvcc_get" "', argument " "1"" of type '" "struct ccx_s_options *""'"); + } + arg1 = (struct ccx_s_options *)(argp1); + result = ((arg1)->settings_dtvcc); + resultobj = SWIG_NewPointerObj((ccx_decoder_dtvcc_settings *)memcpy((ccx_decoder_dtvcc_settings *)calloc(1,sizeof(ccx_decoder_dtvcc_settings)),&result,sizeof(ccx_decoder_dtvcc_settings)), SWIGTYPE_p_ccx_decoder_dtvcc_settings, SWIG_POINTER_OWN | 0 ); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_ccx_s_options_millis_separator_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct ccx_s_options *arg1 = (struct ccx_s_options *) 0 ; + char arg2 ; + void *argp1 = 0 ; + int res1 = 0 ; + char val2 ; + int ecode2 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OO:ccx_s_options_millis_separator_set",&obj0,&obj1)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_ccx_s_options, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "ccx_s_options_millis_separator_set" "', argument " "1"" of type '" "struct ccx_s_options *""'"); + } + arg1 = (struct ccx_s_options *)(argp1); + ecode2 = SWIG_AsVal_char(obj1, &val2); + if (!SWIG_IsOK(ecode2)) { + SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "ccx_s_options_millis_separator_set" "', argument " "2"" of type '" "char""'"); + } + arg2 = (char)(val2); + if (arg1) (arg1)->millis_separator = arg2; + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_ccx_s_options_millis_separator_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct ccx_s_options *arg1 = (struct ccx_s_options *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + char result; + + if (!PyArg_ParseTuple(args,(char *)"O:ccx_s_options_millis_separator_get",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_ccx_s_options, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "ccx_s_options_millis_separator_get" "', argument " "1"" of type '" "struct ccx_s_options *""'"); + } + arg1 = (struct ccx_s_options *)(argp1); + result = (char) ((arg1)->millis_separator); + resultobj = SWIG_From_char((char)(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_ccx_s_options_binary_concat_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct ccx_s_options *arg1 = (struct ccx_s_options *) 0 ; + int arg2 ; + void *argp1 = 0 ; + int res1 = 0 ; + int val2 ; + int ecode2 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OO:ccx_s_options_binary_concat_set",&obj0,&obj1)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_ccx_s_options, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "ccx_s_options_binary_concat_set" "', argument " "1"" of type '" "struct ccx_s_options *""'"); + } + arg1 = (struct ccx_s_options *)(argp1); + ecode2 = SWIG_AsVal_int(obj1, &val2); + if (!SWIG_IsOK(ecode2)) { + SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "ccx_s_options_binary_concat_set" "', argument " "2"" of type '" "int""'"); + } + arg2 = (int)(val2); + if (arg1) (arg1)->binary_concat = arg2; + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_ccx_s_options_binary_concat_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct ccx_s_options *arg1 = (struct ccx_s_options *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + int result; + + if (!PyArg_ParseTuple(args,(char *)"O:ccx_s_options_binary_concat_get",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_ccx_s_options, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "ccx_s_options_binary_concat_get" "', argument " "1"" of type '" "struct ccx_s_options *""'"); + } + arg1 = (struct ccx_s_options *)(argp1); + result = (int) ((arg1)->binary_concat); + resultobj = SWIG_From_int((int)(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_ccx_s_options_use_gop_as_pts_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct ccx_s_options *arg1 = (struct ccx_s_options *) 0 ; + int arg2 ; + void *argp1 = 0 ; + int res1 = 0 ; + int val2 ; + int ecode2 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OO:ccx_s_options_use_gop_as_pts_set",&obj0,&obj1)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_ccx_s_options, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "ccx_s_options_use_gop_as_pts_set" "', argument " "1"" of type '" "struct ccx_s_options *""'"); + } + arg1 = (struct ccx_s_options *)(argp1); + ecode2 = SWIG_AsVal_int(obj1, &val2); + if (!SWIG_IsOK(ecode2)) { + SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "ccx_s_options_use_gop_as_pts_set" "', argument " "2"" of type '" "int""'"); + } + arg2 = (int)(val2); + if (arg1) (arg1)->use_gop_as_pts = arg2; + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_ccx_s_options_use_gop_as_pts_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct ccx_s_options *arg1 = (struct ccx_s_options *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + int result; + + if (!PyArg_ParseTuple(args,(char *)"O:ccx_s_options_use_gop_as_pts_get",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_ccx_s_options, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "ccx_s_options_use_gop_as_pts_get" "', argument " "1"" of type '" "struct ccx_s_options *""'"); + } + arg1 = (struct ccx_s_options *)(argp1); + result = (int) ((arg1)->use_gop_as_pts); + resultobj = SWIG_From_int((int)(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_ccx_s_options_fix_padding_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct ccx_s_options *arg1 = (struct ccx_s_options *) 0 ; + int arg2 ; + void *argp1 = 0 ; + int res1 = 0 ; + int val2 ; + int ecode2 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OO:ccx_s_options_fix_padding_set",&obj0,&obj1)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_ccx_s_options, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "ccx_s_options_fix_padding_set" "', argument " "1"" of type '" "struct ccx_s_options *""'"); + } + arg1 = (struct ccx_s_options *)(argp1); + ecode2 = SWIG_AsVal_int(obj1, &val2); + if (!SWIG_IsOK(ecode2)) { + SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "ccx_s_options_fix_padding_set" "', argument " "2"" of type '" "int""'"); + } + arg2 = (int)(val2); + if (arg1) (arg1)->fix_padding = arg2; + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_ccx_s_options_fix_padding_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct ccx_s_options *arg1 = (struct ccx_s_options *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + int result; + + if (!PyArg_ParseTuple(args,(char *)"O:ccx_s_options_fix_padding_get",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_ccx_s_options, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "ccx_s_options_fix_padding_get" "', argument " "1"" of type '" "struct ccx_s_options *""'"); + } + arg1 = (struct ccx_s_options *)(argp1); + result = (int) ((arg1)->fix_padding); + resultobj = SWIG_From_int((int)(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_ccx_s_options_gui_mode_reports_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct ccx_s_options *arg1 = (struct ccx_s_options *) 0 ; + int arg2 ; + void *argp1 = 0 ; + int res1 = 0 ; + int val2 ; + int ecode2 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OO:ccx_s_options_gui_mode_reports_set",&obj0,&obj1)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_ccx_s_options, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "ccx_s_options_gui_mode_reports_set" "', argument " "1"" of type '" "struct ccx_s_options *""'"); + } + arg1 = (struct ccx_s_options *)(argp1); + ecode2 = SWIG_AsVal_int(obj1, &val2); + if (!SWIG_IsOK(ecode2)) { + SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "ccx_s_options_gui_mode_reports_set" "', argument " "2"" of type '" "int""'"); + } + arg2 = (int)(val2); + if (arg1) (arg1)->gui_mode_reports = arg2; + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_ccx_s_options_gui_mode_reports_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct ccx_s_options *arg1 = (struct ccx_s_options *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + int result; + + if (!PyArg_ParseTuple(args,(char *)"O:ccx_s_options_gui_mode_reports_get",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_ccx_s_options, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "ccx_s_options_gui_mode_reports_get" "', argument " "1"" of type '" "struct ccx_s_options *""'"); + } + arg1 = (struct ccx_s_options *)(argp1); + result = (int) ((arg1)->gui_mode_reports); + resultobj = SWIG_From_int((int)(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_ccx_s_options_no_progress_bar_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct ccx_s_options *arg1 = (struct ccx_s_options *) 0 ; + int arg2 ; + void *argp1 = 0 ; + int res1 = 0 ; + int val2 ; + int ecode2 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OO:ccx_s_options_no_progress_bar_set",&obj0,&obj1)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_ccx_s_options, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "ccx_s_options_no_progress_bar_set" "', argument " "1"" of type '" "struct ccx_s_options *""'"); + } + arg1 = (struct ccx_s_options *)(argp1); + ecode2 = SWIG_AsVal_int(obj1, &val2); + if (!SWIG_IsOK(ecode2)) { + SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "ccx_s_options_no_progress_bar_set" "', argument " "2"" of type '" "int""'"); + } + arg2 = (int)(val2); + if (arg1) (arg1)->no_progress_bar = arg2; + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_ccx_s_options_no_progress_bar_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct ccx_s_options *arg1 = (struct ccx_s_options *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + int result; + + if (!PyArg_ParseTuple(args,(char *)"O:ccx_s_options_no_progress_bar_get",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_ccx_s_options, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "ccx_s_options_no_progress_bar_get" "', argument " "1"" of type '" "struct ccx_s_options *""'"); + } + arg1 = (struct ccx_s_options *)(argp1); + result = (int) ((arg1)->no_progress_bar); + resultobj = SWIG_From_int((int)(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_ccx_s_options_sentence_cap_file_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct ccx_s_options *arg1 = (struct ccx_s_options *) 0 ; + char *arg2 = (char *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + int res2 ; + char *buf2 = 0 ; + int alloc2 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OO:ccx_s_options_sentence_cap_file_set",&obj0,&obj1)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_ccx_s_options, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "ccx_s_options_sentence_cap_file_set" "', argument " "1"" of type '" "struct ccx_s_options *""'"); + } + arg1 = (struct ccx_s_options *)(argp1); + res2 = SWIG_AsCharPtrAndSize(obj1, &buf2, NULL, &alloc2); + if (!SWIG_IsOK(res2)) { + SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "ccx_s_options_sentence_cap_file_set" "', argument " "2"" of type '" "char *""'"); + } + arg2 = (char *)(buf2); + if (arg1->sentence_cap_file) free((char*)arg1->sentence_cap_file); + if (arg2) { + size_t size = strlen((const char *)(arg2)) + 1; + arg1->sentence_cap_file = (char *)(char *)memcpy(malloc((size)*sizeof(char)), (const char *)(arg2), sizeof(char)*(size)); + } else { + arg1->sentence_cap_file = 0; + } + resultobj = SWIG_Py_Void(); + if (alloc2 == SWIG_NEWOBJ) free((char*)buf2); + return resultobj; +fail: + if (alloc2 == SWIG_NEWOBJ) free((char*)buf2); + return NULL; +} + + +SWIGINTERN PyObject *_wrap_ccx_s_options_sentence_cap_file_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct ccx_s_options *arg1 = (struct ccx_s_options *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + char *result = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"O:ccx_s_options_sentence_cap_file_get",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_ccx_s_options, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "ccx_s_options_sentence_cap_file_get" "', argument " "1"" of type '" "struct ccx_s_options *""'"); + } + arg1 = (struct ccx_s_options *)(argp1); + result = (char *) ((arg1)->sentence_cap_file); + resultobj = SWIG_FromCharPtr((const char *)result); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_ccx_s_options_live_stream_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct ccx_s_options *arg1 = (struct ccx_s_options *) 0 ; + int arg2 ; + void *argp1 = 0 ; + int res1 = 0 ; + int val2 ; + int ecode2 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OO:ccx_s_options_live_stream_set",&obj0,&obj1)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_ccx_s_options, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "ccx_s_options_live_stream_set" "', argument " "1"" of type '" "struct ccx_s_options *""'"); + } + arg1 = (struct ccx_s_options *)(argp1); + ecode2 = SWIG_AsVal_int(obj1, &val2); + if (!SWIG_IsOK(ecode2)) { + SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "ccx_s_options_live_stream_set" "', argument " "2"" of type '" "int""'"); + } + arg2 = (int)(val2); + if (arg1) (arg1)->live_stream = arg2; + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_ccx_s_options_live_stream_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct ccx_s_options *arg1 = (struct ccx_s_options *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + int result; + + if (!PyArg_ParseTuple(args,(char *)"O:ccx_s_options_live_stream_get",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_ccx_s_options, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "ccx_s_options_live_stream_get" "', argument " "1"" of type '" "struct ccx_s_options *""'"); + } + arg1 = (struct ccx_s_options *)(argp1); + result = (int) ((arg1)->live_stream); + resultobj = SWIG_From_int((int)(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_ccx_s_options_messages_target_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct ccx_s_options *arg1 = (struct ccx_s_options *) 0 ; + int arg2 ; + void *argp1 = 0 ; + int res1 = 0 ; + int val2 ; + int ecode2 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OO:ccx_s_options_messages_target_set",&obj0,&obj1)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_ccx_s_options, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "ccx_s_options_messages_target_set" "', argument " "1"" of type '" "struct ccx_s_options *""'"); + } + arg1 = (struct ccx_s_options *)(argp1); + ecode2 = SWIG_AsVal_int(obj1, &val2); + if (!SWIG_IsOK(ecode2)) { + SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "ccx_s_options_messages_target_set" "', argument " "2"" of type '" "int""'"); + } + arg2 = (int)(val2); + if (arg1) (arg1)->messages_target = arg2; + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_ccx_s_options_messages_target_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct ccx_s_options *arg1 = (struct ccx_s_options *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + int result; + + if (!PyArg_ParseTuple(args,(char *)"O:ccx_s_options_messages_target_get",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_ccx_s_options, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "ccx_s_options_messages_target_get" "', argument " "1"" of type '" "struct ccx_s_options *""'"); + } + arg1 = (struct ccx_s_options *)(argp1); + result = (int) ((arg1)->messages_target); + resultobj = SWIG_From_int((int)(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_ccx_s_options_levdistmincnt_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct ccx_s_options *arg1 = (struct ccx_s_options *) 0 ; + int arg2 ; + void *argp1 = 0 ; + int res1 = 0 ; + int val2 ; + int ecode2 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OO:ccx_s_options_levdistmincnt_set",&obj0,&obj1)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_ccx_s_options, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "ccx_s_options_levdistmincnt_set" "', argument " "1"" of type '" "struct ccx_s_options *""'"); + } + arg1 = (struct ccx_s_options *)(argp1); + ecode2 = SWIG_AsVal_int(obj1, &val2); + if (!SWIG_IsOK(ecode2)) { + SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "ccx_s_options_levdistmincnt_set" "', argument " "2"" of type '" "int""'"); + } + arg2 = (int)(val2); + if (arg1) (arg1)->levdistmincnt = arg2; + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_ccx_s_options_levdistmincnt_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct ccx_s_options *arg1 = (struct ccx_s_options *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + int result; + + if (!PyArg_ParseTuple(args,(char *)"O:ccx_s_options_levdistmincnt_get",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_ccx_s_options, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "ccx_s_options_levdistmincnt_get" "', argument " "1"" of type '" "struct ccx_s_options *""'"); + } + arg1 = (struct ccx_s_options *)(argp1); + result = (int) ((arg1)->levdistmincnt); + resultobj = SWIG_From_int((int)(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_ccx_s_options_levdistmaxpct_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct ccx_s_options *arg1 = (struct ccx_s_options *) 0 ; + int arg2 ; + void *argp1 = 0 ; + int res1 = 0 ; + int val2 ; + int ecode2 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OO:ccx_s_options_levdistmaxpct_set",&obj0,&obj1)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_ccx_s_options, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "ccx_s_options_levdistmaxpct_set" "', argument " "1"" of type '" "struct ccx_s_options *""'"); + } + arg1 = (struct ccx_s_options *)(argp1); + ecode2 = SWIG_AsVal_int(obj1, &val2); + if (!SWIG_IsOK(ecode2)) { + SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "ccx_s_options_levdistmaxpct_set" "', argument " "2"" of type '" "int""'"); + } + arg2 = (int)(val2); + if (arg1) (arg1)->levdistmaxpct = arg2; + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_ccx_s_options_levdistmaxpct_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct ccx_s_options *arg1 = (struct ccx_s_options *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + int result; + + if (!PyArg_ParseTuple(args,(char *)"O:ccx_s_options_levdistmaxpct_get",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_ccx_s_options, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "ccx_s_options_levdistmaxpct_get" "', argument " "1"" of type '" "struct ccx_s_options *""'"); + } + arg1 = (struct ccx_s_options *)(argp1); + result = (int) ((arg1)->levdistmaxpct); + resultobj = SWIG_From_int((int)(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_ccx_s_options_investigate_packets_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct ccx_s_options *arg1 = (struct ccx_s_options *) 0 ; + int arg2 ; + void *argp1 = 0 ; + int res1 = 0 ; + int val2 ; + int ecode2 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OO:ccx_s_options_investigate_packets_set",&obj0,&obj1)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_ccx_s_options, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "ccx_s_options_investigate_packets_set" "', argument " "1"" of type '" "struct ccx_s_options *""'"); + } + arg1 = (struct ccx_s_options *)(argp1); + ecode2 = SWIG_AsVal_int(obj1, &val2); + if (!SWIG_IsOK(ecode2)) { + SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "ccx_s_options_investigate_packets_set" "', argument " "2"" of type '" "int""'"); + } + arg2 = (int)(val2); + if (arg1) (arg1)->investigate_packets = arg2; + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_ccx_s_options_investigate_packets_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct ccx_s_options *arg1 = (struct ccx_s_options *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + int result; + + if (!PyArg_ParseTuple(args,(char *)"O:ccx_s_options_investigate_packets_get",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_ccx_s_options, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "ccx_s_options_investigate_packets_get" "', argument " "1"" of type '" "struct ccx_s_options *""'"); + } + arg1 = (struct ccx_s_options *)(argp1); + result = (int) ((arg1)->investigate_packets); + resultobj = SWIG_From_int((int)(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_ccx_s_options_fullbin_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct ccx_s_options *arg1 = (struct ccx_s_options *) 0 ; + int arg2 ; + void *argp1 = 0 ; + int res1 = 0 ; + int val2 ; + int ecode2 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OO:ccx_s_options_fullbin_set",&obj0,&obj1)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_ccx_s_options, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "ccx_s_options_fullbin_set" "', argument " "1"" of type '" "struct ccx_s_options *""'"); + } + arg1 = (struct ccx_s_options *)(argp1); + ecode2 = SWIG_AsVal_int(obj1, &val2); + if (!SWIG_IsOK(ecode2)) { + SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "ccx_s_options_fullbin_set" "', argument " "2"" of type '" "int""'"); + } + arg2 = (int)(val2); + if (arg1) (arg1)->fullbin = arg2; + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_ccx_s_options_fullbin_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct ccx_s_options *arg1 = (struct ccx_s_options *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + int result; + + if (!PyArg_ParseTuple(args,(char *)"O:ccx_s_options_fullbin_get",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_ccx_s_options, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "ccx_s_options_fullbin_get" "', argument " "1"" of type '" "struct ccx_s_options *""'"); + } + arg1 = (struct ccx_s_options *)(argp1); + result = (int) ((arg1)->fullbin); + resultobj = SWIG_From_int((int)(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_ccx_s_options_nosync_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct ccx_s_options *arg1 = (struct ccx_s_options *) 0 ; + int arg2 ; + void *argp1 = 0 ; + int res1 = 0 ; + int val2 ; + int ecode2 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OO:ccx_s_options_nosync_set",&obj0,&obj1)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_ccx_s_options, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "ccx_s_options_nosync_set" "', argument " "1"" of type '" "struct ccx_s_options *""'"); + } + arg1 = (struct ccx_s_options *)(argp1); + ecode2 = SWIG_AsVal_int(obj1, &val2); + if (!SWIG_IsOK(ecode2)) { + SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "ccx_s_options_nosync_set" "', argument " "2"" of type '" "int""'"); + } + arg2 = (int)(val2); + if (arg1) (arg1)->nosync = arg2; + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_ccx_s_options_nosync_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct ccx_s_options *arg1 = (struct ccx_s_options *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + int result; + + if (!PyArg_ParseTuple(args,(char *)"O:ccx_s_options_nosync_get",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_ccx_s_options, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "ccx_s_options_nosync_get" "', argument " "1"" of type '" "struct ccx_s_options *""'"); + } + arg1 = (struct ccx_s_options *)(argp1); + result = (int) ((arg1)->nosync); + resultobj = SWIG_From_int((int)(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_ccx_s_options_hauppauge_mode_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct ccx_s_options *arg1 = (struct ccx_s_options *) 0 ; + unsigned int arg2 ; + void *argp1 = 0 ; + int res1 = 0 ; + unsigned int val2 ; + int ecode2 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OO:ccx_s_options_hauppauge_mode_set",&obj0,&obj1)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_ccx_s_options, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "ccx_s_options_hauppauge_mode_set" "', argument " "1"" of type '" "struct ccx_s_options *""'"); + } + arg1 = (struct ccx_s_options *)(argp1); + ecode2 = SWIG_AsVal_unsigned_SS_int(obj1, &val2); + if (!SWIG_IsOK(ecode2)) { + SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "ccx_s_options_hauppauge_mode_set" "', argument " "2"" of type '" "unsigned int""'"); + } + arg2 = (unsigned int)(val2); + if (arg1) (arg1)->hauppauge_mode = arg2; + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_ccx_s_options_hauppauge_mode_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct ccx_s_options *arg1 = (struct ccx_s_options *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + unsigned int result; + + if (!PyArg_ParseTuple(args,(char *)"O:ccx_s_options_hauppauge_mode_get",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_ccx_s_options, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "ccx_s_options_hauppauge_mode_get" "', argument " "1"" of type '" "struct ccx_s_options *""'"); + } + arg1 = (struct ccx_s_options *)(argp1); + result = (unsigned int) ((arg1)->hauppauge_mode); + resultobj = SWIG_From_unsigned_SS_int((unsigned int)(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_ccx_s_options_wtvconvertfix_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct ccx_s_options *arg1 = (struct ccx_s_options *) 0 ; + int arg2 ; + void *argp1 = 0 ; + int res1 = 0 ; + int val2 ; + int ecode2 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OO:ccx_s_options_wtvconvertfix_set",&obj0,&obj1)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_ccx_s_options, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "ccx_s_options_wtvconvertfix_set" "', argument " "1"" of type '" "struct ccx_s_options *""'"); + } + arg1 = (struct ccx_s_options *)(argp1); + ecode2 = SWIG_AsVal_int(obj1, &val2); + if (!SWIG_IsOK(ecode2)) { + SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "ccx_s_options_wtvconvertfix_set" "', argument " "2"" of type '" "int""'"); + } + arg2 = (int)(val2); + if (arg1) (arg1)->wtvconvertfix = arg2; + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_ccx_s_options_wtvconvertfix_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct ccx_s_options *arg1 = (struct ccx_s_options *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + int result; + + if (!PyArg_ParseTuple(args,(char *)"O:ccx_s_options_wtvconvertfix_get",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_ccx_s_options, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "ccx_s_options_wtvconvertfix_get" "', argument " "1"" of type '" "struct ccx_s_options *""'"); + } + arg1 = (struct ccx_s_options *)(argp1); + result = (int) ((arg1)->wtvconvertfix); + resultobj = SWIG_From_int((int)(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_ccx_s_options_wtvmpeg2_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct ccx_s_options *arg1 = (struct ccx_s_options *) 0 ; + int arg2 ; + void *argp1 = 0 ; + int res1 = 0 ; + int val2 ; + int ecode2 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OO:ccx_s_options_wtvmpeg2_set",&obj0,&obj1)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_ccx_s_options, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "ccx_s_options_wtvmpeg2_set" "', argument " "1"" of type '" "struct ccx_s_options *""'"); + } + arg1 = (struct ccx_s_options *)(argp1); + ecode2 = SWIG_AsVal_int(obj1, &val2); + if (!SWIG_IsOK(ecode2)) { + SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "ccx_s_options_wtvmpeg2_set" "', argument " "2"" of type '" "int""'"); + } + arg2 = (int)(val2); + if (arg1) (arg1)->wtvmpeg2 = arg2; + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_ccx_s_options_wtvmpeg2_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct ccx_s_options *arg1 = (struct ccx_s_options *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + int result; + + if (!PyArg_ParseTuple(args,(char *)"O:ccx_s_options_wtvmpeg2_get",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_ccx_s_options, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "ccx_s_options_wtvmpeg2_get" "', argument " "1"" of type '" "struct ccx_s_options *""'"); + } + arg1 = (struct ccx_s_options *)(argp1); + result = (int) ((arg1)->wtvmpeg2); + resultobj = SWIG_From_int((int)(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_ccx_s_options_auto_myth_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct ccx_s_options *arg1 = (struct ccx_s_options *) 0 ; + int arg2 ; + void *argp1 = 0 ; + int res1 = 0 ; + int val2 ; + int ecode2 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OO:ccx_s_options_auto_myth_set",&obj0,&obj1)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_ccx_s_options, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "ccx_s_options_auto_myth_set" "', argument " "1"" of type '" "struct ccx_s_options *""'"); + } + arg1 = (struct ccx_s_options *)(argp1); + ecode2 = SWIG_AsVal_int(obj1, &val2); + if (!SWIG_IsOK(ecode2)) { + SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "ccx_s_options_auto_myth_set" "', argument " "2"" of type '" "int""'"); + } + arg2 = (int)(val2); + if (arg1) (arg1)->auto_myth = arg2; + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_ccx_s_options_auto_myth_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct ccx_s_options *arg1 = (struct ccx_s_options *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + int result; + + if (!PyArg_ParseTuple(args,(char *)"O:ccx_s_options_auto_myth_get",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_ccx_s_options, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "ccx_s_options_auto_myth_get" "', argument " "1"" of type '" "struct ccx_s_options *""'"); + } + arg1 = (struct ccx_s_options *)(argp1); + result = (int) ((arg1)->auto_myth); + resultobj = SWIG_From_int((int)(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_ccx_s_options_mp4vidtrack_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct ccx_s_options *arg1 = (struct ccx_s_options *) 0 ; + unsigned int arg2 ; + void *argp1 = 0 ; + int res1 = 0 ; + unsigned int val2 ; + int ecode2 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OO:ccx_s_options_mp4vidtrack_set",&obj0,&obj1)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_ccx_s_options, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "ccx_s_options_mp4vidtrack_set" "', argument " "1"" of type '" "struct ccx_s_options *""'"); + } + arg1 = (struct ccx_s_options *)(argp1); + ecode2 = SWIG_AsVal_unsigned_SS_int(obj1, &val2); + if (!SWIG_IsOK(ecode2)) { + SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "ccx_s_options_mp4vidtrack_set" "', argument " "2"" of type '" "unsigned int""'"); + } + arg2 = (unsigned int)(val2); + if (arg1) (arg1)->mp4vidtrack = arg2; + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_ccx_s_options_mp4vidtrack_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct ccx_s_options *arg1 = (struct ccx_s_options *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + unsigned int result; + + if (!PyArg_ParseTuple(args,(char *)"O:ccx_s_options_mp4vidtrack_get",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_ccx_s_options, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "ccx_s_options_mp4vidtrack_get" "', argument " "1"" of type '" "struct ccx_s_options *""'"); + } + arg1 = (struct ccx_s_options *)(argp1); + result = (unsigned int) ((arg1)->mp4vidtrack); + resultobj = SWIG_From_unsigned_SS_int((unsigned int)(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_ccx_s_options_extract_chapters_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct ccx_s_options *arg1 = (struct ccx_s_options *) 0 ; + int arg2 ; + void *argp1 = 0 ; + int res1 = 0 ; + int val2 ; + int ecode2 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OO:ccx_s_options_extract_chapters_set",&obj0,&obj1)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_ccx_s_options, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "ccx_s_options_extract_chapters_set" "', argument " "1"" of type '" "struct ccx_s_options *""'"); + } + arg1 = (struct ccx_s_options *)(argp1); + ecode2 = SWIG_AsVal_int(obj1, &val2); + if (!SWIG_IsOK(ecode2)) { + SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "ccx_s_options_extract_chapters_set" "', argument " "2"" of type '" "int""'"); + } + arg2 = (int)(val2); + if (arg1) (arg1)->extract_chapters = arg2; + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_ccx_s_options_extract_chapters_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct ccx_s_options *arg1 = (struct ccx_s_options *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + int result; + + if (!PyArg_ParseTuple(args,(char *)"O:ccx_s_options_extract_chapters_get",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_ccx_s_options, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "ccx_s_options_extract_chapters_get" "', argument " "1"" of type '" "struct ccx_s_options *""'"); + } + arg1 = (struct ccx_s_options *)(argp1); + result = (int) ((arg1)->extract_chapters); + resultobj = SWIG_From_int((int)(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_ccx_s_options_usepicorder_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct ccx_s_options *arg1 = (struct ccx_s_options *) 0 ; + int arg2 ; + void *argp1 = 0 ; + int res1 = 0 ; + int val2 ; + int ecode2 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OO:ccx_s_options_usepicorder_set",&obj0,&obj1)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_ccx_s_options, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "ccx_s_options_usepicorder_set" "', argument " "1"" of type '" "struct ccx_s_options *""'"); + } + arg1 = (struct ccx_s_options *)(argp1); + ecode2 = SWIG_AsVal_int(obj1, &val2); + if (!SWIG_IsOK(ecode2)) { + SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "ccx_s_options_usepicorder_set" "', argument " "2"" of type '" "int""'"); + } + arg2 = (int)(val2); + if (arg1) (arg1)->usepicorder = arg2; + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_ccx_s_options_usepicorder_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct ccx_s_options *arg1 = (struct ccx_s_options *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + int result; + + if (!PyArg_ParseTuple(args,(char *)"O:ccx_s_options_usepicorder_get",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_ccx_s_options, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "ccx_s_options_usepicorder_get" "', argument " "1"" of type '" "struct ccx_s_options *""'"); + } + arg1 = (struct ccx_s_options *)(argp1); + result = (int) ((arg1)->usepicorder); + resultobj = SWIG_From_int((int)(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_ccx_s_options_xmltv_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct ccx_s_options *arg1 = (struct ccx_s_options *) 0 ; + int arg2 ; + void *argp1 = 0 ; + int res1 = 0 ; + int val2 ; + int ecode2 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OO:ccx_s_options_xmltv_set",&obj0,&obj1)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_ccx_s_options, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "ccx_s_options_xmltv_set" "', argument " "1"" of type '" "struct ccx_s_options *""'"); + } + arg1 = (struct ccx_s_options *)(argp1); + ecode2 = SWIG_AsVal_int(obj1, &val2); + if (!SWIG_IsOK(ecode2)) { + SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "ccx_s_options_xmltv_set" "', argument " "2"" of type '" "int""'"); + } + arg2 = (int)(val2); + if (arg1) (arg1)->xmltv = arg2; + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_ccx_s_options_xmltv_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct ccx_s_options *arg1 = (struct ccx_s_options *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + int result; + + if (!PyArg_ParseTuple(args,(char *)"O:ccx_s_options_xmltv_get",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_ccx_s_options, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "ccx_s_options_xmltv_get" "', argument " "1"" of type '" "struct ccx_s_options *""'"); + } + arg1 = (struct ccx_s_options *)(argp1); + result = (int) ((arg1)->xmltv); + resultobj = SWIG_From_int((int)(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_ccx_s_options_xmltvliveinterval_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct ccx_s_options *arg1 = (struct ccx_s_options *) 0 ; + int arg2 ; + void *argp1 = 0 ; + int res1 = 0 ; + int val2 ; + int ecode2 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OO:ccx_s_options_xmltvliveinterval_set",&obj0,&obj1)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_ccx_s_options, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "ccx_s_options_xmltvliveinterval_set" "', argument " "1"" of type '" "struct ccx_s_options *""'"); + } + arg1 = (struct ccx_s_options *)(argp1); + ecode2 = SWIG_AsVal_int(obj1, &val2); + if (!SWIG_IsOK(ecode2)) { + SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "ccx_s_options_xmltvliveinterval_set" "', argument " "2"" of type '" "int""'"); + } + arg2 = (int)(val2); + if (arg1) (arg1)->xmltvliveinterval = arg2; + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_ccx_s_options_xmltvliveinterval_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct ccx_s_options *arg1 = (struct ccx_s_options *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + int result; + + if (!PyArg_ParseTuple(args,(char *)"O:ccx_s_options_xmltvliveinterval_get",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_ccx_s_options, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "ccx_s_options_xmltvliveinterval_get" "', argument " "1"" of type '" "struct ccx_s_options *""'"); + } + arg1 = (struct ccx_s_options *)(argp1); + result = (int) ((arg1)->xmltvliveinterval); + resultobj = SWIG_From_int((int)(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_ccx_s_options_xmltvoutputinterval_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct ccx_s_options *arg1 = (struct ccx_s_options *) 0 ; + int arg2 ; + void *argp1 = 0 ; + int res1 = 0 ; + int val2 ; + int ecode2 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OO:ccx_s_options_xmltvoutputinterval_set",&obj0,&obj1)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_ccx_s_options, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "ccx_s_options_xmltvoutputinterval_set" "', argument " "1"" of type '" "struct ccx_s_options *""'"); + } + arg1 = (struct ccx_s_options *)(argp1); + ecode2 = SWIG_AsVal_int(obj1, &val2); + if (!SWIG_IsOK(ecode2)) { + SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "ccx_s_options_xmltvoutputinterval_set" "', argument " "2"" of type '" "int""'"); + } + arg2 = (int)(val2); + if (arg1) (arg1)->xmltvoutputinterval = arg2; + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_ccx_s_options_xmltvoutputinterval_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct ccx_s_options *arg1 = (struct ccx_s_options *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + int result; + + if (!PyArg_ParseTuple(args,(char *)"O:ccx_s_options_xmltvoutputinterval_get",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_ccx_s_options, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "ccx_s_options_xmltvoutputinterval_get" "', argument " "1"" of type '" "struct ccx_s_options *""'"); + } + arg1 = (struct ccx_s_options *)(argp1); + result = (int) ((arg1)->xmltvoutputinterval); + resultobj = SWIG_From_int((int)(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_ccx_s_options_xmltvonlycurrent_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct ccx_s_options *arg1 = (struct ccx_s_options *) 0 ; + int arg2 ; + void *argp1 = 0 ; + int res1 = 0 ; + int val2 ; + int ecode2 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OO:ccx_s_options_xmltvonlycurrent_set",&obj0,&obj1)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_ccx_s_options, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "ccx_s_options_xmltvonlycurrent_set" "', argument " "1"" of type '" "struct ccx_s_options *""'"); + } + arg1 = (struct ccx_s_options *)(argp1); + ecode2 = SWIG_AsVal_int(obj1, &val2); + if (!SWIG_IsOK(ecode2)) { + SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "ccx_s_options_xmltvonlycurrent_set" "', argument " "2"" of type '" "int""'"); + } + arg2 = (int)(val2); + if (arg1) (arg1)->xmltvonlycurrent = arg2; + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_ccx_s_options_xmltvonlycurrent_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct ccx_s_options *arg1 = (struct ccx_s_options *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + int result; + + if (!PyArg_ParseTuple(args,(char *)"O:ccx_s_options_xmltvonlycurrent_get",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_ccx_s_options, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "ccx_s_options_xmltvonlycurrent_get" "', argument " "1"" of type '" "struct ccx_s_options *""'"); + } + arg1 = (struct ccx_s_options *)(argp1); + result = (int) ((arg1)->xmltvonlycurrent); + resultobj = SWIG_From_int((int)(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_ccx_s_options_keep_output_closed_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct ccx_s_options *arg1 = (struct ccx_s_options *) 0 ; + int arg2 ; + void *argp1 = 0 ; + int res1 = 0 ; + int val2 ; + int ecode2 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OO:ccx_s_options_keep_output_closed_set",&obj0,&obj1)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_ccx_s_options, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "ccx_s_options_keep_output_closed_set" "', argument " "1"" of type '" "struct ccx_s_options *""'"); + } + arg1 = (struct ccx_s_options *)(argp1); + ecode2 = SWIG_AsVal_int(obj1, &val2); + if (!SWIG_IsOK(ecode2)) { + SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "ccx_s_options_keep_output_closed_set" "', argument " "2"" of type '" "int""'"); + } + arg2 = (int)(val2); + if (arg1) (arg1)->keep_output_closed = arg2; + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_ccx_s_options_keep_output_closed_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct ccx_s_options *arg1 = (struct ccx_s_options *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + int result; + + if (!PyArg_ParseTuple(args,(char *)"O:ccx_s_options_keep_output_closed_get",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_ccx_s_options, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "ccx_s_options_keep_output_closed_get" "', argument " "1"" of type '" "struct ccx_s_options *""'"); + } + arg1 = (struct ccx_s_options *)(argp1); + result = (int) ((arg1)->keep_output_closed); + resultobj = SWIG_From_int((int)(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_ccx_s_options_force_flush_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct ccx_s_options *arg1 = (struct ccx_s_options *) 0 ; + int arg2 ; + void *argp1 = 0 ; + int res1 = 0 ; + int val2 ; + int ecode2 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OO:ccx_s_options_force_flush_set",&obj0,&obj1)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_ccx_s_options, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "ccx_s_options_force_flush_set" "', argument " "1"" of type '" "struct ccx_s_options *""'"); + } + arg1 = (struct ccx_s_options *)(argp1); + ecode2 = SWIG_AsVal_int(obj1, &val2); + if (!SWIG_IsOK(ecode2)) { + SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "ccx_s_options_force_flush_set" "', argument " "2"" of type '" "int""'"); + } + arg2 = (int)(val2); + if (arg1) (arg1)->force_flush = arg2; + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_ccx_s_options_force_flush_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct ccx_s_options *arg1 = (struct ccx_s_options *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + int result; + + if (!PyArg_ParseTuple(args,(char *)"O:ccx_s_options_force_flush_get",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_ccx_s_options, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "ccx_s_options_force_flush_get" "', argument " "1"" of type '" "struct ccx_s_options *""'"); + } + arg1 = (struct ccx_s_options *)(argp1); + result = (int) ((arg1)->force_flush); + resultobj = SWIG_From_int((int)(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_ccx_s_options_append_mode_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct ccx_s_options *arg1 = (struct ccx_s_options *) 0 ; + int arg2 ; + void *argp1 = 0 ; + int res1 = 0 ; + int val2 ; + int ecode2 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OO:ccx_s_options_append_mode_set",&obj0,&obj1)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_ccx_s_options, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "ccx_s_options_append_mode_set" "', argument " "1"" of type '" "struct ccx_s_options *""'"); + } + arg1 = (struct ccx_s_options *)(argp1); + ecode2 = SWIG_AsVal_int(obj1, &val2); + if (!SWIG_IsOK(ecode2)) { + SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "ccx_s_options_append_mode_set" "', argument " "2"" of type '" "int""'"); + } + arg2 = (int)(val2); + if (arg1) (arg1)->append_mode = arg2; + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_ccx_s_options_append_mode_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct ccx_s_options *arg1 = (struct ccx_s_options *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + int result; + + if (!PyArg_ParseTuple(args,(char *)"O:ccx_s_options_append_mode_get",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_ccx_s_options, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "ccx_s_options_append_mode_get" "', argument " "1"" of type '" "struct ccx_s_options *""'"); + } + arg1 = (struct ccx_s_options *)(argp1); + result = (int) ((arg1)->append_mode); + resultobj = SWIG_From_int((int)(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_ccx_s_options_ucla_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct ccx_s_options *arg1 = (struct ccx_s_options *) 0 ; + int arg2 ; + void *argp1 = 0 ; + int res1 = 0 ; + int val2 ; + int ecode2 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OO:ccx_s_options_ucla_set",&obj0,&obj1)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_ccx_s_options, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "ccx_s_options_ucla_set" "', argument " "1"" of type '" "struct ccx_s_options *""'"); + } + arg1 = (struct ccx_s_options *)(argp1); + ecode2 = SWIG_AsVal_int(obj1, &val2); + if (!SWIG_IsOK(ecode2)) { + SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "ccx_s_options_ucla_set" "', argument " "2"" of type '" "int""'"); + } + arg2 = (int)(val2); + if (arg1) (arg1)->ucla = arg2; + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_ccx_s_options_ucla_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct ccx_s_options *arg1 = (struct ccx_s_options *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + int result; + + if (!PyArg_ParseTuple(args,(char *)"O:ccx_s_options_ucla_get",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_ccx_s_options, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "ccx_s_options_ucla_get" "', argument " "1"" of type '" "struct ccx_s_options *""'"); + } + arg1 = (struct ccx_s_options *)(argp1); + result = (int) ((arg1)->ucla); + resultobj = SWIG_From_int((int)(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_ccx_s_options_tickertext_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct ccx_s_options *arg1 = (struct ccx_s_options *) 0 ; + int arg2 ; + void *argp1 = 0 ; + int res1 = 0 ; + int val2 ; + int ecode2 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OO:ccx_s_options_tickertext_set",&obj0,&obj1)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_ccx_s_options, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "ccx_s_options_tickertext_set" "', argument " "1"" of type '" "struct ccx_s_options *""'"); + } + arg1 = (struct ccx_s_options *)(argp1); + ecode2 = SWIG_AsVal_int(obj1, &val2); + if (!SWIG_IsOK(ecode2)) { + SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "ccx_s_options_tickertext_set" "', argument " "2"" of type '" "int""'"); + } + arg2 = (int)(val2); + if (arg1) (arg1)->tickertext = arg2; + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_ccx_s_options_tickertext_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct ccx_s_options *arg1 = (struct ccx_s_options *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + int result; + + if (!PyArg_ParseTuple(args,(char *)"O:ccx_s_options_tickertext_get",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_ccx_s_options, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "ccx_s_options_tickertext_get" "', argument " "1"" of type '" "struct ccx_s_options *""'"); + } + arg1 = (struct ccx_s_options *)(argp1); + result = (int) ((arg1)->tickertext); + resultobj = SWIG_From_int((int)(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_ccx_s_options_hardsubx_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct ccx_s_options *arg1 = (struct ccx_s_options *) 0 ; + int arg2 ; + void *argp1 = 0 ; + int res1 = 0 ; + int val2 ; + int ecode2 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OO:ccx_s_options_hardsubx_set",&obj0,&obj1)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_ccx_s_options, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "ccx_s_options_hardsubx_set" "', argument " "1"" of type '" "struct ccx_s_options *""'"); + } + arg1 = (struct ccx_s_options *)(argp1); + ecode2 = SWIG_AsVal_int(obj1, &val2); + if (!SWIG_IsOK(ecode2)) { + SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "ccx_s_options_hardsubx_set" "', argument " "2"" of type '" "int""'"); + } + arg2 = (int)(val2); + if (arg1) (arg1)->hardsubx = arg2; + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_ccx_s_options_hardsubx_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct ccx_s_options *arg1 = (struct ccx_s_options *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + int result; + + if (!PyArg_ParseTuple(args,(char *)"O:ccx_s_options_hardsubx_get",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_ccx_s_options, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "ccx_s_options_hardsubx_get" "', argument " "1"" of type '" "struct ccx_s_options *""'"); + } + arg1 = (struct ccx_s_options *)(argp1); + result = (int) ((arg1)->hardsubx); + resultobj = SWIG_From_int((int)(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_ccx_s_options_dvbcolor_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct ccx_s_options *arg1 = (struct ccx_s_options *) 0 ; + int arg2 ; + void *argp1 = 0 ; + int res1 = 0 ; + int val2 ; + int ecode2 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OO:ccx_s_options_dvbcolor_set",&obj0,&obj1)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_ccx_s_options, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "ccx_s_options_dvbcolor_set" "', argument " "1"" of type '" "struct ccx_s_options *""'"); + } + arg1 = (struct ccx_s_options *)(argp1); + ecode2 = SWIG_AsVal_int(obj1, &val2); + if (!SWIG_IsOK(ecode2)) { + SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "ccx_s_options_dvbcolor_set" "', argument " "2"" of type '" "int""'"); + } + arg2 = (int)(val2); + if (arg1) (arg1)->dvbcolor = arg2; + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_ccx_s_options_dvbcolor_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct ccx_s_options *arg1 = (struct ccx_s_options *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + int result; + + if (!PyArg_ParseTuple(args,(char *)"O:ccx_s_options_dvbcolor_get",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_ccx_s_options, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "ccx_s_options_dvbcolor_get" "', argument " "1"" of type '" "struct ccx_s_options *""'"); + } + arg1 = (struct ccx_s_options *)(argp1); + result = (int) ((arg1)->dvbcolor); + resultobj = SWIG_From_int((int)(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_ccx_s_options_dvblang_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct ccx_s_options *arg1 = (struct ccx_s_options *) 0 ; + char *arg2 = (char *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + int res2 ; + char *buf2 = 0 ; + int alloc2 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OO:ccx_s_options_dvblang_set",&obj0,&obj1)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_ccx_s_options, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "ccx_s_options_dvblang_set" "', argument " "1"" of type '" "struct ccx_s_options *""'"); + } + arg1 = (struct ccx_s_options *)(argp1); + res2 = SWIG_AsCharPtrAndSize(obj1, &buf2, NULL, &alloc2); + if (!SWIG_IsOK(res2)) { + SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "ccx_s_options_dvblang_set" "', argument " "2"" of type '" "char *""'"); + } + arg2 = (char *)(buf2); + if (arg1->dvblang) free((char*)arg1->dvblang); + if (arg2) { + size_t size = strlen((const char *)(arg2)) + 1; + arg1->dvblang = (char *)(char *)memcpy(malloc((size)*sizeof(char)), (const char *)(arg2), sizeof(char)*(size)); + } else { + arg1->dvblang = 0; + } + resultobj = SWIG_Py_Void(); + if (alloc2 == SWIG_NEWOBJ) free((char*)buf2); + return resultobj; +fail: + if (alloc2 == SWIG_NEWOBJ) free((char*)buf2); + return NULL; +} + + +SWIGINTERN PyObject *_wrap_ccx_s_options_dvblang_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct ccx_s_options *arg1 = (struct ccx_s_options *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + char *result = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"O:ccx_s_options_dvblang_get",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_ccx_s_options, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "ccx_s_options_dvblang_get" "', argument " "1"" of type '" "struct ccx_s_options *""'"); + } + arg1 = (struct ccx_s_options *)(argp1); + result = (char *) ((arg1)->dvblang); + resultobj = SWIG_FromCharPtr((const char *)result); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_ccx_s_options_ocrlang_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct ccx_s_options *arg1 = (struct ccx_s_options *) 0 ; + char *arg2 = (char *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + int res2 ; + char *buf2 = 0 ; + int alloc2 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OO:ccx_s_options_ocrlang_set",&obj0,&obj1)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_ccx_s_options, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "ccx_s_options_ocrlang_set" "', argument " "1"" of type '" "struct ccx_s_options *""'"); + } + arg1 = (struct ccx_s_options *)(argp1); + res2 = SWIG_AsCharPtrAndSize(obj1, &buf2, NULL, &alloc2); + if (!SWIG_IsOK(res2)) { + SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "ccx_s_options_ocrlang_set" "', argument " "2"" of type '" "char *""'"); + } + arg2 = (char *)(buf2); + if (arg1->ocrlang) free((char*)arg1->ocrlang); + if (arg2) { + size_t size = strlen((const char *)(arg2)) + 1; + arg1->ocrlang = (char *)(char *)memcpy(malloc((size)*sizeof(char)), (const char *)(arg2), sizeof(char)*(size)); + } else { + arg1->ocrlang = 0; + } + resultobj = SWIG_Py_Void(); + if (alloc2 == SWIG_NEWOBJ) free((char*)buf2); + return resultobj; +fail: + if (alloc2 == SWIG_NEWOBJ) free((char*)buf2); + return NULL; +} + + +SWIGINTERN PyObject *_wrap_ccx_s_options_ocrlang_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct ccx_s_options *arg1 = (struct ccx_s_options *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + char *result = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"O:ccx_s_options_ocrlang_get",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_ccx_s_options, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "ccx_s_options_ocrlang_get" "', argument " "1"" of type '" "struct ccx_s_options *""'"); + } + arg1 = (struct ccx_s_options *)(argp1); + result = (char *) ((arg1)->ocrlang); + resultobj = SWIG_FromCharPtr((const char *)result); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_ccx_s_options_ocr_oem_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct ccx_s_options *arg1 = (struct ccx_s_options *) 0 ; + int arg2 ; + void *argp1 = 0 ; + int res1 = 0 ; + int val2 ; + int ecode2 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OO:ccx_s_options_ocr_oem_set",&obj0,&obj1)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_ccx_s_options, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "ccx_s_options_ocr_oem_set" "', argument " "1"" of type '" "struct ccx_s_options *""'"); + } + arg1 = (struct ccx_s_options *)(argp1); + ecode2 = SWIG_AsVal_int(obj1, &val2); + if (!SWIG_IsOK(ecode2)) { + SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "ccx_s_options_ocr_oem_set" "', argument " "2"" of type '" "int""'"); + } + arg2 = (int)(val2); + if (arg1) (arg1)->ocr_oem = arg2; + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_ccx_s_options_ocr_oem_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct ccx_s_options *arg1 = (struct ccx_s_options *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + int result; + + if (!PyArg_ParseTuple(args,(char *)"O:ccx_s_options_ocr_oem_get",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_ccx_s_options, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "ccx_s_options_ocr_oem_get" "', argument " "1"" of type '" "struct ccx_s_options *""'"); + } + arg1 = (struct ccx_s_options *)(argp1); + result = (int) ((arg1)->ocr_oem); + resultobj = SWIG_From_int((int)(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_ccx_s_options_mkvlang_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct ccx_s_options *arg1 = (struct ccx_s_options *) 0 ; + char *arg2 = (char *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + int res2 ; + char *buf2 = 0 ; + int alloc2 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OO:ccx_s_options_mkvlang_set",&obj0,&obj1)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_ccx_s_options, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "ccx_s_options_mkvlang_set" "', argument " "1"" of type '" "struct ccx_s_options *""'"); + } + arg1 = (struct ccx_s_options *)(argp1); + res2 = SWIG_AsCharPtrAndSize(obj1, &buf2, NULL, &alloc2); + if (!SWIG_IsOK(res2)) { + SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "ccx_s_options_mkvlang_set" "', argument " "2"" of type '" "char *""'"); + } + arg2 = (char *)(buf2); + if (arg1->mkvlang) free((char*)arg1->mkvlang); + if (arg2) { + size_t size = strlen((const char *)(arg2)) + 1; + arg1->mkvlang = (char *)(char *)memcpy(malloc((size)*sizeof(char)), (const char *)(arg2), sizeof(char)*(size)); + } else { + arg1->mkvlang = 0; + } + resultobj = SWIG_Py_Void(); + if (alloc2 == SWIG_NEWOBJ) free((char*)buf2); + return resultobj; +fail: + if (alloc2 == SWIG_NEWOBJ) free((char*)buf2); + return NULL; +} + + +SWIGINTERN PyObject *_wrap_ccx_s_options_mkvlang_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct ccx_s_options *arg1 = (struct ccx_s_options *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + char *result = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"O:ccx_s_options_mkvlang_get",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_ccx_s_options, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "ccx_s_options_mkvlang_get" "', argument " "1"" of type '" "struct ccx_s_options *""'"); + } + arg1 = (struct ccx_s_options *)(argp1); + result = (char *) ((arg1)->mkvlang); + resultobj = SWIG_FromCharPtr((const char *)result); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_ccx_s_options_hardsubx_ocr_mode_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct ccx_s_options *arg1 = (struct ccx_s_options *) 0 ; + int arg2 ; + void *argp1 = 0 ; + int res1 = 0 ; + int val2 ; + int ecode2 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OO:ccx_s_options_hardsubx_ocr_mode_set",&obj0,&obj1)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_ccx_s_options, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "ccx_s_options_hardsubx_ocr_mode_set" "', argument " "1"" of type '" "struct ccx_s_options *""'"); + } + arg1 = (struct ccx_s_options *)(argp1); + ecode2 = SWIG_AsVal_int(obj1, &val2); + if (!SWIG_IsOK(ecode2)) { + SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "ccx_s_options_hardsubx_ocr_mode_set" "', argument " "2"" of type '" "int""'"); + } + arg2 = (int)(val2); + if (arg1) (arg1)->hardsubx_ocr_mode = arg2; + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_ccx_s_options_hardsubx_ocr_mode_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct ccx_s_options *arg1 = (struct ccx_s_options *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + int result; + + if (!PyArg_ParseTuple(args,(char *)"O:ccx_s_options_hardsubx_ocr_mode_get",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_ccx_s_options, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "ccx_s_options_hardsubx_ocr_mode_get" "', argument " "1"" of type '" "struct ccx_s_options *""'"); + } + arg1 = (struct ccx_s_options *)(argp1); + result = (int) ((arg1)->hardsubx_ocr_mode); + resultobj = SWIG_From_int((int)(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_ccx_s_options_hardsubx_subcolor_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct ccx_s_options *arg1 = (struct ccx_s_options *) 0 ; + int arg2 ; + void *argp1 = 0 ; + int res1 = 0 ; + int val2 ; + int ecode2 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OO:ccx_s_options_hardsubx_subcolor_set",&obj0,&obj1)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_ccx_s_options, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "ccx_s_options_hardsubx_subcolor_set" "', argument " "1"" of type '" "struct ccx_s_options *""'"); + } + arg1 = (struct ccx_s_options *)(argp1); + ecode2 = SWIG_AsVal_int(obj1, &val2); + if (!SWIG_IsOK(ecode2)) { + SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "ccx_s_options_hardsubx_subcolor_set" "', argument " "2"" of type '" "int""'"); + } + arg2 = (int)(val2); + if (arg1) (arg1)->hardsubx_subcolor = arg2; + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_ccx_s_options_hardsubx_subcolor_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct ccx_s_options *arg1 = (struct ccx_s_options *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + int result; + + if (!PyArg_ParseTuple(args,(char *)"O:ccx_s_options_hardsubx_subcolor_get",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_ccx_s_options, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "ccx_s_options_hardsubx_subcolor_get" "', argument " "1"" of type '" "struct ccx_s_options *""'"); + } + arg1 = (struct ccx_s_options *)(argp1); + result = (int) ((arg1)->hardsubx_subcolor); + resultobj = SWIG_From_int((int)(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_ccx_s_options_hardsubx_min_sub_duration_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct ccx_s_options *arg1 = (struct ccx_s_options *) 0 ; + float arg2 ; + void *argp1 = 0 ; + int res1 = 0 ; + float val2 ; + int ecode2 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OO:ccx_s_options_hardsubx_min_sub_duration_set",&obj0,&obj1)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_ccx_s_options, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "ccx_s_options_hardsubx_min_sub_duration_set" "', argument " "1"" of type '" "struct ccx_s_options *""'"); + } + arg1 = (struct ccx_s_options *)(argp1); + ecode2 = SWIG_AsVal_float(obj1, &val2); + if (!SWIG_IsOK(ecode2)) { + SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "ccx_s_options_hardsubx_min_sub_duration_set" "', argument " "2"" of type '" "float""'"); + } + arg2 = (float)(val2); + if (arg1) (arg1)->hardsubx_min_sub_duration = arg2; + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_ccx_s_options_hardsubx_min_sub_duration_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct ccx_s_options *arg1 = (struct ccx_s_options *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + float result; + + if (!PyArg_ParseTuple(args,(char *)"O:ccx_s_options_hardsubx_min_sub_duration_get",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_ccx_s_options, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "ccx_s_options_hardsubx_min_sub_duration_get" "', argument " "1"" of type '" "struct ccx_s_options *""'"); + } + arg1 = (struct ccx_s_options *)(argp1); + result = (float) ((arg1)->hardsubx_min_sub_duration); + resultobj = SWIG_From_float((float)(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_ccx_s_options_hardsubx_detect_italics_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct ccx_s_options *arg1 = (struct ccx_s_options *) 0 ; + int arg2 ; + void *argp1 = 0 ; + int res1 = 0 ; + int val2 ; + int ecode2 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OO:ccx_s_options_hardsubx_detect_italics_set",&obj0,&obj1)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_ccx_s_options, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "ccx_s_options_hardsubx_detect_italics_set" "', argument " "1"" of type '" "struct ccx_s_options *""'"); + } + arg1 = (struct ccx_s_options *)(argp1); + ecode2 = SWIG_AsVal_int(obj1, &val2); + if (!SWIG_IsOK(ecode2)) { + SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "ccx_s_options_hardsubx_detect_italics_set" "', argument " "2"" of type '" "int""'"); + } + arg2 = (int)(val2); + if (arg1) (arg1)->hardsubx_detect_italics = arg2; + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_ccx_s_options_hardsubx_detect_italics_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct ccx_s_options *arg1 = (struct ccx_s_options *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + int result; + + if (!PyArg_ParseTuple(args,(char *)"O:ccx_s_options_hardsubx_detect_italics_get",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_ccx_s_options, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "ccx_s_options_hardsubx_detect_italics_get" "', argument " "1"" of type '" "struct ccx_s_options *""'"); + } + arg1 = (struct ccx_s_options *)(argp1); + result = (int) ((arg1)->hardsubx_detect_italics); + resultobj = SWIG_From_int((int)(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_ccx_s_options_hardsubx_conf_thresh_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct ccx_s_options *arg1 = (struct ccx_s_options *) 0 ; + float arg2 ; + void *argp1 = 0 ; + int res1 = 0 ; + float val2 ; + int ecode2 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OO:ccx_s_options_hardsubx_conf_thresh_set",&obj0,&obj1)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_ccx_s_options, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "ccx_s_options_hardsubx_conf_thresh_set" "', argument " "1"" of type '" "struct ccx_s_options *""'"); + } + arg1 = (struct ccx_s_options *)(argp1); + ecode2 = SWIG_AsVal_float(obj1, &val2); + if (!SWIG_IsOK(ecode2)) { + SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "ccx_s_options_hardsubx_conf_thresh_set" "', argument " "2"" of type '" "float""'"); + } + arg2 = (float)(val2); + if (arg1) (arg1)->hardsubx_conf_thresh = arg2; + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_ccx_s_options_hardsubx_conf_thresh_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct ccx_s_options *arg1 = (struct ccx_s_options *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + float result; + + if (!PyArg_ParseTuple(args,(char *)"O:ccx_s_options_hardsubx_conf_thresh_get",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_ccx_s_options, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "ccx_s_options_hardsubx_conf_thresh_get" "', argument " "1"" of type '" "struct ccx_s_options *""'"); + } + arg1 = (struct ccx_s_options *)(argp1); + result = (float) ((arg1)->hardsubx_conf_thresh); + resultobj = SWIG_From_float((float)(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_ccx_s_options_hardsubx_hue_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct ccx_s_options *arg1 = (struct ccx_s_options *) 0 ; + float arg2 ; + void *argp1 = 0 ; + int res1 = 0 ; + float val2 ; + int ecode2 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OO:ccx_s_options_hardsubx_hue_set",&obj0,&obj1)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_ccx_s_options, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "ccx_s_options_hardsubx_hue_set" "', argument " "1"" of type '" "struct ccx_s_options *""'"); + } + arg1 = (struct ccx_s_options *)(argp1); + ecode2 = SWIG_AsVal_float(obj1, &val2); + if (!SWIG_IsOK(ecode2)) { + SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "ccx_s_options_hardsubx_hue_set" "', argument " "2"" of type '" "float""'"); + } + arg2 = (float)(val2); + if (arg1) (arg1)->hardsubx_hue = arg2; + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_ccx_s_options_hardsubx_hue_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct ccx_s_options *arg1 = (struct ccx_s_options *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + float result; + + if (!PyArg_ParseTuple(args,(char *)"O:ccx_s_options_hardsubx_hue_get",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_ccx_s_options, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "ccx_s_options_hardsubx_hue_get" "', argument " "1"" of type '" "struct ccx_s_options *""'"); + } + arg1 = (struct ccx_s_options *)(argp1); + result = (float) ((arg1)->hardsubx_hue); + resultobj = SWIG_From_float((float)(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_ccx_s_options_hardsubx_lum_thresh_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct ccx_s_options *arg1 = (struct ccx_s_options *) 0 ; + float arg2 ; + void *argp1 = 0 ; + int res1 = 0 ; + float val2 ; + int ecode2 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OO:ccx_s_options_hardsubx_lum_thresh_set",&obj0,&obj1)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_ccx_s_options, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "ccx_s_options_hardsubx_lum_thresh_set" "', argument " "1"" of type '" "struct ccx_s_options *""'"); + } + arg1 = (struct ccx_s_options *)(argp1); + ecode2 = SWIG_AsVal_float(obj1, &val2); + if (!SWIG_IsOK(ecode2)) { + SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "ccx_s_options_hardsubx_lum_thresh_set" "', argument " "2"" of type '" "float""'"); + } + arg2 = (float)(val2); + if (arg1) (arg1)->hardsubx_lum_thresh = arg2; + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_ccx_s_options_hardsubx_lum_thresh_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct ccx_s_options *arg1 = (struct ccx_s_options *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + float result; + + if (!PyArg_ParseTuple(args,(char *)"O:ccx_s_options_hardsubx_lum_thresh_get",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_ccx_s_options, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "ccx_s_options_hardsubx_lum_thresh_get" "', argument " "1"" of type '" "struct ccx_s_options *""'"); + } + arg1 = (struct ccx_s_options *)(argp1); + result = (float) ((arg1)->hardsubx_lum_thresh); + resultobj = SWIG_From_float((float)(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_ccx_s_options_transcript_settings_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct ccx_s_options *arg1 = (struct ccx_s_options *) 0 ; + ccx_encoders_transcript_format arg2 ; + void *argp1 = 0 ; + int res1 = 0 ; + void *argp2 ; + int res2 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OO:ccx_s_options_transcript_settings_set",&obj0,&obj1)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_ccx_s_options, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "ccx_s_options_transcript_settings_set" "', argument " "1"" of type '" "struct ccx_s_options *""'"); + } + arg1 = (struct ccx_s_options *)(argp1); + { + res2 = SWIG_ConvertPtr(obj1, &argp2, SWIGTYPE_p_ccx_encoders_transcript_format, 0 ); + if (!SWIG_IsOK(res2)) { + SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "ccx_s_options_transcript_settings_set" "', argument " "2"" of type '" "ccx_encoders_transcript_format""'"); + } + if (!argp2) { + SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "ccx_s_options_transcript_settings_set" "', argument " "2"" of type '" "ccx_encoders_transcript_format""'"); + } else { + arg2 = *((ccx_encoders_transcript_format *)(argp2)); + } + } + if (arg1) (arg1)->transcript_settings = arg2; + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_ccx_s_options_transcript_settings_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct ccx_s_options *arg1 = (struct ccx_s_options *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + ccx_encoders_transcript_format result; + + if (!PyArg_ParseTuple(args,(char *)"O:ccx_s_options_transcript_settings_get",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_ccx_s_options, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "ccx_s_options_transcript_settings_get" "', argument " "1"" of type '" "struct ccx_s_options *""'"); + } + arg1 = (struct ccx_s_options *)(argp1); + result = ((arg1)->transcript_settings); + resultobj = SWIG_NewPointerObj((ccx_encoders_transcript_format *)memcpy((ccx_encoders_transcript_format *)calloc(1,sizeof(ccx_encoders_transcript_format)),&result,sizeof(ccx_encoders_transcript_format)), SWIGTYPE_p_ccx_encoders_transcript_format, SWIG_POINTER_OWN | 0 ); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_ccx_s_options_date_format_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct ccx_s_options *arg1 = (struct ccx_s_options *) 0 ; + enum ccx_output_date_format arg2 ; + void *argp1 = 0 ; + int res1 = 0 ; + int val2 ; + int ecode2 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OO:ccx_s_options_date_format_set",&obj0,&obj1)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_ccx_s_options, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "ccx_s_options_date_format_set" "', argument " "1"" of type '" "struct ccx_s_options *""'"); + } + arg1 = (struct ccx_s_options *)(argp1); + ecode2 = SWIG_AsVal_int(obj1, &val2); + if (!SWIG_IsOK(ecode2)) { + SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "ccx_s_options_date_format_set" "', argument " "2"" of type '" "enum ccx_output_date_format""'"); + } + arg2 = (enum ccx_output_date_format)(val2); + if (arg1) (arg1)->date_format = arg2; + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_ccx_s_options_date_format_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct ccx_s_options *arg1 = (struct ccx_s_options *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + enum ccx_output_date_format result; + + if (!PyArg_ParseTuple(args,(char *)"O:ccx_s_options_date_format_get",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_ccx_s_options, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "ccx_s_options_date_format_get" "', argument " "1"" of type '" "struct ccx_s_options *""'"); + } + arg1 = (struct ccx_s_options *)(argp1); + result = (enum ccx_output_date_format) ((arg1)->date_format); + resultobj = SWIG_From_int((int)(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_ccx_s_options_send_to_srv_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct ccx_s_options *arg1 = (struct ccx_s_options *) 0 ; + unsigned int arg2 ; + void *argp1 = 0 ; + int res1 = 0 ; + unsigned int val2 ; + int ecode2 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OO:ccx_s_options_send_to_srv_set",&obj0,&obj1)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_ccx_s_options, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "ccx_s_options_send_to_srv_set" "', argument " "1"" of type '" "struct ccx_s_options *""'"); + } + arg1 = (struct ccx_s_options *)(argp1); + ecode2 = SWIG_AsVal_unsigned_SS_int(obj1, &val2); + if (!SWIG_IsOK(ecode2)) { + SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "ccx_s_options_send_to_srv_set" "', argument " "2"" of type '" "unsigned int""'"); + } + arg2 = (unsigned int)(val2); + if (arg1) (arg1)->send_to_srv = arg2; + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_ccx_s_options_send_to_srv_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct ccx_s_options *arg1 = (struct ccx_s_options *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + unsigned int result; + + if (!PyArg_ParseTuple(args,(char *)"O:ccx_s_options_send_to_srv_get",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_ccx_s_options, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "ccx_s_options_send_to_srv_get" "', argument " "1"" of type '" "struct ccx_s_options *""'"); + } + arg1 = (struct ccx_s_options *)(argp1); + result = (unsigned int) ((arg1)->send_to_srv); + resultobj = SWIG_From_unsigned_SS_int((unsigned int)(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_ccx_s_options_write_format_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct ccx_s_options *arg1 = (struct ccx_s_options *) 0 ; + enum ccx_output_format arg2 ; + void *argp1 = 0 ; + int res1 = 0 ; + int val2 ; + int ecode2 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OO:ccx_s_options_write_format_set",&obj0,&obj1)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_ccx_s_options, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "ccx_s_options_write_format_set" "', argument " "1"" of type '" "struct ccx_s_options *""'"); + } + arg1 = (struct ccx_s_options *)(argp1); + ecode2 = SWIG_AsVal_int(obj1, &val2); + if (!SWIG_IsOK(ecode2)) { + SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "ccx_s_options_write_format_set" "', argument " "2"" of type '" "enum ccx_output_format""'"); + } + arg2 = (enum ccx_output_format)(val2); + if (arg1) (arg1)->write_format = arg2; + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_ccx_s_options_write_format_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct ccx_s_options *arg1 = (struct ccx_s_options *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + enum ccx_output_format result; + + if (!PyArg_ParseTuple(args,(char *)"O:ccx_s_options_write_format_get",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_ccx_s_options, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "ccx_s_options_write_format_get" "', argument " "1"" of type '" "struct ccx_s_options *""'"); + } + arg1 = (struct ccx_s_options *)(argp1); + result = (enum ccx_output_format) ((arg1)->write_format); + resultobj = SWIG_From_int((int)(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_ccx_s_options_write_format_rewritten_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct ccx_s_options *arg1 = (struct ccx_s_options *) 0 ; + int arg2 ; + void *argp1 = 0 ; + int res1 = 0 ; + int val2 ; + int ecode2 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OO:ccx_s_options_write_format_rewritten_set",&obj0,&obj1)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_ccx_s_options, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "ccx_s_options_write_format_rewritten_set" "', argument " "1"" of type '" "struct ccx_s_options *""'"); + } + arg1 = (struct ccx_s_options *)(argp1); + ecode2 = SWIG_AsVal_int(obj1, &val2); + if (!SWIG_IsOK(ecode2)) { + SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "ccx_s_options_write_format_rewritten_set" "', argument " "2"" of type '" "int""'"); + } + arg2 = (int)(val2); + if (arg1) (arg1)->write_format_rewritten = arg2; + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_ccx_s_options_write_format_rewritten_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct ccx_s_options *arg1 = (struct ccx_s_options *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + int result; + + if (!PyArg_ParseTuple(args,(char *)"O:ccx_s_options_write_format_rewritten_get",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_ccx_s_options, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "ccx_s_options_write_format_rewritten_get" "', argument " "1"" of type '" "struct ccx_s_options *""'"); + } + arg1 = (struct ccx_s_options *)(argp1); + result = (int) ((arg1)->write_format_rewritten); + resultobj = SWIG_From_int((int)(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_ccx_s_options_use_ass_instead_of_ssa_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct ccx_s_options *arg1 = (struct ccx_s_options *) 0 ; + int arg2 ; + void *argp1 = 0 ; + int res1 = 0 ; + int val2 ; + int ecode2 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OO:ccx_s_options_use_ass_instead_of_ssa_set",&obj0,&obj1)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_ccx_s_options, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "ccx_s_options_use_ass_instead_of_ssa_set" "', argument " "1"" of type '" "struct ccx_s_options *""'"); + } + arg1 = (struct ccx_s_options *)(argp1); + ecode2 = SWIG_AsVal_int(obj1, &val2); + if (!SWIG_IsOK(ecode2)) { + SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "ccx_s_options_use_ass_instead_of_ssa_set" "', argument " "2"" of type '" "int""'"); + } + arg2 = (int)(val2); + if (arg1) (arg1)->use_ass_instead_of_ssa = arg2; + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_ccx_s_options_use_ass_instead_of_ssa_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct ccx_s_options *arg1 = (struct ccx_s_options *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + int result; + + if (!PyArg_ParseTuple(args,(char *)"O:ccx_s_options_use_ass_instead_of_ssa_get",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_ccx_s_options, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "ccx_s_options_use_ass_instead_of_ssa_get" "', argument " "1"" of type '" "struct ccx_s_options *""'"); + } + arg1 = (struct ccx_s_options *)(argp1); + result = (int) ((arg1)->use_ass_instead_of_ssa); + resultobj = SWIG_From_int((int)(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_ccx_s_options_use_webvtt_styling_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct ccx_s_options *arg1 = (struct ccx_s_options *) 0 ; + int arg2 ; + void *argp1 = 0 ; + int res1 = 0 ; + int val2 ; + int ecode2 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OO:ccx_s_options_use_webvtt_styling_set",&obj0,&obj1)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_ccx_s_options, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "ccx_s_options_use_webvtt_styling_set" "', argument " "1"" of type '" "struct ccx_s_options *""'"); + } + arg1 = (struct ccx_s_options *)(argp1); + ecode2 = SWIG_AsVal_int(obj1, &val2); + if (!SWIG_IsOK(ecode2)) { + SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "ccx_s_options_use_webvtt_styling_set" "', argument " "2"" of type '" "int""'"); + } + arg2 = (int)(val2); + if (arg1) (arg1)->use_webvtt_styling = arg2; + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_ccx_s_options_use_webvtt_styling_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct ccx_s_options *arg1 = (struct ccx_s_options *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + int result; + + if (!PyArg_ParseTuple(args,(char *)"O:ccx_s_options_use_webvtt_styling_get",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_ccx_s_options, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "ccx_s_options_use_webvtt_styling_get" "', argument " "1"" of type '" "struct ccx_s_options *""'"); + } + arg1 = (struct ccx_s_options *)(argp1); + result = (int) ((arg1)->use_webvtt_styling); + resultobj = SWIG_From_int((int)(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_ccx_s_options_debug_mask_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct ccx_s_options *arg1 = (struct ccx_s_options *) 0 ; + LLONG arg2 ; + void *argp1 = 0 ; + int res1 = 0 ; + void *argp2 ; + int res2 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OO:ccx_s_options_debug_mask_set",&obj0,&obj1)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_ccx_s_options, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "ccx_s_options_debug_mask_set" "', argument " "1"" of type '" "struct ccx_s_options *""'"); + } + arg1 = (struct ccx_s_options *)(argp1); + { + res2 = SWIG_ConvertPtr(obj1, &argp2, SWIGTYPE_p_LLONG, 0 ); + if (!SWIG_IsOK(res2)) { + SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "ccx_s_options_debug_mask_set" "', argument " "2"" of type '" "LLONG""'"); + } + if (!argp2) { + SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "ccx_s_options_debug_mask_set" "', argument " "2"" of type '" "LLONG""'"); + } else { + arg2 = *((LLONG *)(argp2)); + } + } + if (arg1) (arg1)->debug_mask = arg2; + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_ccx_s_options_debug_mask_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct ccx_s_options *arg1 = (struct ccx_s_options *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + LLONG result; + + if (!PyArg_ParseTuple(args,(char *)"O:ccx_s_options_debug_mask_get",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_ccx_s_options, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "ccx_s_options_debug_mask_get" "', argument " "1"" of type '" "struct ccx_s_options *""'"); + } + arg1 = (struct ccx_s_options *)(argp1); + result = ((arg1)->debug_mask); + resultobj = SWIG_NewPointerObj((LLONG *)memcpy((LLONG *)calloc(1,sizeof(LLONG)),&result,sizeof(LLONG)), SWIGTYPE_p_LLONG, SWIG_POINTER_OWN | 0 ); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_ccx_s_options_debug_mask_on_debug_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct ccx_s_options *arg1 = (struct ccx_s_options *) 0 ; + LLONG arg2 ; + void *argp1 = 0 ; + int res1 = 0 ; + void *argp2 ; + int res2 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OO:ccx_s_options_debug_mask_on_debug_set",&obj0,&obj1)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_ccx_s_options, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "ccx_s_options_debug_mask_on_debug_set" "', argument " "1"" of type '" "struct ccx_s_options *""'"); + } + arg1 = (struct ccx_s_options *)(argp1); + { + res2 = SWIG_ConvertPtr(obj1, &argp2, SWIGTYPE_p_LLONG, 0 ); + if (!SWIG_IsOK(res2)) { + SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "ccx_s_options_debug_mask_on_debug_set" "', argument " "2"" of type '" "LLONG""'"); + } + if (!argp2) { + SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "ccx_s_options_debug_mask_on_debug_set" "', argument " "2"" of type '" "LLONG""'"); + } else { + arg2 = *((LLONG *)(argp2)); + } + } + if (arg1) (arg1)->debug_mask_on_debug = arg2; + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_ccx_s_options_debug_mask_on_debug_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct ccx_s_options *arg1 = (struct ccx_s_options *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + LLONG result; + + if (!PyArg_ParseTuple(args,(char *)"O:ccx_s_options_debug_mask_on_debug_get",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_ccx_s_options, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "ccx_s_options_debug_mask_on_debug_get" "', argument " "1"" of type '" "struct ccx_s_options *""'"); + } + arg1 = (struct ccx_s_options *)(argp1); + result = ((arg1)->debug_mask_on_debug); + resultobj = SWIG_NewPointerObj((LLONG *)memcpy((LLONG *)calloc(1,sizeof(LLONG)),&result,sizeof(LLONG)), SWIGTYPE_p_LLONG, SWIG_POINTER_OWN | 0 ); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_ccx_s_options_udpaddr_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct ccx_s_options *arg1 = (struct ccx_s_options *) 0 ; + char *arg2 = (char *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + int res2 ; + char *buf2 = 0 ; + int alloc2 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OO:ccx_s_options_udpaddr_set",&obj0,&obj1)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_ccx_s_options, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "ccx_s_options_udpaddr_set" "', argument " "1"" of type '" "struct ccx_s_options *""'"); + } + arg1 = (struct ccx_s_options *)(argp1); + res2 = SWIG_AsCharPtrAndSize(obj1, &buf2, NULL, &alloc2); + if (!SWIG_IsOK(res2)) { + SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "ccx_s_options_udpaddr_set" "', argument " "2"" of type '" "char *""'"); + } + arg2 = (char *)(buf2); + if (arg1->udpaddr) free((char*)arg1->udpaddr); + if (arg2) { + size_t size = strlen((const char *)(arg2)) + 1; + arg1->udpaddr = (char *)(char *)memcpy(malloc((size)*sizeof(char)), (const char *)(arg2), sizeof(char)*(size)); + } else { + arg1->udpaddr = 0; + } + resultobj = SWIG_Py_Void(); + if (alloc2 == SWIG_NEWOBJ) free((char*)buf2); + return resultobj; +fail: + if (alloc2 == SWIG_NEWOBJ) free((char*)buf2); + return NULL; +} + + +SWIGINTERN PyObject *_wrap_ccx_s_options_udpaddr_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct ccx_s_options *arg1 = (struct ccx_s_options *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + char *result = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"O:ccx_s_options_udpaddr_get",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_ccx_s_options, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "ccx_s_options_udpaddr_get" "', argument " "1"" of type '" "struct ccx_s_options *""'"); + } + arg1 = (struct ccx_s_options *)(argp1); + result = (char *) ((arg1)->udpaddr); + resultobj = SWIG_FromCharPtr((const char *)result); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_ccx_s_options_udpport_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct ccx_s_options *arg1 = (struct ccx_s_options *) 0 ; + unsigned int arg2 ; + void *argp1 = 0 ; + int res1 = 0 ; + unsigned int val2 ; + int ecode2 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OO:ccx_s_options_udpport_set",&obj0,&obj1)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_ccx_s_options, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "ccx_s_options_udpport_set" "', argument " "1"" of type '" "struct ccx_s_options *""'"); + } + arg1 = (struct ccx_s_options *)(argp1); + ecode2 = SWIG_AsVal_unsigned_SS_int(obj1, &val2); + if (!SWIG_IsOK(ecode2)) { + SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "ccx_s_options_udpport_set" "', argument " "2"" of type '" "unsigned int""'"); + } + arg2 = (unsigned int)(val2); + if (arg1) (arg1)->udpport = arg2; + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_ccx_s_options_udpport_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct ccx_s_options *arg1 = (struct ccx_s_options *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + unsigned int result; + + if (!PyArg_ParseTuple(args,(char *)"O:ccx_s_options_udpport_get",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_ccx_s_options, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "ccx_s_options_udpport_get" "', argument " "1"" of type '" "struct ccx_s_options *""'"); + } + arg1 = (struct ccx_s_options *)(argp1); + result = (unsigned int) ((arg1)->udpport); + resultobj = SWIG_From_unsigned_SS_int((unsigned int)(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_ccx_s_options_tcpport_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct ccx_s_options *arg1 = (struct ccx_s_options *) 0 ; + char *arg2 = (char *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + int res2 ; + char *buf2 = 0 ; + int alloc2 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OO:ccx_s_options_tcpport_set",&obj0,&obj1)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_ccx_s_options, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "ccx_s_options_tcpport_set" "', argument " "1"" of type '" "struct ccx_s_options *""'"); + } + arg1 = (struct ccx_s_options *)(argp1); + res2 = SWIG_AsCharPtrAndSize(obj1, &buf2, NULL, &alloc2); + if (!SWIG_IsOK(res2)) { + SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "ccx_s_options_tcpport_set" "', argument " "2"" of type '" "char *""'"); + } + arg2 = (char *)(buf2); + if (arg1->tcpport) free((char*)arg1->tcpport); + if (arg2) { + size_t size = strlen((const char *)(arg2)) + 1; + arg1->tcpport = (char *)(char *)memcpy(malloc((size)*sizeof(char)), (const char *)(arg2), sizeof(char)*(size)); + } else { + arg1->tcpport = 0; + } + resultobj = SWIG_Py_Void(); + if (alloc2 == SWIG_NEWOBJ) free((char*)buf2); + return resultobj; +fail: + if (alloc2 == SWIG_NEWOBJ) free((char*)buf2); + return NULL; +} + + +SWIGINTERN PyObject *_wrap_ccx_s_options_tcpport_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct ccx_s_options *arg1 = (struct ccx_s_options *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + char *result = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"O:ccx_s_options_tcpport_get",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_ccx_s_options, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "ccx_s_options_tcpport_get" "', argument " "1"" of type '" "struct ccx_s_options *""'"); + } + arg1 = (struct ccx_s_options *)(argp1); + result = (char *) ((arg1)->tcpport); + resultobj = SWIG_FromCharPtr((const char *)result); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_ccx_s_options_tcp_password_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct ccx_s_options *arg1 = (struct ccx_s_options *) 0 ; + char *arg2 = (char *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + int res2 ; + char *buf2 = 0 ; + int alloc2 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OO:ccx_s_options_tcp_password_set",&obj0,&obj1)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_ccx_s_options, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "ccx_s_options_tcp_password_set" "', argument " "1"" of type '" "struct ccx_s_options *""'"); + } + arg1 = (struct ccx_s_options *)(argp1); + res2 = SWIG_AsCharPtrAndSize(obj1, &buf2, NULL, &alloc2); + if (!SWIG_IsOK(res2)) { + SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "ccx_s_options_tcp_password_set" "', argument " "2"" of type '" "char *""'"); + } + arg2 = (char *)(buf2); + if (arg1->tcp_password) free((char*)arg1->tcp_password); + if (arg2) { + size_t size = strlen((const char *)(arg2)) + 1; + arg1->tcp_password = (char *)(char *)memcpy(malloc((size)*sizeof(char)), (const char *)(arg2), sizeof(char)*(size)); + } else { + arg1->tcp_password = 0; + } + resultobj = SWIG_Py_Void(); + if (alloc2 == SWIG_NEWOBJ) free((char*)buf2); + return resultobj; +fail: + if (alloc2 == SWIG_NEWOBJ) free((char*)buf2); + return NULL; +} + + +SWIGINTERN PyObject *_wrap_ccx_s_options_tcp_password_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct ccx_s_options *arg1 = (struct ccx_s_options *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + char *result = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"O:ccx_s_options_tcp_password_get",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_ccx_s_options, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "ccx_s_options_tcp_password_get" "', argument " "1"" of type '" "struct ccx_s_options *""'"); + } + arg1 = (struct ccx_s_options *)(argp1); + result = (char *) ((arg1)->tcp_password); + resultobj = SWIG_FromCharPtr((const char *)result); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_ccx_s_options_tcp_desc_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct ccx_s_options *arg1 = (struct ccx_s_options *) 0 ; + char *arg2 = (char *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + int res2 ; + char *buf2 = 0 ; + int alloc2 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OO:ccx_s_options_tcp_desc_set",&obj0,&obj1)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_ccx_s_options, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "ccx_s_options_tcp_desc_set" "', argument " "1"" of type '" "struct ccx_s_options *""'"); + } + arg1 = (struct ccx_s_options *)(argp1); + res2 = SWIG_AsCharPtrAndSize(obj1, &buf2, NULL, &alloc2); + if (!SWIG_IsOK(res2)) { + SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "ccx_s_options_tcp_desc_set" "', argument " "2"" of type '" "char *""'"); + } + arg2 = (char *)(buf2); + if (arg1->tcp_desc) free((char*)arg1->tcp_desc); + if (arg2) { + size_t size = strlen((const char *)(arg2)) + 1; + arg1->tcp_desc = (char *)(char *)memcpy(malloc((size)*sizeof(char)), (const char *)(arg2), sizeof(char)*(size)); + } else { + arg1->tcp_desc = 0; + } + resultobj = SWIG_Py_Void(); + if (alloc2 == SWIG_NEWOBJ) free((char*)buf2); + return resultobj; +fail: + if (alloc2 == SWIG_NEWOBJ) free((char*)buf2); + return NULL; +} + + +SWIGINTERN PyObject *_wrap_ccx_s_options_tcp_desc_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct ccx_s_options *arg1 = (struct ccx_s_options *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + char *result = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"O:ccx_s_options_tcp_desc_get",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_ccx_s_options, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "ccx_s_options_tcp_desc_get" "', argument " "1"" of type '" "struct ccx_s_options *""'"); + } + arg1 = (struct ccx_s_options *)(argp1); + result = (char *) ((arg1)->tcp_desc); + resultobj = SWIG_FromCharPtr((const char *)result); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_ccx_s_options_srv_addr_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct ccx_s_options *arg1 = (struct ccx_s_options *) 0 ; + char *arg2 = (char *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + int res2 ; + char *buf2 = 0 ; + int alloc2 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OO:ccx_s_options_srv_addr_set",&obj0,&obj1)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_ccx_s_options, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "ccx_s_options_srv_addr_set" "', argument " "1"" of type '" "struct ccx_s_options *""'"); + } + arg1 = (struct ccx_s_options *)(argp1); + res2 = SWIG_AsCharPtrAndSize(obj1, &buf2, NULL, &alloc2); + if (!SWIG_IsOK(res2)) { + SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "ccx_s_options_srv_addr_set" "', argument " "2"" of type '" "char *""'"); + } + arg2 = (char *)(buf2); + if (arg1->srv_addr) free((char*)arg1->srv_addr); + if (arg2) { + size_t size = strlen((const char *)(arg2)) + 1; + arg1->srv_addr = (char *)(char *)memcpy(malloc((size)*sizeof(char)), (const char *)(arg2), sizeof(char)*(size)); + } else { + arg1->srv_addr = 0; + } + resultobj = SWIG_Py_Void(); + if (alloc2 == SWIG_NEWOBJ) free((char*)buf2); + return resultobj; +fail: + if (alloc2 == SWIG_NEWOBJ) free((char*)buf2); + return NULL; +} + + +SWIGINTERN PyObject *_wrap_ccx_s_options_srv_addr_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct ccx_s_options *arg1 = (struct ccx_s_options *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + char *result = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"O:ccx_s_options_srv_addr_get",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_ccx_s_options, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "ccx_s_options_srv_addr_get" "', argument " "1"" of type '" "struct ccx_s_options *""'"); + } + arg1 = (struct ccx_s_options *)(argp1); + result = (char *) ((arg1)->srv_addr); + resultobj = SWIG_FromCharPtr((const char *)result); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_ccx_s_options_srv_port_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct ccx_s_options *arg1 = (struct ccx_s_options *) 0 ; + char *arg2 = (char *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + int res2 ; + char *buf2 = 0 ; + int alloc2 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OO:ccx_s_options_srv_port_set",&obj0,&obj1)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_ccx_s_options, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "ccx_s_options_srv_port_set" "', argument " "1"" of type '" "struct ccx_s_options *""'"); + } + arg1 = (struct ccx_s_options *)(argp1); + res2 = SWIG_AsCharPtrAndSize(obj1, &buf2, NULL, &alloc2); + if (!SWIG_IsOK(res2)) { + SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "ccx_s_options_srv_port_set" "', argument " "2"" of type '" "char *""'"); + } + arg2 = (char *)(buf2); + if (arg1->srv_port) free((char*)arg1->srv_port); + if (arg2) { + size_t size = strlen((const char *)(arg2)) + 1; + arg1->srv_port = (char *)(char *)memcpy(malloc((size)*sizeof(char)), (const char *)(arg2), sizeof(char)*(size)); + } else { + arg1->srv_port = 0; + } + resultobj = SWIG_Py_Void(); + if (alloc2 == SWIG_NEWOBJ) free((char*)buf2); + return resultobj; +fail: + if (alloc2 == SWIG_NEWOBJ) free((char*)buf2); + return NULL; +} + + +SWIGINTERN PyObject *_wrap_ccx_s_options_srv_port_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct ccx_s_options *arg1 = (struct ccx_s_options *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + char *result = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"O:ccx_s_options_srv_port_get",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_ccx_s_options, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "ccx_s_options_srv_port_get" "', argument " "1"" of type '" "struct ccx_s_options *""'"); + } + arg1 = (struct ccx_s_options *)(argp1); + result = (char *) ((arg1)->srv_port); + resultobj = SWIG_FromCharPtr((const char *)result); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_ccx_s_options_noautotimeref_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct ccx_s_options *arg1 = (struct ccx_s_options *) 0 ; + int arg2 ; + void *argp1 = 0 ; + int res1 = 0 ; + int val2 ; + int ecode2 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OO:ccx_s_options_noautotimeref_set",&obj0,&obj1)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_ccx_s_options, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "ccx_s_options_noautotimeref_set" "', argument " "1"" of type '" "struct ccx_s_options *""'"); + } + arg1 = (struct ccx_s_options *)(argp1); + ecode2 = SWIG_AsVal_int(obj1, &val2); + if (!SWIG_IsOK(ecode2)) { + SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "ccx_s_options_noautotimeref_set" "', argument " "2"" of type '" "int""'"); + } + arg2 = (int)(val2); + if (arg1) (arg1)->noautotimeref = arg2; + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_ccx_s_options_noautotimeref_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct ccx_s_options *arg1 = (struct ccx_s_options *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + int result; + + if (!PyArg_ParseTuple(args,(char *)"O:ccx_s_options_noautotimeref_get",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_ccx_s_options, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "ccx_s_options_noautotimeref_get" "', argument " "1"" of type '" "struct ccx_s_options *""'"); + } + arg1 = (struct ccx_s_options *)(argp1); + result = (int) ((arg1)->noautotimeref); + resultobj = SWIG_From_int((int)(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_ccx_s_options_input_source_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct ccx_s_options *arg1 = (struct ccx_s_options *) 0 ; + enum ccx_datasource arg2 ; + void *argp1 = 0 ; + int res1 = 0 ; + int val2 ; + int ecode2 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OO:ccx_s_options_input_source_set",&obj0,&obj1)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_ccx_s_options, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "ccx_s_options_input_source_set" "', argument " "1"" of type '" "struct ccx_s_options *""'"); + } + arg1 = (struct ccx_s_options *)(argp1); + ecode2 = SWIG_AsVal_int(obj1, &val2); + if (!SWIG_IsOK(ecode2)) { + SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "ccx_s_options_input_source_set" "', argument " "2"" of type '" "enum ccx_datasource""'"); + } + arg2 = (enum ccx_datasource)(val2); + if (arg1) (arg1)->input_source = arg2; + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_ccx_s_options_input_source_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct ccx_s_options *arg1 = (struct ccx_s_options *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + enum ccx_datasource result; + + if (!PyArg_ParseTuple(args,(char *)"O:ccx_s_options_input_source_get",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_ccx_s_options, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "ccx_s_options_input_source_get" "', argument " "1"" of type '" "struct ccx_s_options *""'"); + } + arg1 = (struct ccx_s_options *)(argp1); + result = (enum ccx_datasource) ((arg1)->input_source); + resultobj = SWIG_From_int((int)(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_ccx_s_options_output_filename_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct ccx_s_options *arg1 = (struct ccx_s_options *) 0 ; + char *arg2 = (char *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + int res2 ; + char *buf2 = 0 ; + int alloc2 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OO:ccx_s_options_output_filename_set",&obj0,&obj1)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_ccx_s_options, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "ccx_s_options_output_filename_set" "', argument " "1"" of type '" "struct ccx_s_options *""'"); + } + arg1 = (struct ccx_s_options *)(argp1); + res2 = SWIG_AsCharPtrAndSize(obj1, &buf2, NULL, &alloc2); + if (!SWIG_IsOK(res2)) { + SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "ccx_s_options_output_filename_set" "', argument " "2"" of type '" "char *""'"); + } + arg2 = (char *)(buf2); + if (arg1->output_filename) free((char*)arg1->output_filename); + if (arg2) { + size_t size = strlen((const char *)(arg2)) + 1; + arg1->output_filename = (char *)(char *)memcpy(malloc((size)*sizeof(char)), (const char *)(arg2), sizeof(char)*(size)); + } else { + arg1->output_filename = 0; + } + resultobj = SWIG_Py_Void(); + if (alloc2 == SWIG_NEWOBJ) free((char*)buf2); + return resultobj; +fail: + if (alloc2 == SWIG_NEWOBJ) free((char*)buf2); + return NULL; +} + + +SWIGINTERN PyObject *_wrap_ccx_s_options_output_filename_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct ccx_s_options *arg1 = (struct ccx_s_options *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + char *result = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"O:ccx_s_options_output_filename_get",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_ccx_s_options, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "ccx_s_options_output_filename_get" "', argument " "1"" of type '" "struct ccx_s_options *""'"); + } + arg1 = (struct ccx_s_options *)(argp1); + result = (char *) ((arg1)->output_filename); + resultobj = SWIG_FromCharPtr((const char *)result); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_ccx_s_options_inputfile_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct ccx_s_options *arg1 = (struct ccx_s_options *) 0 ; + char **arg2 = (char **) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + void *argp2 = 0 ; + int res2 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OO:ccx_s_options_inputfile_set",&obj0,&obj1)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_ccx_s_options, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "ccx_s_options_inputfile_set" "', argument " "1"" of type '" "struct ccx_s_options *""'"); + } + arg1 = (struct ccx_s_options *)(argp1); + res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_p_char, 0 | 0 ); + if (!SWIG_IsOK(res2)) { + SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "ccx_s_options_inputfile_set" "', argument " "2"" of type '" "char **""'"); + } + arg2 = (char **)(argp2); + if (arg1) (arg1)->inputfile = arg2; + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_ccx_s_options_inputfile_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct ccx_s_options *arg1 = (struct ccx_s_options *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + char **result = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"O:ccx_s_options_inputfile_get",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_ccx_s_options, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "ccx_s_options_inputfile_get" "', argument " "1"" of type '" "struct ccx_s_options *""'"); + } + arg1 = (struct ccx_s_options *)(argp1); + result = (char **) ((arg1)->inputfile); + resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_p_char, 0 | 0 ); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_ccx_s_options_num_input_files_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct ccx_s_options *arg1 = (struct ccx_s_options *) 0 ; + int arg2 ; + void *argp1 = 0 ; + int res1 = 0 ; + int val2 ; + int ecode2 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OO:ccx_s_options_num_input_files_set",&obj0,&obj1)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_ccx_s_options, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "ccx_s_options_num_input_files_set" "', argument " "1"" of type '" "struct ccx_s_options *""'"); + } + arg1 = (struct ccx_s_options *)(argp1); + ecode2 = SWIG_AsVal_int(obj1, &val2); + if (!SWIG_IsOK(ecode2)) { + SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "ccx_s_options_num_input_files_set" "', argument " "2"" of type '" "int""'"); + } + arg2 = (int)(val2); + if (arg1) (arg1)->num_input_files = arg2; + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_ccx_s_options_num_input_files_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct ccx_s_options *arg1 = (struct ccx_s_options *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + int result; + + if (!PyArg_ParseTuple(args,(char *)"O:ccx_s_options_num_input_files_get",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_ccx_s_options, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "ccx_s_options_num_input_files_get" "', argument " "1"" of type '" "struct ccx_s_options *""'"); + } + arg1 = (struct ccx_s_options *)(argp1); + result = (int) ((arg1)->num_input_files); + resultobj = SWIG_From_int((int)(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_ccx_s_options_demux_cfg_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct ccx_s_options *arg1 = (struct ccx_s_options *) 0 ; + struct demuxer_cfg *arg2 = (struct demuxer_cfg *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + void *argp2 = 0 ; + int res2 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OO:ccx_s_options_demux_cfg_set",&obj0,&obj1)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_ccx_s_options, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "ccx_s_options_demux_cfg_set" "', argument " "1"" of type '" "struct ccx_s_options *""'"); + } + arg1 = (struct ccx_s_options *)(argp1); + res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_demuxer_cfg, 0 | 0 ); + if (!SWIG_IsOK(res2)) { + SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "ccx_s_options_demux_cfg_set" "', argument " "2"" of type '" "struct demuxer_cfg *""'"); + } + arg2 = (struct demuxer_cfg *)(argp2); + if (arg1) (arg1)->demux_cfg = *arg2; + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_ccx_s_options_demux_cfg_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct ccx_s_options *arg1 = (struct ccx_s_options *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + struct demuxer_cfg *result = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"O:ccx_s_options_demux_cfg_get",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_ccx_s_options, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "ccx_s_options_demux_cfg_get" "', argument " "1"" of type '" "struct ccx_s_options *""'"); + } + arg1 = (struct ccx_s_options *)(argp1); + result = (struct demuxer_cfg *)& ((arg1)->demux_cfg); + resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_demuxer_cfg, 0 | 0 ); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_ccx_s_options_enc_cfg_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct ccx_s_options *arg1 = (struct ccx_s_options *) 0 ; + struct encoder_cfg *arg2 = (struct encoder_cfg *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + void *argp2 = 0 ; + int res2 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OO:ccx_s_options_enc_cfg_set",&obj0,&obj1)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_ccx_s_options, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "ccx_s_options_enc_cfg_set" "', argument " "1"" of type '" "struct ccx_s_options *""'"); + } + arg1 = (struct ccx_s_options *)(argp1); + res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_encoder_cfg, 0 | 0 ); + if (!SWIG_IsOK(res2)) { + SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "ccx_s_options_enc_cfg_set" "', argument " "2"" of type '" "struct encoder_cfg *""'"); + } + arg2 = (struct encoder_cfg *)(argp2); + if (arg1) (arg1)->enc_cfg = *arg2; + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_ccx_s_options_enc_cfg_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct ccx_s_options *arg1 = (struct ccx_s_options *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + struct encoder_cfg *result = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"O:ccx_s_options_enc_cfg_get",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_ccx_s_options, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "ccx_s_options_enc_cfg_get" "', argument " "1"" of type '" "struct ccx_s_options *""'"); + } + arg1 = (struct ccx_s_options *)(argp1); + result = (struct encoder_cfg *)& ((arg1)->enc_cfg); + resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_encoder_cfg, 0 | 0 ); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_ccx_s_options_subs_delay_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct ccx_s_options *arg1 = (struct ccx_s_options *) 0 ; + LLONG arg2 ; + void *argp1 = 0 ; + int res1 = 0 ; + void *argp2 ; + int res2 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OO:ccx_s_options_subs_delay_set",&obj0,&obj1)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_ccx_s_options, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "ccx_s_options_subs_delay_set" "', argument " "1"" of type '" "struct ccx_s_options *""'"); + } + arg1 = (struct ccx_s_options *)(argp1); + { + res2 = SWIG_ConvertPtr(obj1, &argp2, SWIGTYPE_p_LLONG, 0 ); + if (!SWIG_IsOK(res2)) { + SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "ccx_s_options_subs_delay_set" "', argument " "2"" of type '" "LLONG""'"); + } + if (!argp2) { + SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "ccx_s_options_subs_delay_set" "', argument " "2"" of type '" "LLONG""'"); + } else { + arg2 = *((LLONG *)(argp2)); + } + } + if (arg1) (arg1)->subs_delay = arg2; + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_ccx_s_options_subs_delay_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct ccx_s_options *arg1 = (struct ccx_s_options *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + LLONG result; + + if (!PyArg_ParseTuple(args,(char *)"O:ccx_s_options_subs_delay_get",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_ccx_s_options, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "ccx_s_options_subs_delay_get" "', argument " "1"" of type '" "struct ccx_s_options *""'"); + } + arg1 = (struct ccx_s_options *)(argp1); + result = ((arg1)->subs_delay); + resultobj = SWIG_NewPointerObj((LLONG *)memcpy((LLONG *)calloc(1,sizeof(LLONG)),&result,sizeof(LLONG)), SWIGTYPE_p_LLONG, SWIG_POINTER_OWN | 0 ); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_ccx_s_options_cc_to_stdout_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct ccx_s_options *arg1 = (struct ccx_s_options *) 0 ; + int arg2 ; + void *argp1 = 0 ; + int res1 = 0 ; + int val2 ; + int ecode2 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OO:ccx_s_options_cc_to_stdout_set",&obj0,&obj1)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_ccx_s_options, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "ccx_s_options_cc_to_stdout_set" "', argument " "1"" of type '" "struct ccx_s_options *""'"); + } + arg1 = (struct ccx_s_options *)(argp1); + ecode2 = SWIG_AsVal_int(obj1, &val2); + if (!SWIG_IsOK(ecode2)) { + SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "ccx_s_options_cc_to_stdout_set" "', argument " "2"" of type '" "int""'"); + } + arg2 = (int)(val2); + if (arg1) (arg1)->cc_to_stdout = arg2; + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_ccx_s_options_cc_to_stdout_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct ccx_s_options *arg1 = (struct ccx_s_options *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + int result; + + if (!PyArg_ParseTuple(args,(char *)"O:ccx_s_options_cc_to_stdout_get",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_ccx_s_options, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "ccx_s_options_cc_to_stdout_get" "', argument " "1"" of type '" "struct ccx_s_options *""'"); + } + arg1 = (struct ccx_s_options *)(argp1); + result = (int) ((arg1)->cc_to_stdout); + resultobj = SWIG_From_int((int)(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_ccx_s_options_pes_header_to_stdout_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct ccx_s_options *arg1 = (struct ccx_s_options *) 0 ; + int arg2 ; + void *argp1 = 0 ; + int res1 = 0 ; + int val2 ; + int ecode2 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OO:ccx_s_options_pes_header_to_stdout_set",&obj0,&obj1)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_ccx_s_options, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "ccx_s_options_pes_header_to_stdout_set" "', argument " "1"" of type '" "struct ccx_s_options *""'"); + } + arg1 = (struct ccx_s_options *)(argp1); + ecode2 = SWIG_AsVal_int(obj1, &val2); + if (!SWIG_IsOK(ecode2)) { + SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "ccx_s_options_pes_header_to_stdout_set" "', argument " "2"" of type '" "int""'"); + } + arg2 = (int)(val2); + if (arg1) (arg1)->pes_header_to_stdout = arg2; + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_ccx_s_options_pes_header_to_stdout_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct ccx_s_options *arg1 = (struct ccx_s_options *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + int result; + + if (!PyArg_ParseTuple(args,(char *)"O:ccx_s_options_pes_header_to_stdout_get",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_ccx_s_options, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "ccx_s_options_pes_header_to_stdout_get" "', argument " "1"" of type '" "struct ccx_s_options *""'"); + } + arg1 = (struct ccx_s_options *)(argp1); + result = (int) ((arg1)->pes_header_to_stdout); + resultobj = SWIG_From_int((int)(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_ccx_s_options_dvb_debug_traces_to_stdout_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct ccx_s_options *arg1 = (struct ccx_s_options *) 0 ; + int arg2 ; + void *argp1 = 0 ; + int res1 = 0 ; + int val2 ; + int ecode2 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OO:ccx_s_options_dvb_debug_traces_to_stdout_set",&obj0,&obj1)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_ccx_s_options, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "ccx_s_options_dvb_debug_traces_to_stdout_set" "', argument " "1"" of type '" "struct ccx_s_options *""'"); + } + arg1 = (struct ccx_s_options *)(argp1); + ecode2 = SWIG_AsVal_int(obj1, &val2); + if (!SWIG_IsOK(ecode2)) { + SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "ccx_s_options_dvb_debug_traces_to_stdout_set" "', argument " "2"" of type '" "int""'"); + } + arg2 = (int)(val2); + if (arg1) (arg1)->dvb_debug_traces_to_stdout = arg2; + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_ccx_s_options_dvb_debug_traces_to_stdout_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct ccx_s_options *arg1 = (struct ccx_s_options *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + int result; + + if (!PyArg_ParseTuple(args,(char *)"O:ccx_s_options_dvb_debug_traces_to_stdout_get",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_ccx_s_options, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "ccx_s_options_dvb_debug_traces_to_stdout_get" "', argument " "1"" of type '" "struct ccx_s_options *""'"); + } + arg1 = (struct ccx_s_options *)(argp1); + result = (int) ((arg1)->dvb_debug_traces_to_stdout); + resultobj = SWIG_From_int((int)(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_ccx_s_options_ignore_pts_jumps_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct ccx_s_options *arg1 = (struct ccx_s_options *) 0 ; + int arg2 ; + void *argp1 = 0 ; + int res1 = 0 ; + int val2 ; + int ecode2 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OO:ccx_s_options_ignore_pts_jumps_set",&obj0,&obj1)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_ccx_s_options, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "ccx_s_options_ignore_pts_jumps_set" "', argument " "1"" of type '" "struct ccx_s_options *""'"); + } + arg1 = (struct ccx_s_options *)(argp1); + ecode2 = SWIG_AsVal_int(obj1, &val2); + if (!SWIG_IsOK(ecode2)) { + SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "ccx_s_options_ignore_pts_jumps_set" "', argument " "2"" of type '" "int""'"); + } + arg2 = (int)(val2); + if (arg1) (arg1)->ignore_pts_jumps = arg2; + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_ccx_s_options_ignore_pts_jumps_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct ccx_s_options *arg1 = (struct ccx_s_options *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + int result; + + if (!PyArg_ParseTuple(args,(char *)"O:ccx_s_options_ignore_pts_jumps_get",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_ccx_s_options, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "ccx_s_options_ignore_pts_jumps_get" "', argument " "1"" of type '" "struct ccx_s_options *""'"); + } + arg1 = (struct ccx_s_options *)(argp1); + result = (int) ((arg1)->ignore_pts_jumps); + resultobj = SWIG_From_int((int)(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_ccx_s_options_multiprogram_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct ccx_s_options *arg1 = (struct ccx_s_options *) 0 ; + int arg2 ; + void *argp1 = 0 ; + int res1 = 0 ; + int val2 ; + int ecode2 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OO:ccx_s_options_multiprogram_set",&obj0,&obj1)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_ccx_s_options, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "ccx_s_options_multiprogram_set" "', argument " "1"" of type '" "struct ccx_s_options *""'"); + } + arg1 = (struct ccx_s_options *)(argp1); + ecode2 = SWIG_AsVal_int(obj1, &val2); + if (!SWIG_IsOK(ecode2)) { + SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "ccx_s_options_multiprogram_set" "', argument " "2"" of type '" "int""'"); + } + arg2 = (int)(val2); + if (arg1) (arg1)->multiprogram = arg2; + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_ccx_s_options_multiprogram_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct ccx_s_options *arg1 = (struct ccx_s_options *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + int result; + + if (!PyArg_ParseTuple(args,(char *)"O:ccx_s_options_multiprogram_get",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_ccx_s_options, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "ccx_s_options_multiprogram_get" "', argument " "1"" of type '" "struct ccx_s_options *""'"); + } + arg1 = (struct ccx_s_options *)(argp1); + result = (int) ((arg1)->multiprogram); + resultobj = SWIG_From_int((int)(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_ccx_s_options_out_interval_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct ccx_s_options *arg1 = (struct ccx_s_options *) 0 ; + int arg2 ; + void *argp1 = 0 ; + int res1 = 0 ; + int val2 ; + int ecode2 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OO:ccx_s_options_out_interval_set",&obj0,&obj1)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_ccx_s_options, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "ccx_s_options_out_interval_set" "', argument " "1"" of type '" "struct ccx_s_options *""'"); + } + arg1 = (struct ccx_s_options *)(argp1); + ecode2 = SWIG_AsVal_int(obj1, &val2); + if (!SWIG_IsOK(ecode2)) { + SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "ccx_s_options_out_interval_set" "', argument " "2"" of type '" "int""'"); + } + arg2 = (int)(val2); + if (arg1) (arg1)->out_interval = arg2; + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_ccx_s_options_out_interval_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct ccx_s_options *arg1 = (struct ccx_s_options *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + int result; + + if (!PyArg_ParseTuple(args,(char *)"O:ccx_s_options_out_interval_get",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_ccx_s_options, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "ccx_s_options_out_interval_get" "', argument " "1"" of type '" "struct ccx_s_options *""'"); + } + arg1 = (struct ccx_s_options *)(argp1); + result = (int) ((arg1)->out_interval); + resultobj = SWIG_From_int((int)(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_ccx_s_options_myarguments_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct ccx_s_options *arg1 = (struct ccx_s_options *) 0 ; + char **arg2 = (char **) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + void *argp2 = 0 ; + int res2 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OO:ccx_s_options_myarguments_set",&obj0,&obj1)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_ccx_s_options, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "ccx_s_options_myarguments_set" "', argument " "1"" of type '" "struct ccx_s_options *""'"); + } + arg1 = (struct ccx_s_options *)(argp1); + res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_p_char, 0 | 0 ); + if (!SWIG_IsOK(res2)) { + SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "ccx_s_options_myarguments_set" "', argument " "2"" of type '" "char **""'"); + } + arg2 = (char **)(argp2); + if (arg1) (arg1)->myarguments = arg2; + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_ccx_s_options_myarguments_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct ccx_s_options *arg1 = (struct ccx_s_options *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + char **result = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"O:ccx_s_options_myarguments_get",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_ccx_s_options, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "ccx_s_options_myarguments_get" "', argument " "1"" of type '" "struct ccx_s_options *""'"); + } + arg1 = (struct ccx_s_options *)(argp1); + result = (char **) ((arg1)->myarguments); + resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_p_char, 0 | 0 ); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_ccx_s_options_argument_count_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct ccx_s_options *arg1 = (struct ccx_s_options *) 0 ; + int arg2 ; + void *argp1 = 0 ; + int res1 = 0 ; + int val2 ; + int ecode2 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OO:ccx_s_options_argument_count_set",&obj0,&obj1)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_ccx_s_options, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "ccx_s_options_argument_count_set" "', argument " "1"" of type '" "struct ccx_s_options *""'"); + } + arg1 = (struct ccx_s_options *)(argp1); + ecode2 = SWIG_AsVal_int(obj1, &val2); + if (!SWIG_IsOK(ecode2)) { + SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "ccx_s_options_argument_count_set" "', argument " "2"" of type '" "int""'"); + } + arg2 = (int)(val2); + if (arg1) (arg1)->argument_count = arg2; + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_ccx_s_options_argument_count_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct ccx_s_options *arg1 = (struct ccx_s_options *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + int result; + + if (!PyArg_ParseTuple(args,(char *)"O:ccx_s_options_argument_count_get",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_ccx_s_options, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "ccx_s_options_argument_count_get" "', argument " "1"" of type '" "struct ccx_s_options *""'"); + } + arg1 = (struct ccx_s_options *)(argp1); + result = (int) ((arg1)->argument_count); + resultobj = SWIG_From_int((int)(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_new_ccx_s_options(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct ccx_s_options *result = 0 ; + + if (!PyArg_ParseTuple(args,(char *)":new_ccx_s_options")) SWIG_fail; + result = (struct ccx_s_options *)calloc(1, sizeof(struct ccx_s_options)); + resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_ccx_s_options, SWIG_POINTER_NEW | 0 ); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_delete_ccx_s_options(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct ccx_s_options *arg1 = (struct ccx_s_options *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"O:delete_ccx_s_options",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_ccx_s_options, SWIG_POINTER_DISOWN | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_ccx_s_options" "', argument " "1"" of type '" "struct ccx_s_options *""'"); + } + arg1 = (struct ccx_s_options *)(argp1); + free((char *) arg1); + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *ccx_s_options_swigregister(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *obj; + if (!PyArg_ParseTuple(args,(char *)"O:swigregister", &obj)) return NULL; + SWIG_TypeNewClientData(SWIGTYPE_p_ccx_s_options, SWIG_NewClientData(obj)); + return SWIG_Py_Void(); +} + +SWIGINTERN int Swig_var_ccx_options_set(PyObject *_val) { + { + void *argp = 0; + int res = SWIG_ConvertPtr(_val, &argp, SWIGTYPE_p_ccx_s_options, 0 ); + if (!SWIG_IsOK(res)) { + SWIG_exception_fail(SWIG_ArgError(res), "in variable '""ccx_options""' of type '""struct ccx_s_options""'"); + } + if (!argp) { + SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in variable '""ccx_options""' of type '""struct ccx_s_options""'"); + } else { + ccx_options = *((struct ccx_s_options *)(argp)); + } + } + return 0; +fail: + return 1; +} + + +SWIGINTERN PyObject *Swig_var_ccx_options_get(void) { + PyObject *pyobj = 0; + + pyobj = SWIG_NewPointerObj(SWIG_as_voidptr(&ccx_options), SWIGTYPE_p_ccx_s_options, 0 ); + return pyobj; +} + + +SWIGINTERN PyObject *_wrap_init_options(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct ccx_s_options *arg1 = (struct ccx_s_options *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"O:init_options",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_ccx_s_options, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "init_options" "', argument " "1"" of type '" "struct ccx_s_options *""'"); + } + arg1 = (struct ccx_s_options *)(argp1); + init_options(arg1); + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_processmp4(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct lib_ccx_ctx *arg1 = (struct lib_ccx_ctx *) 0 ; + struct ccx_s_mp4Cfg *arg2 = (struct ccx_s_mp4Cfg *) 0 ; + char *arg3 = (char *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + void *argp2 = 0 ; + int res2 = 0 ; + int res3 ; + char *buf3 = 0 ; + int alloc3 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + PyObject * obj2 = 0 ; + int result; + + if (!PyArg_ParseTuple(args,(char *)"OOO:processmp4",&obj0,&obj1,&obj2)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_lib_ccx_ctx, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "processmp4" "', argument " "1"" of type '" "struct lib_ccx_ctx *""'"); + } + arg1 = (struct lib_ccx_ctx *)(argp1); + res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_ccx_s_mp4Cfg, 0 | 0 ); + if (!SWIG_IsOK(res2)) { + SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "processmp4" "', argument " "2"" of type '" "struct ccx_s_mp4Cfg *""'"); + } + arg2 = (struct ccx_s_mp4Cfg *)(argp2); + res3 = SWIG_AsCharPtrAndSize(obj2, &buf3, NULL, &alloc3); + if (!SWIG_IsOK(res3)) { + SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "processmp4" "', argument " "3"" of type '" "char *""'"); + } + arg3 = (char *)(buf3); + result = (int)processmp4(arg1,arg2,arg3); + resultobj = SWIG_From_int((int)(result)); + if (alloc3 == SWIG_NEWOBJ) free((char*)buf3); + return resultobj; +fail: + if (alloc3 == SWIG_NEWOBJ) free((char*)buf3); + return NULL; +} + + +SWIGINTERN PyObject *_wrap_dumpchapters(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct lib_ccx_ctx *arg1 = (struct lib_ccx_ctx *) 0 ; + struct ccx_s_mp4Cfg *arg2 = (struct ccx_s_mp4Cfg *) 0 ; + char *arg3 = (char *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + void *argp2 = 0 ; + int res2 = 0 ; + int res3 ; + char *buf3 = 0 ; + int alloc3 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + PyObject * obj2 = 0 ; + int result; + + if (!PyArg_ParseTuple(args,(char *)"OOO:dumpchapters",&obj0,&obj1,&obj2)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_lib_ccx_ctx, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "dumpchapters" "', argument " "1"" of type '" "struct lib_ccx_ctx *""'"); + } + arg1 = (struct lib_ccx_ctx *)(argp1); + res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_ccx_s_mp4Cfg, 0 | 0 ); + if (!SWIG_IsOK(res2)) { + SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "dumpchapters" "', argument " "2"" of type '" "struct ccx_s_mp4Cfg *""'"); + } + arg2 = (struct ccx_s_mp4Cfg *)(argp2); + res3 = SWIG_AsCharPtrAndSize(obj2, &buf3, NULL, &alloc3); + if (!SWIG_IsOK(res3)) { + SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "dumpchapters" "', argument " "3"" of type '" "char *""'"); + } + arg3 = (char *)(buf3); + result = (int)dumpchapters(arg1,arg2,arg3); + resultobj = SWIG_From_int((int)(result)); + if (alloc3 == SWIG_NEWOBJ) free((char*)buf3); + return resultobj; +fail: + if (alloc3 == SWIG_NEWOBJ) free((char*)buf3); + return NULL; +} + + +SWIGINTERN int Swig_var_signal_ctx_set(PyObject *_val) { + { + void *argp = 0; + int res = SWIG_ConvertPtr(_val, &argp, SWIGTYPE_p_lib_ccx_ctx, 0 ); + if (!SWIG_IsOK(res)) { + SWIG_exception_fail(SWIG_ArgError(res), "in variable '""signal_ctx""' of type '""struct lib_ccx_ctx *""'"); + } + signal_ctx = (struct lib_ccx_ctx *)(argp); + } + return 0; +fail: + return 1; +} + + +SWIGINTERN PyObject *Swig_var_signal_ctx_get(void) { + PyObject *pyobj = 0; + + pyobj = SWIG_NewPointerObj(SWIG_as_voidptr(signal_ctx), SWIGTYPE_p_lib_ccx_ctx, 0 ); + return pyobj; +} + + +SWIGINTERN PyObject *_wrap_sigusr1_handler(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + int arg1 ; + int val1 ; + int ecode1 = 0 ; + PyObject * obj0 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"O:sigusr1_handler",&obj0)) SWIG_fail; + ecode1 = SWIG_AsVal_int(obj0, &val1); + if (!SWIG_IsOK(ecode1)) { + SWIG_exception_fail(SWIG_ArgError(ecode1), "in method '" "sigusr1_handler" "', argument " "1"" of type '" "int""'"); + } + arg1 = (int)(val1); + sigusr1_handler(arg1); + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_sigterm_handler(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + int arg1 ; + int val1 ; + int ecode1 = 0 ; + PyObject * obj0 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"O:sigterm_handler",&obj0)) SWIG_fail; + ecode1 = SWIG_AsVal_int(obj0, &val1); + if (!SWIG_IsOK(ecode1)) { + SWIG_exception_fail(SWIG_ArgError(ecode1), "in method '" "sigterm_handler" "', argument " "1"" of type '" "int""'"); + } + arg1 = (int)(val1); + sigterm_handler(arg1); + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_sigint_handler(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + int arg1 ; + int val1 ; + int ecode1 = 0 ; + PyObject * obj0 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"O:sigint_handler",&obj0)) SWIG_fail; + ecode1 = SWIG_AsVal_int(obj0, &val1); + if (!SWIG_IsOK(ecode1)) { + SWIG_exception_fail(SWIG_ArgError(ecode1), "in method '" "sigint_handler" "', argument " "1"" of type '" "int""'"); + } + arg1 = (int)(val1); + sigint_handler(arg1); + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_api_init_options(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct ccx_s_options *result = 0 ; + + if (!PyArg_ParseTuple(args,(char *)":api_init_options")) SWIG_fail; + result = (struct ccx_s_options *)api_init_options(); + resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_ccx_s_options, 0 | 0 ); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_checking_configuration_file(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct ccx_s_options arg1 ; + void *argp1 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"O:checking_configuration_file",&obj0)) SWIG_fail; + { + res1 = SWIG_ConvertPtr(obj0, &argp1, SWIGTYPE_p_ccx_s_options, 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "checking_configuration_file" "', argument " "1"" of type '" "struct ccx_s_options""'"); + } + if (!argp1) { + SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "checking_configuration_file" "', argument " "1"" of type '" "struct ccx_s_options""'"); + } else { + arg1 = *((struct ccx_s_options *)(argp1)); + } + } + checking_configuration_file(arg1); + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_compile_params(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct ccx_s_options *arg1 = (struct ccx_s_options *) 0 ; + int arg2 ; + void *argp1 = 0 ; + int res1 = 0 ; + int val2 ; + int ecode2 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + int result; + + if (!PyArg_ParseTuple(args,(char *)"OO:compile_params",&obj0,&obj1)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_ccx_s_options, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "compile_params" "', argument " "1"" of type '" "struct ccx_s_options *""'"); + } + arg1 = (struct ccx_s_options *)(argp1); + ecode2 = SWIG_AsVal_int(obj1, &val2); + if (!SWIG_IsOK(ecode2)) { + SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "compile_params" "', argument " "2"" of type '" "int""'"); + } + arg2 = (int)(val2); + result = (int)compile_params(arg1,arg2); + resultobj = SWIG_From_int((int)(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_api_add_param(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + struct ccx_s_options *arg1 = (struct ccx_s_options *) 0 ; + char *arg2 = (char *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + int res2 ; + char *buf2 = 0 ; + int alloc2 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OO:api_add_param",&obj0,&obj1)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_ccx_s_options, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "api_add_param" "', argument " "1"" of type '" "struct ccx_s_options *""'"); + } + arg1 = (struct ccx_s_options *)(argp1); + res2 = SWIG_AsCharPtrAndSize(obj1, &buf2, NULL, &alloc2); + if (!SWIG_IsOK(res2)) { + SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "api_add_param" "', argument " "2"" of type '" "char *""'"); + } + arg2 = (char *)(buf2); + api_add_param(arg1,arg2); + resultobj = SWIG_Py_Void(); + if (alloc2 == SWIG_NEWOBJ) free((char*)buf2); + return resultobj; +fail: + if (alloc2 == SWIG_NEWOBJ) free((char*)buf2); + return NULL; +} + + +SWIGINTERN PyObject *_wrap_main(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + int result; + + if (!PyArg_ParseTuple(args,(char *)":main")) SWIG_fail; + result = (int)main(); + resultobj = SWIG_From_int((int)(result)); + return resultobj; +fail: + return NULL; +} + + +static PyMethodDef SwigMethods[] = { + { (char *)"SWIG_PyInstanceMethod_New", (PyCFunction)SWIG_PyInstanceMethod_New, METH_O, NULL}, + { (char *)"file_report_width_set", _wrap_file_report_width_set, METH_VARARGS, NULL}, + { (char *)"file_report_width_get", _wrap_file_report_width_get, METH_VARARGS, NULL}, + { (char *)"file_report_height_set", _wrap_file_report_height_set, METH_VARARGS, NULL}, + { (char *)"file_report_height_get", _wrap_file_report_height_get, METH_VARARGS, NULL}, + { (char *)"file_report_aspect_ratio_set", _wrap_file_report_aspect_ratio_set, METH_VARARGS, NULL}, + { (char *)"file_report_aspect_ratio_get", _wrap_file_report_aspect_ratio_get, METH_VARARGS, NULL}, + { (char *)"file_report_frame_rate_set", _wrap_file_report_frame_rate_set, METH_VARARGS, NULL}, + { (char *)"file_report_frame_rate_get", _wrap_file_report_frame_rate_get, METH_VARARGS, NULL}, + { (char *)"file_report_data_from_608_set", _wrap_file_report_data_from_608_set, METH_VARARGS, NULL}, + { (char *)"file_report_data_from_608_get", _wrap_file_report_data_from_608_get, METH_VARARGS, NULL}, + { (char *)"file_report_data_from_708_set", _wrap_file_report_data_from_708_set, METH_VARARGS, NULL}, + { (char *)"file_report_data_from_708_get", _wrap_file_report_data_from_708_get, METH_VARARGS, NULL}, + { (char *)"file_report_mp4_cc_track_cnt_set", _wrap_file_report_mp4_cc_track_cnt_set, METH_VARARGS, NULL}, + { (char *)"file_report_mp4_cc_track_cnt_get", _wrap_file_report_mp4_cc_track_cnt_get, METH_VARARGS, NULL}, + { (char *)"new_file_report", _wrap_new_file_report, METH_VARARGS, NULL}, + { (char *)"delete_file_report", _wrap_delete_file_report, METH_VARARGS, NULL}, + { (char *)"file_report_swigregister", file_report_swigregister, METH_VARARGS, NULL}, + { (char *)"ccx_s_teletext_config_verbose_set", _wrap_ccx_s_teletext_config_verbose_set, METH_VARARGS, NULL}, + { (char *)"ccx_s_teletext_config_verbose_get", _wrap_ccx_s_teletext_config_verbose_get, METH_VARARGS, NULL}, + { (char *)"ccx_s_teletext_config_page_set", _wrap_ccx_s_teletext_config_page_set, METH_VARARGS, NULL}, + { (char *)"ccx_s_teletext_config_page_get", _wrap_ccx_s_teletext_config_page_get, METH_VARARGS, NULL}, + { (char *)"ccx_s_teletext_config_tid_set", _wrap_ccx_s_teletext_config_tid_set, METH_VARARGS, NULL}, + { (char *)"ccx_s_teletext_config_tid_get", _wrap_ccx_s_teletext_config_tid_get, METH_VARARGS, NULL}, + { (char *)"ccx_s_teletext_config_offset_set", _wrap_ccx_s_teletext_config_offset_set, METH_VARARGS, NULL}, + { (char *)"ccx_s_teletext_config_offset_get", _wrap_ccx_s_teletext_config_offset_get, METH_VARARGS, NULL}, + { (char *)"ccx_s_teletext_config_bom_set", _wrap_ccx_s_teletext_config_bom_set, METH_VARARGS, NULL}, + { (char *)"ccx_s_teletext_config_bom_get", _wrap_ccx_s_teletext_config_bom_get, METH_VARARGS, NULL}, + { (char *)"ccx_s_teletext_config_nonempty_set", _wrap_ccx_s_teletext_config_nonempty_set, METH_VARARGS, NULL}, + { (char *)"ccx_s_teletext_config_nonempty_get", _wrap_ccx_s_teletext_config_nonempty_get, METH_VARARGS, NULL}, + { (char *)"ccx_s_teletext_config_user_page_set", _wrap_ccx_s_teletext_config_user_page_set, METH_VARARGS, NULL}, + { (char *)"ccx_s_teletext_config_user_page_get", _wrap_ccx_s_teletext_config_user_page_get, METH_VARARGS, NULL}, + { (char *)"ccx_s_teletext_config_levdistmincnt_set", _wrap_ccx_s_teletext_config_levdistmincnt_set, METH_VARARGS, NULL}, + { (char *)"ccx_s_teletext_config_levdistmincnt_get", _wrap_ccx_s_teletext_config_levdistmincnt_get, METH_VARARGS, NULL}, + { (char *)"ccx_s_teletext_config_levdistmaxpct_set", _wrap_ccx_s_teletext_config_levdistmaxpct_set, METH_VARARGS, NULL}, + { (char *)"ccx_s_teletext_config_levdistmaxpct_get", _wrap_ccx_s_teletext_config_levdistmaxpct_get, METH_VARARGS, NULL}, + { (char *)"ccx_s_teletext_config_extraction_start_set", _wrap_ccx_s_teletext_config_extraction_start_set, METH_VARARGS, NULL}, + { (char *)"ccx_s_teletext_config_extraction_start_get", _wrap_ccx_s_teletext_config_extraction_start_get, METH_VARARGS, NULL}, + { (char *)"ccx_s_teletext_config_extraction_end_set", _wrap_ccx_s_teletext_config_extraction_end_set, METH_VARARGS, NULL}, + { (char *)"ccx_s_teletext_config_extraction_end_get", _wrap_ccx_s_teletext_config_extraction_end_get, METH_VARARGS, NULL}, + { (char *)"ccx_s_teletext_config_write_format_set", _wrap_ccx_s_teletext_config_write_format_set, METH_VARARGS, NULL}, + { (char *)"ccx_s_teletext_config_write_format_get", _wrap_ccx_s_teletext_config_write_format_get, METH_VARARGS, NULL}, + { (char *)"ccx_s_teletext_config_gui_mode_reports_set", _wrap_ccx_s_teletext_config_gui_mode_reports_set, METH_VARARGS, NULL}, + { (char *)"ccx_s_teletext_config_gui_mode_reports_get", _wrap_ccx_s_teletext_config_gui_mode_reports_get, METH_VARARGS, NULL}, + { (char *)"ccx_s_teletext_config_date_format_set", _wrap_ccx_s_teletext_config_date_format_set, METH_VARARGS, NULL}, + { (char *)"ccx_s_teletext_config_date_format_get", _wrap_ccx_s_teletext_config_date_format_get, METH_VARARGS, NULL}, + { (char *)"ccx_s_teletext_config_noautotimeref_set", _wrap_ccx_s_teletext_config_noautotimeref_set, METH_VARARGS, NULL}, + { (char *)"ccx_s_teletext_config_noautotimeref_get", _wrap_ccx_s_teletext_config_noautotimeref_get, METH_VARARGS, NULL}, + { (char *)"ccx_s_teletext_config_send_to_srv_set", _wrap_ccx_s_teletext_config_send_to_srv_set, METH_VARARGS, NULL}, + { (char *)"ccx_s_teletext_config_send_to_srv_get", _wrap_ccx_s_teletext_config_send_to_srv_get, METH_VARARGS, NULL}, + { (char *)"ccx_s_teletext_config_encoding_set", _wrap_ccx_s_teletext_config_encoding_set, METH_VARARGS, NULL}, + { (char *)"ccx_s_teletext_config_encoding_get", _wrap_ccx_s_teletext_config_encoding_get, METH_VARARGS, NULL}, + { (char *)"ccx_s_teletext_config_nofontcolor_set", _wrap_ccx_s_teletext_config_nofontcolor_set, METH_VARARGS, NULL}, + { (char *)"ccx_s_teletext_config_nofontcolor_get", _wrap_ccx_s_teletext_config_nofontcolor_get, METH_VARARGS, NULL}, + { (char *)"ccx_s_teletext_config_nohtmlescape_set", _wrap_ccx_s_teletext_config_nohtmlescape_set, METH_VARARGS, NULL}, + { (char *)"ccx_s_teletext_config_nohtmlescape_get", _wrap_ccx_s_teletext_config_nohtmlescape_get, METH_VARARGS, NULL}, + { (char *)"ccx_s_teletext_config_millis_separator_set", _wrap_ccx_s_teletext_config_millis_separator_set, METH_VARARGS, NULL}, + { (char *)"ccx_s_teletext_config_millis_separator_get", _wrap_ccx_s_teletext_config_millis_separator_get, METH_VARARGS, NULL}, + { (char *)"new_ccx_s_teletext_config", _wrap_new_ccx_s_teletext_config, METH_VARARGS, NULL}, + { (char *)"delete_ccx_s_teletext_config", _wrap_delete_ccx_s_teletext_config, METH_VARARGS, NULL}, + { (char *)"ccx_s_teletext_config_swigregister", ccx_s_teletext_config_swigregister, METH_VARARGS, NULL}, + { (char *)"ccx_s_mp4Cfg_mp4vidtrack_set", _wrap_ccx_s_mp4Cfg_mp4vidtrack_set, METH_VARARGS, NULL}, + { (char *)"ccx_s_mp4Cfg_mp4vidtrack_get", _wrap_ccx_s_mp4Cfg_mp4vidtrack_get, METH_VARARGS, NULL}, + { (char *)"new_ccx_s_mp4Cfg", _wrap_new_ccx_s_mp4Cfg, METH_VARARGS, NULL}, + { (char *)"delete_ccx_s_mp4Cfg", _wrap_delete_ccx_s_mp4Cfg, METH_VARARGS, NULL}, + { (char *)"ccx_s_mp4Cfg_swigregister", ccx_s_mp4Cfg_swigregister, METH_VARARGS, NULL}, + { (char *)"lib_ccx_ctx_pesheaderbuf_set", _wrap_lib_ccx_ctx_pesheaderbuf_set, METH_VARARGS, NULL}, + { (char *)"lib_ccx_ctx_pesheaderbuf_get", _wrap_lib_ccx_ctx_pesheaderbuf_get, METH_VARARGS, NULL}, + { (char *)"lib_ccx_ctx_inputsize_set", _wrap_lib_ccx_ctx_inputsize_set, METH_VARARGS, NULL}, + { (char *)"lib_ccx_ctx_inputsize_get", _wrap_lib_ccx_ctx_inputsize_get, METH_VARARGS, NULL}, + { (char *)"lib_ccx_ctx_total_inputsize_set", _wrap_lib_ccx_ctx_total_inputsize_set, METH_VARARGS, NULL}, + { (char *)"lib_ccx_ctx_total_inputsize_get", _wrap_lib_ccx_ctx_total_inputsize_get, METH_VARARGS, NULL}, + { (char *)"lib_ccx_ctx_total_past_set", _wrap_lib_ccx_ctx_total_past_set, METH_VARARGS, NULL}, + { (char *)"lib_ccx_ctx_total_past_get", _wrap_lib_ccx_ctx_total_past_get, METH_VARARGS, NULL}, + { (char *)"lib_ccx_ctx_last_reported_progress_set", _wrap_lib_ccx_ctx_last_reported_progress_set, METH_VARARGS, NULL}, + { (char *)"lib_ccx_ctx_last_reported_progress_get", _wrap_lib_ccx_ctx_last_reported_progress_get, METH_VARARGS, NULL}, + { (char *)"lib_ccx_ctx_stat_numuserheaders_set", _wrap_lib_ccx_ctx_stat_numuserheaders_set, METH_VARARGS, NULL}, + { (char *)"lib_ccx_ctx_stat_numuserheaders_get", _wrap_lib_ccx_ctx_stat_numuserheaders_get, METH_VARARGS, NULL}, + { (char *)"lib_ccx_ctx_stat_dvdccheaders_set", _wrap_lib_ccx_ctx_stat_dvdccheaders_set, METH_VARARGS, NULL}, + { (char *)"lib_ccx_ctx_stat_dvdccheaders_get", _wrap_lib_ccx_ctx_stat_dvdccheaders_get, METH_VARARGS, NULL}, + { (char *)"lib_ccx_ctx_stat_scte20ccheaders_set", _wrap_lib_ccx_ctx_stat_scte20ccheaders_set, METH_VARARGS, NULL}, + { (char *)"lib_ccx_ctx_stat_scte20ccheaders_get", _wrap_lib_ccx_ctx_stat_scte20ccheaders_get, METH_VARARGS, NULL}, + { (char *)"lib_ccx_ctx_stat_replay5000headers_set", _wrap_lib_ccx_ctx_stat_replay5000headers_set, METH_VARARGS, NULL}, + { (char *)"lib_ccx_ctx_stat_replay5000headers_get", _wrap_lib_ccx_ctx_stat_replay5000headers_get, METH_VARARGS, NULL}, + { (char *)"lib_ccx_ctx_stat_replay4000headers_set", _wrap_lib_ccx_ctx_stat_replay4000headers_set, METH_VARARGS, NULL}, + { (char *)"lib_ccx_ctx_stat_replay4000headers_get", _wrap_lib_ccx_ctx_stat_replay4000headers_get, METH_VARARGS, NULL}, + { (char *)"lib_ccx_ctx_stat_dishheaders_set", _wrap_lib_ccx_ctx_stat_dishheaders_set, METH_VARARGS, NULL}, + { (char *)"lib_ccx_ctx_stat_dishheaders_get", _wrap_lib_ccx_ctx_stat_dishheaders_get, METH_VARARGS, NULL}, + { (char *)"lib_ccx_ctx_stat_hdtv_set", _wrap_lib_ccx_ctx_stat_hdtv_set, METH_VARARGS, NULL}, + { (char *)"lib_ccx_ctx_stat_hdtv_get", _wrap_lib_ccx_ctx_stat_hdtv_get, METH_VARARGS, NULL}, + { (char *)"lib_ccx_ctx_stat_divicom_set", _wrap_lib_ccx_ctx_stat_divicom_set, METH_VARARGS, NULL}, + { (char *)"lib_ccx_ctx_stat_divicom_get", _wrap_lib_ccx_ctx_stat_divicom_get, METH_VARARGS, NULL}, + { (char *)"lib_ccx_ctx_false_pict_header_set", _wrap_lib_ccx_ctx_false_pict_header_set, METH_VARARGS, NULL}, + { (char *)"lib_ccx_ctx_false_pict_header_get", _wrap_lib_ccx_ctx_false_pict_header_get, METH_VARARGS, NULL}, + { (char *)"lib_ccx_ctx_dec_global_setting_set", _wrap_lib_ccx_ctx_dec_global_setting_set, METH_VARARGS, NULL}, + { (char *)"lib_ccx_ctx_dec_global_setting_get", _wrap_lib_ccx_ctx_dec_global_setting_get, METH_VARARGS, NULL}, + { (char *)"lib_ccx_ctx_dec_ctx_head_set", _wrap_lib_ccx_ctx_dec_ctx_head_set, METH_VARARGS, NULL}, + { (char *)"lib_ccx_ctx_dec_ctx_head_get", _wrap_lib_ccx_ctx_dec_ctx_head_get, METH_VARARGS, NULL}, + { (char *)"lib_ccx_ctx_rawmode_set", _wrap_lib_ccx_ctx_rawmode_set, METH_VARARGS, NULL}, + { (char *)"lib_ccx_ctx_rawmode_get", _wrap_lib_ccx_ctx_rawmode_get, METH_VARARGS, NULL}, + { (char *)"lib_ccx_ctx_cc_to_stdout_set", _wrap_lib_ccx_ctx_cc_to_stdout_set, METH_VARARGS, NULL}, + { (char *)"lib_ccx_ctx_cc_to_stdout_get", _wrap_lib_ccx_ctx_cc_to_stdout_get, METH_VARARGS, NULL}, + { (char *)"lib_ccx_ctx_pes_header_to_stdout_set", _wrap_lib_ccx_ctx_pes_header_to_stdout_set, METH_VARARGS, NULL}, + { (char *)"lib_ccx_ctx_pes_header_to_stdout_get", _wrap_lib_ccx_ctx_pes_header_to_stdout_get, METH_VARARGS, NULL}, + { (char *)"lib_ccx_ctx_dvb_debug_traces_to_stdout_set", _wrap_lib_ccx_ctx_dvb_debug_traces_to_stdout_set, METH_VARARGS, NULL}, + { (char *)"lib_ccx_ctx_dvb_debug_traces_to_stdout_get", _wrap_lib_ccx_ctx_dvb_debug_traces_to_stdout_get, METH_VARARGS, NULL}, + { (char *)"lib_ccx_ctx_ignore_pts_jumps_set", _wrap_lib_ccx_ctx_ignore_pts_jumps_set, METH_VARARGS, NULL}, + { (char *)"lib_ccx_ctx_ignore_pts_jumps_get", _wrap_lib_ccx_ctx_ignore_pts_jumps_get, METH_VARARGS, NULL}, + { (char *)"lib_ccx_ctx_subs_delay_set", _wrap_lib_ccx_ctx_subs_delay_set, METH_VARARGS, NULL}, + { (char *)"lib_ccx_ctx_subs_delay_get", _wrap_lib_ccx_ctx_subs_delay_get, METH_VARARGS, NULL}, + { (char *)"lib_ccx_ctx_startcredits_displayed_set", _wrap_lib_ccx_ctx_startcredits_displayed_set, METH_VARARGS, NULL}, + { (char *)"lib_ccx_ctx_startcredits_displayed_get", _wrap_lib_ccx_ctx_startcredits_displayed_get, METH_VARARGS, NULL}, + { (char *)"lib_ccx_ctx_end_credits_displayed_set", _wrap_lib_ccx_ctx_end_credits_displayed_set, METH_VARARGS, NULL}, + { (char *)"lib_ccx_ctx_end_credits_displayed_get", _wrap_lib_ccx_ctx_end_credits_displayed_get, METH_VARARGS, NULL}, + { (char *)"lib_ccx_ctx_last_displayed_subs_ms_set", _wrap_lib_ccx_ctx_last_displayed_subs_ms_set, METH_VARARGS, NULL}, + { (char *)"lib_ccx_ctx_last_displayed_subs_ms_get", _wrap_lib_ccx_ctx_last_displayed_subs_ms_get, METH_VARARGS, NULL}, + { (char *)"lib_ccx_ctx_screens_to_process_set", _wrap_lib_ccx_ctx_screens_to_process_set, METH_VARARGS, NULL}, + { (char *)"lib_ccx_ctx_screens_to_process_get", _wrap_lib_ccx_ctx_screens_to_process_get, METH_VARARGS, NULL}, + { (char *)"lib_ccx_ctx_basefilename_set", _wrap_lib_ccx_ctx_basefilename_set, METH_VARARGS, NULL}, + { (char *)"lib_ccx_ctx_basefilename_get", _wrap_lib_ccx_ctx_basefilename_get, METH_VARARGS, NULL}, + { (char *)"lib_ccx_ctx_extension_set", _wrap_lib_ccx_ctx_extension_set, METH_VARARGS, NULL}, + { (char *)"lib_ccx_ctx_extension_get", _wrap_lib_ccx_ctx_extension_get, METH_VARARGS, NULL}, + { (char *)"lib_ccx_ctx_current_file_set", _wrap_lib_ccx_ctx_current_file_set, METH_VARARGS, NULL}, + { (char *)"lib_ccx_ctx_current_file_get", _wrap_lib_ccx_ctx_current_file_get, METH_VARARGS, NULL}, + { (char *)"lib_ccx_ctx_inputfile_set", _wrap_lib_ccx_ctx_inputfile_set, METH_VARARGS, NULL}, + { (char *)"lib_ccx_ctx_inputfile_get", _wrap_lib_ccx_ctx_inputfile_get, METH_VARARGS, NULL}, + { (char *)"lib_ccx_ctx_num_input_files_set", _wrap_lib_ccx_ctx_num_input_files_set, METH_VARARGS, NULL}, + { (char *)"lib_ccx_ctx_num_input_files_get", _wrap_lib_ccx_ctx_num_input_files_get, METH_VARARGS, NULL}, + { (char *)"lib_ccx_ctx_teletext_warning_shown_set", _wrap_lib_ccx_ctx_teletext_warning_shown_set, METH_VARARGS, NULL}, + { (char *)"lib_ccx_ctx_teletext_warning_shown_get", _wrap_lib_ccx_ctx_teletext_warning_shown_get, METH_VARARGS, NULL}, + { (char *)"lib_ccx_ctx_epg_inited_set", _wrap_lib_ccx_ctx_epg_inited_set, METH_VARARGS, NULL}, + { (char *)"lib_ccx_ctx_epg_inited_get", _wrap_lib_ccx_ctx_epg_inited_get, METH_VARARGS, NULL}, + { (char *)"lib_ccx_ctx_epg_buffers_set", _wrap_lib_ccx_ctx_epg_buffers_set, METH_VARARGS, NULL}, + { (char *)"lib_ccx_ctx_epg_buffers_get", _wrap_lib_ccx_ctx_epg_buffers_get, METH_VARARGS, NULL}, + { (char *)"lib_ccx_ctx_eit_programs_set", _wrap_lib_ccx_ctx_eit_programs_set, METH_VARARGS, NULL}, + { (char *)"lib_ccx_ctx_eit_programs_get", _wrap_lib_ccx_ctx_eit_programs_get, METH_VARARGS, NULL}, + { (char *)"lib_ccx_ctx_eit_current_events_set", _wrap_lib_ccx_ctx_eit_current_events_set, METH_VARARGS, NULL}, + { (char *)"lib_ccx_ctx_eit_current_events_get", _wrap_lib_ccx_ctx_eit_current_events_get, METH_VARARGS, NULL}, + { (char *)"lib_ccx_ctx_ATSC_source_pg_map_set", _wrap_lib_ccx_ctx_ATSC_source_pg_map_set, METH_VARARGS, NULL}, + { (char *)"lib_ccx_ctx_ATSC_source_pg_map_get", _wrap_lib_ccx_ctx_ATSC_source_pg_map_get, METH_VARARGS, NULL}, + { (char *)"lib_ccx_ctx_epg_last_output_set", _wrap_lib_ccx_ctx_epg_last_output_set, METH_VARARGS, NULL}, + { (char *)"lib_ccx_ctx_epg_last_output_get", _wrap_lib_ccx_ctx_epg_last_output_get, METH_VARARGS, NULL}, + { (char *)"lib_ccx_ctx_epg_last_live_output_set", _wrap_lib_ccx_ctx_epg_last_live_output_set, METH_VARARGS, NULL}, + { (char *)"lib_ccx_ctx_epg_last_live_output_get", _wrap_lib_ccx_ctx_epg_last_live_output_get, METH_VARARGS, NULL}, + { (char *)"lib_ccx_ctx_freport_set", _wrap_lib_ccx_ctx_freport_set, METH_VARARGS, NULL}, + { (char *)"lib_ccx_ctx_freport_get", _wrap_lib_ccx_ctx_freport_get, METH_VARARGS, NULL}, + { (char *)"lib_ccx_ctx_hauppauge_mode_set", _wrap_lib_ccx_ctx_hauppauge_mode_set, METH_VARARGS, NULL}, + { (char *)"lib_ccx_ctx_hauppauge_mode_get", _wrap_lib_ccx_ctx_hauppauge_mode_get, METH_VARARGS, NULL}, + { (char *)"lib_ccx_ctx_live_stream_set", _wrap_lib_ccx_ctx_live_stream_set, METH_VARARGS, NULL}, + { (char *)"lib_ccx_ctx_live_stream_get", _wrap_lib_ccx_ctx_live_stream_get, METH_VARARGS, NULL}, + { (char *)"lib_ccx_ctx_binary_concat_set", _wrap_lib_ccx_ctx_binary_concat_set, METH_VARARGS, NULL}, + { (char *)"lib_ccx_ctx_binary_concat_get", _wrap_lib_ccx_ctx_binary_concat_get, METH_VARARGS, NULL}, + { (char *)"lib_ccx_ctx_multiprogram_set", _wrap_lib_ccx_ctx_multiprogram_set, METH_VARARGS, NULL}, + { (char *)"lib_ccx_ctx_multiprogram_get", _wrap_lib_ccx_ctx_multiprogram_get, METH_VARARGS, NULL}, + { (char *)"lib_ccx_ctx_write_format_set", _wrap_lib_ccx_ctx_write_format_set, METH_VARARGS, NULL}, + { (char *)"lib_ccx_ctx_write_format_get", _wrap_lib_ccx_ctx_write_format_get, METH_VARARGS, NULL}, + { (char *)"lib_ccx_ctx_demux_ctx_set", _wrap_lib_ccx_ctx_demux_ctx_set, METH_VARARGS, NULL}, + { (char *)"lib_ccx_ctx_demux_ctx_get", _wrap_lib_ccx_ctx_demux_ctx_get, METH_VARARGS, NULL}, + { (char *)"lib_ccx_ctx_enc_ctx_head_set", _wrap_lib_ccx_ctx_enc_ctx_head_set, METH_VARARGS, NULL}, + { (char *)"lib_ccx_ctx_enc_ctx_head_get", _wrap_lib_ccx_ctx_enc_ctx_head_get, METH_VARARGS, NULL}, + { (char *)"lib_ccx_ctx_mp4_cfg_set", _wrap_lib_ccx_ctx_mp4_cfg_set, METH_VARARGS, NULL}, + { (char *)"lib_ccx_ctx_mp4_cfg_get", _wrap_lib_ccx_ctx_mp4_cfg_get, METH_VARARGS, NULL}, + { (char *)"lib_ccx_ctx_out_interval_set", _wrap_lib_ccx_ctx_out_interval_set, METH_VARARGS, NULL}, + { (char *)"lib_ccx_ctx_out_interval_get", _wrap_lib_ccx_ctx_out_interval_get, METH_VARARGS, NULL}, + { (char *)"lib_ccx_ctx_segment_counter_set", _wrap_lib_ccx_ctx_segment_counter_set, METH_VARARGS, NULL}, + { (char *)"lib_ccx_ctx_segment_counter_get", _wrap_lib_ccx_ctx_segment_counter_get, METH_VARARGS, NULL}, + { (char *)"lib_ccx_ctx_system_start_time_set", _wrap_lib_ccx_ctx_system_start_time_set, METH_VARARGS, NULL}, + { (char *)"lib_ccx_ctx_system_start_time_get", _wrap_lib_ccx_ctx_system_start_time_get, METH_VARARGS, NULL}, + { (char *)"new_lib_ccx_ctx", _wrap_new_lib_ccx_ctx, METH_VARARGS, NULL}, + { (char *)"delete_lib_ccx_ctx", _wrap_delete_lib_ccx_ctx, METH_VARARGS, NULL}, + { (char *)"lib_ccx_ctx_swigregister", lib_ccx_ctx_swigregister, METH_VARARGS, NULL}, + { (char *)"init_libraries", _wrap_init_libraries, METH_VARARGS, NULL}, + { (char *)"dinit_libraries", _wrap_dinit_libraries, METH_VARARGS, NULL}, + { (char *)"print_end_msg", _wrap_print_end_msg, METH_VARARGS, NULL}, + { (char *)"parse_parameters", _wrap_parse_parameters, METH_VARARGS, NULL}, + { (char *)"print_usage", _wrap_print_usage, METH_VARARGS, NULL}, + { (char *)"detect_input_file_overwrite", _wrap_detect_input_file_overwrite, METH_VARARGS, NULL}, + { (char *)"atoi_hex", _wrap_atoi_hex, METH_VARARGS, NULL}, + { (char *)"stringztoms", _wrap_stringztoms, METH_VARARGS, NULL}, + { (char *)"position_sanity_check", _wrap_position_sanity_check, METH_VARARGS, NULL}, + { (char *)"init_file_buffer", _wrap_init_file_buffer, METH_VARARGS, NULL}, + { (char *)"ps_get_more_data", _wrap_ps_get_more_data, METH_VARARGS, NULL}, + { (char *)"general_get_more_data", _wrap_general_get_more_data, METH_VARARGS, NULL}, + { (char *)"raw_loop", _wrap_raw_loop, METH_VARARGS, NULL}, + { (char *)"process_raw", _wrap_process_raw, METH_VARARGS, NULL}, + { (char *)"general_loop", _wrap_general_loop, METH_VARARGS, NULL}, + { (char *)"process_hex", _wrap_process_hex, METH_VARARGS, NULL}, + { (char *)"rcwt_loop", _wrap_rcwt_loop, METH_VARARGS, NULL}, + { (char *)"asf_get_more_data", _wrap_asf_get_more_data, METH_VARARGS, NULL}, + { (char *)"wtv_get_more_data", _wrap_wtv_get_more_data, METH_VARARGS, NULL}, + { (char *)"process_m2v", _wrap_process_m2v, METH_VARARGS, NULL}, + { (char *)"user_data", _wrap_user_data, METH_VARARGS, NULL}, + { (char *)"get_file_size", _wrap_get_file_size, METH_VARARGS, NULL}, + { (char *)"get_total_file_size", _wrap_get_total_file_size, METH_VARARGS, NULL}, + { (char *)"prepare_for_new_file", _wrap_prepare_for_new_file, METH_VARARGS, NULL}, + { (char *)"close_input_file", _wrap_close_input_file, METH_VARARGS, NULL}, + { (char *)"switch_to_next_file", _wrap_switch_to_next_file, METH_VARARGS, NULL}, + { (char *)"return_to_buffer", _wrap_return_to_buffer, METH_VARARGS, NULL}, + { (char *)"init_hdcc", _wrap_init_hdcc, METH_VARARGS, NULL}, + { (char *)"store_hdcc", _wrap_store_hdcc, METH_VARARGS, NULL}, + { (char *)"anchor_hdcc", _wrap_anchor_hdcc, METH_VARARGS, NULL}, + { (char *)"process_hdcc", _wrap_process_hdcc, METH_VARARGS, NULL}, + { (char *)"params_dump", _wrap_params_dump, METH_VARARGS, NULL}, + { (char *)"print_file_report", _wrap_print_file_report, METH_VARARGS, NULL}, + { (char *)"dinit_write", _wrap_dinit_write, METH_VARARGS, NULL}, + { (char *)"temporarily_open_output", _wrap_temporarily_open_output, METH_VARARGS, NULL}, + { (char *)"temporarily_close_output", _wrap_temporarily_close_output, METH_VARARGS, NULL}, + { (char *)"init_write", _wrap_init_write, METH_VARARGS, NULL}, + { (char *)"writeraw", _wrap_writeraw, METH_VARARGS, NULL}, + { (char *)"flushbuffer", _wrap_flushbuffer, METH_VARARGS, NULL}, + { (char *)"writercwtdata", _wrap_writercwtdata, METH_VARARGS, NULL}, + { (char *)"isValidMP4Box", _wrap_isValidMP4Box, METH_VARARGS, NULL}, + { (char *)"detect_stream_type", _wrap_detect_stream_type, METH_VARARGS, NULL}, + { (char *)"detect_myth", _wrap_detect_myth, METH_VARARGS, NULL}, + { (char *)"read_video_pes_header", _wrap_read_video_pes_header, METH_VARARGS, NULL}, + { (char *)"init_ts", _wrap_init_ts, METH_VARARGS, NULL}, + { (char *)"ts_readpacket", _wrap_ts_readpacket, METH_VARARGS, NULL}, + { (char *)"ts_readstream", _wrap_ts_readstream, METH_VARARGS, NULL}, + { (char *)"ts_get_more_data", _wrap_ts_get_more_data, METH_VARARGS, NULL}, + { (char *)"write_section", _wrap_write_section, METH_VARARGS, NULL}, + { (char *)"ts_buffer_psi_packet", _wrap_ts_buffer_psi_packet, METH_VARARGS, NULL}, + { (char *)"parse_PMT", _wrap_parse_PMT, METH_VARARGS, NULL}, + { (char *)"parse_PAT", _wrap_parse_PAT, METH_VARARGS, NULL}, + { (char *)"parse_EPG_packet", _wrap_parse_EPG_packet, METH_VARARGS, NULL}, + { (char *)"EPG_free", _wrap_EPG_free, METH_VARARGS, NULL}, + { (char *)"EPG_DVB_decode_string", _wrap_EPG_DVB_decode_string, METH_VARARGS, NULL}, + { (char *)"parse_SDT", _wrap_parse_SDT, METH_VARARGS, NULL}, + { (char *)"myth_loop", _wrap_myth_loop, METH_VARARGS, NULL}, + { (char *)"matroska_loop", _wrap_matroska_loop, METH_VARARGS, NULL}, + { (char *)"fatal", _wrap_fatal, METH_VARARGS, NULL}, + { (char *)"mprint", _wrap_mprint, METH_VARARGS, NULL}, + { (char *)"sleep_secs", _wrap_sleep_secs, METH_VARARGS, NULL}, + { (char *)"dump", _wrap_dump, METH_VARARGS, NULL}, + { (char *)"in_array", _wrap_in_array, METH_VARARGS, NULL}, + { (char *)"hex_to_int", _wrap_hex_to_int, METH_VARARGS, NULL}, + { (char *)"hex_string_to_int", _wrap_hex_string_to_int, METH_VARARGS, NULL}, + { (char *)"timestamp_to_srttime", _wrap_timestamp_to_srttime, METH_VARARGS, NULL}, + { (char *)"levenshtein_dist", _wrap_levenshtein_dist, METH_VARARGS, NULL}, + { (char *)"millis_to_date", _wrap_millis_to_date, METH_VARARGS, NULL}, + { (char *)"signal_handler", _wrap_signal_handler, METH_VARARGS, NULL}, + { (char *)"change_filename", _wrap_change_filename, METH_VARARGS, NULL}, + { (char *)"m_signal", _wrap_m_signal, METH_VARARGS, NULL}, + { (char *)"buffered_seek", _wrap_buffered_seek, METH_VARARGS, NULL}, + { (char *)"build_parity_table", _wrap_build_parity_table, METH_VARARGS, NULL}, + { (char *)"tlt_process_pes_packet", _wrap_tlt_process_pes_packet, METH_VARARGS, NULL}, + { (char *)"telxcc_init", _wrap_telxcc_init, METH_VARARGS, NULL}, + { (char *)"telxcc_close", _wrap_telxcc_close, METH_VARARGS, NULL}, + { (char *)"tlt_read_rcwt", _wrap_tlt_read_rcwt, METH_VARARGS, NULL}, + { (char *)"telxcc_configure", _wrap_telxcc_configure, METH_VARARGS, NULL}, + { (char *)"telxcc_update_gt", _wrap_telxcc_update_gt, METH_VARARGS, NULL}, + { (char *)"is_decoder_processed_enough", _wrap_is_decoder_processed_enough, METH_VARARGS, NULL}, + { (char *)"update_decoder_list_cinfo", _wrap_update_decoder_list_cinfo, METH_VARARGS, NULL}, + { (char *)"update_decoder_list", _wrap_update_decoder_list, METH_VARARGS, NULL}, + { (char *)"update_encoder_list_cinfo", _wrap_update_encoder_list_cinfo, METH_VARARGS, NULL}, + { (char *)"update_encoder_list", _wrap_update_encoder_list, METH_VARARGS, NULL}, + { (char *)"get_encoder_by_pn", _wrap_get_encoder_by_pn, METH_VARARGS, NULL}, + { (char *)"parse_configuration", _wrap_parse_configuration, METH_VARARGS, NULL}, + { (char *)"demuxer_cfg_m2ts_set", _wrap_demuxer_cfg_m2ts_set, METH_VARARGS, NULL}, + { (char *)"demuxer_cfg_m2ts_get", _wrap_demuxer_cfg_m2ts_get, METH_VARARGS, NULL}, + { (char *)"demuxer_cfg_auto_stream_set", _wrap_demuxer_cfg_auto_stream_set, METH_VARARGS, NULL}, + { (char *)"demuxer_cfg_auto_stream_get", _wrap_demuxer_cfg_auto_stream_get, METH_VARARGS, NULL}, + { (char *)"demuxer_cfg_out_elementarystream_filename_set", _wrap_demuxer_cfg_out_elementarystream_filename_set, METH_VARARGS, NULL}, + { (char *)"demuxer_cfg_out_elementarystream_filename_get", _wrap_demuxer_cfg_out_elementarystream_filename_get, METH_VARARGS, NULL}, + { (char *)"demuxer_cfg_codec_set", _wrap_demuxer_cfg_codec_set, METH_VARARGS, NULL}, + { (char *)"demuxer_cfg_codec_get", _wrap_demuxer_cfg_codec_get, METH_VARARGS, NULL}, + { (char *)"demuxer_cfg_nocodec_set", _wrap_demuxer_cfg_nocodec_set, METH_VARARGS, NULL}, + { (char *)"demuxer_cfg_nocodec_get", _wrap_demuxer_cfg_nocodec_get, METH_VARARGS, NULL}, + { (char *)"demuxer_cfg_ts_autoprogram_set", _wrap_demuxer_cfg_ts_autoprogram_set, METH_VARARGS, NULL}, + { (char *)"demuxer_cfg_ts_autoprogram_get", _wrap_demuxer_cfg_ts_autoprogram_get, METH_VARARGS, NULL}, + { (char *)"demuxer_cfg_ts_allprogram_set", _wrap_demuxer_cfg_ts_allprogram_set, METH_VARARGS, NULL}, + { (char *)"demuxer_cfg_ts_allprogram_get", _wrap_demuxer_cfg_ts_allprogram_get, METH_VARARGS, NULL}, + { (char *)"demuxer_cfg_ts_cappids_set", _wrap_demuxer_cfg_ts_cappids_set, METH_VARARGS, NULL}, + { (char *)"demuxer_cfg_ts_cappids_get", _wrap_demuxer_cfg_ts_cappids_get, METH_VARARGS, NULL}, + { (char *)"demuxer_cfg_nb_ts_cappid_set", _wrap_demuxer_cfg_nb_ts_cappid_set, METH_VARARGS, NULL}, + { (char *)"demuxer_cfg_nb_ts_cappid_get", _wrap_demuxer_cfg_nb_ts_cappid_get, METH_VARARGS, NULL}, + { (char *)"demuxer_cfg_ts_forced_cappid_set", _wrap_demuxer_cfg_ts_forced_cappid_set, METH_VARARGS, NULL}, + { (char *)"demuxer_cfg_ts_forced_cappid_get", _wrap_demuxer_cfg_ts_forced_cappid_get, METH_VARARGS, NULL}, + { (char *)"demuxer_cfg_ts_forced_program_set", _wrap_demuxer_cfg_ts_forced_program_set, METH_VARARGS, NULL}, + { (char *)"demuxer_cfg_ts_forced_program_get", _wrap_demuxer_cfg_ts_forced_program_get, METH_VARARGS, NULL}, + { (char *)"demuxer_cfg_ts_forced_program_selected_set", _wrap_demuxer_cfg_ts_forced_program_selected_set, METH_VARARGS, NULL}, + { (char *)"demuxer_cfg_ts_forced_program_selected_get", _wrap_demuxer_cfg_ts_forced_program_selected_get, METH_VARARGS, NULL}, + { (char *)"demuxer_cfg_ts_datastreamtype_set", _wrap_demuxer_cfg_ts_datastreamtype_set, METH_VARARGS, NULL}, + { (char *)"demuxer_cfg_ts_datastreamtype_get", _wrap_demuxer_cfg_ts_datastreamtype_get, METH_VARARGS, NULL}, + { (char *)"demuxer_cfg_ts_forced_streamtype_set", _wrap_demuxer_cfg_ts_forced_streamtype_set, METH_VARARGS, NULL}, + { (char *)"demuxer_cfg_ts_forced_streamtype_get", _wrap_demuxer_cfg_ts_forced_streamtype_get, METH_VARARGS, NULL}, + { (char *)"new_demuxer_cfg", _wrap_new_demuxer_cfg, METH_VARARGS, NULL}, + { (char *)"delete_demuxer_cfg", _wrap_delete_demuxer_cfg, METH_VARARGS, NULL}, + { (char *)"demuxer_cfg_swigregister", demuxer_cfg_swigregister, METH_VARARGS, NULL}, + { (char *)"encoder_cfg_extract_set", _wrap_encoder_cfg_extract_set, METH_VARARGS, NULL}, + { (char *)"encoder_cfg_extract_get", _wrap_encoder_cfg_extract_get, METH_VARARGS, NULL}, + { (char *)"encoder_cfg_dtvcc_extract_set", _wrap_encoder_cfg_dtvcc_extract_set, METH_VARARGS, NULL}, + { (char *)"encoder_cfg_dtvcc_extract_get", _wrap_encoder_cfg_dtvcc_extract_get, METH_VARARGS, NULL}, + { (char *)"encoder_cfg_gui_mode_reports_set", _wrap_encoder_cfg_gui_mode_reports_set, METH_VARARGS, NULL}, + { (char *)"encoder_cfg_gui_mode_reports_get", _wrap_encoder_cfg_gui_mode_reports_get, METH_VARARGS, NULL}, + { (char *)"encoder_cfg_output_filename_set", _wrap_encoder_cfg_output_filename_set, METH_VARARGS, NULL}, + { (char *)"encoder_cfg_output_filename_get", _wrap_encoder_cfg_output_filename_get, METH_VARARGS, NULL}, + { (char *)"encoder_cfg_write_format_set", _wrap_encoder_cfg_write_format_set, METH_VARARGS, NULL}, + { (char *)"encoder_cfg_write_format_get", _wrap_encoder_cfg_write_format_get, METH_VARARGS, NULL}, + { (char *)"encoder_cfg_keep_output_closed_set", _wrap_encoder_cfg_keep_output_closed_set, METH_VARARGS, NULL}, + { (char *)"encoder_cfg_keep_output_closed_get", _wrap_encoder_cfg_keep_output_closed_get, METH_VARARGS, NULL}, + { (char *)"encoder_cfg_force_flush_set", _wrap_encoder_cfg_force_flush_set, METH_VARARGS, NULL}, + { (char *)"encoder_cfg_force_flush_get", _wrap_encoder_cfg_force_flush_get, METH_VARARGS, NULL}, + { (char *)"encoder_cfg_append_mode_set", _wrap_encoder_cfg_append_mode_set, METH_VARARGS, NULL}, + { (char *)"encoder_cfg_append_mode_get", _wrap_encoder_cfg_append_mode_get, METH_VARARGS, NULL}, + { (char *)"encoder_cfg_ucla_set", _wrap_encoder_cfg_ucla_set, METH_VARARGS, NULL}, + { (char *)"encoder_cfg_ucla_get", _wrap_encoder_cfg_ucla_get, METH_VARARGS, NULL}, + { (char *)"encoder_cfg_encoding_set", _wrap_encoder_cfg_encoding_set, METH_VARARGS, NULL}, + { (char *)"encoder_cfg_encoding_get", _wrap_encoder_cfg_encoding_get, METH_VARARGS, NULL}, + { (char *)"encoder_cfg_date_format_set", _wrap_encoder_cfg_date_format_set, METH_VARARGS, NULL}, + { (char *)"encoder_cfg_date_format_get", _wrap_encoder_cfg_date_format_get, METH_VARARGS, NULL}, + { (char *)"encoder_cfg_millis_separator_set", _wrap_encoder_cfg_millis_separator_set, METH_VARARGS, NULL}, + { (char *)"encoder_cfg_millis_separator_get", _wrap_encoder_cfg_millis_separator_get, METH_VARARGS, NULL}, + { (char *)"encoder_cfg_autodash_set", _wrap_encoder_cfg_autodash_set, METH_VARARGS, NULL}, + { (char *)"encoder_cfg_autodash_get", _wrap_encoder_cfg_autodash_get, METH_VARARGS, NULL}, + { (char *)"encoder_cfg_trim_subs_set", _wrap_encoder_cfg_trim_subs_set, METH_VARARGS, NULL}, + { (char *)"encoder_cfg_trim_subs_get", _wrap_encoder_cfg_trim_subs_get, METH_VARARGS, NULL}, + { (char *)"encoder_cfg_sentence_cap_set", _wrap_encoder_cfg_sentence_cap_set, METH_VARARGS, NULL}, + { (char *)"encoder_cfg_sentence_cap_get", _wrap_encoder_cfg_sentence_cap_get, METH_VARARGS, NULL}, + { (char *)"encoder_cfg_splitbysentence_set", _wrap_encoder_cfg_splitbysentence_set, METH_VARARGS, NULL}, + { (char *)"encoder_cfg_splitbysentence_get", _wrap_encoder_cfg_splitbysentence_get, METH_VARARGS, NULL}, + { (char *)"encoder_cfg_with_semaphore_set", _wrap_encoder_cfg_with_semaphore_set, METH_VARARGS, NULL}, + { (char *)"encoder_cfg_with_semaphore_get", _wrap_encoder_cfg_with_semaphore_get, METH_VARARGS, NULL}, + { (char *)"encoder_cfg_start_credits_text_set", _wrap_encoder_cfg_start_credits_text_set, METH_VARARGS, NULL}, + { (char *)"encoder_cfg_start_credits_text_get", _wrap_encoder_cfg_start_credits_text_get, METH_VARARGS, NULL}, + { (char *)"encoder_cfg_end_credits_text_set", _wrap_encoder_cfg_end_credits_text_set, METH_VARARGS, NULL}, + { (char *)"encoder_cfg_end_credits_text_get", _wrap_encoder_cfg_end_credits_text_get, METH_VARARGS, NULL}, + { (char *)"encoder_cfg_startcreditsnotbefore_set", _wrap_encoder_cfg_startcreditsnotbefore_set, METH_VARARGS, NULL}, + { (char *)"encoder_cfg_startcreditsnotbefore_get", _wrap_encoder_cfg_startcreditsnotbefore_get, METH_VARARGS, NULL}, + { (char *)"encoder_cfg_startcreditsnotafter_set", _wrap_encoder_cfg_startcreditsnotafter_set, METH_VARARGS, NULL}, + { (char *)"encoder_cfg_startcreditsnotafter_get", _wrap_encoder_cfg_startcreditsnotafter_get, METH_VARARGS, NULL}, + { (char *)"encoder_cfg_startcreditsforatleast_set", _wrap_encoder_cfg_startcreditsforatleast_set, METH_VARARGS, NULL}, + { (char *)"encoder_cfg_startcreditsforatleast_get", _wrap_encoder_cfg_startcreditsforatleast_get, METH_VARARGS, NULL}, + { (char *)"encoder_cfg_startcreditsforatmost_set", _wrap_encoder_cfg_startcreditsforatmost_set, METH_VARARGS, NULL}, + { (char *)"encoder_cfg_startcreditsforatmost_get", _wrap_encoder_cfg_startcreditsforatmost_get, METH_VARARGS, NULL}, + { (char *)"encoder_cfg_endcreditsforatleast_set", _wrap_encoder_cfg_endcreditsforatleast_set, METH_VARARGS, NULL}, + { (char *)"encoder_cfg_endcreditsforatleast_get", _wrap_encoder_cfg_endcreditsforatleast_get, METH_VARARGS, NULL}, + { (char *)"encoder_cfg_endcreditsforatmost_set", _wrap_encoder_cfg_endcreditsforatmost_set, METH_VARARGS, NULL}, + { (char *)"encoder_cfg_endcreditsforatmost_get", _wrap_encoder_cfg_endcreditsforatmost_get, METH_VARARGS, NULL}, + { (char *)"encoder_cfg_transcript_settings_set", _wrap_encoder_cfg_transcript_settings_set, METH_VARARGS, NULL}, + { (char *)"encoder_cfg_transcript_settings_get", _wrap_encoder_cfg_transcript_settings_get, METH_VARARGS, NULL}, + { (char *)"encoder_cfg_send_to_srv_set", _wrap_encoder_cfg_send_to_srv_set, METH_VARARGS, NULL}, + { (char *)"encoder_cfg_send_to_srv_get", _wrap_encoder_cfg_send_to_srv_get, METH_VARARGS, NULL}, + { (char *)"encoder_cfg_no_bom_set", _wrap_encoder_cfg_no_bom_set, METH_VARARGS, NULL}, + { (char *)"encoder_cfg_no_bom_get", _wrap_encoder_cfg_no_bom_get, METH_VARARGS, NULL}, + { (char *)"encoder_cfg_first_input_file_set", _wrap_encoder_cfg_first_input_file_set, METH_VARARGS, NULL}, + { (char *)"encoder_cfg_first_input_file_get", _wrap_encoder_cfg_first_input_file_get, METH_VARARGS, NULL}, + { (char *)"encoder_cfg_multiple_files_set", _wrap_encoder_cfg_multiple_files_set, METH_VARARGS, NULL}, + { (char *)"encoder_cfg_multiple_files_get", _wrap_encoder_cfg_multiple_files_get, METH_VARARGS, NULL}, + { (char *)"encoder_cfg_no_font_color_set", _wrap_encoder_cfg_no_font_color_set, METH_VARARGS, NULL}, + { (char *)"encoder_cfg_no_font_color_get", _wrap_encoder_cfg_no_font_color_get, METH_VARARGS, NULL}, + { (char *)"encoder_cfg_no_type_setting_set", _wrap_encoder_cfg_no_type_setting_set, METH_VARARGS, NULL}, + { (char *)"encoder_cfg_no_type_setting_get", _wrap_encoder_cfg_no_type_setting_get, METH_VARARGS, NULL}, + { (char *)"encoder_cfg_cc_to_stdout_set", _wrap_encoder_cfg_cc_to_stdout_set, METH_VARARGS, NULL}, + { (char *)"encoder_cfg_cc_to_stdout_get", _wrap_encoder_cfg_cc_to_stdout_get, METH_VARARGS, NULL}, + { (char *)"encoder_cfg_line_terminator_lf_set", _wrap_encoder_cfg_line_terminator_lf_set, METH_VARARGS, NULL}, + { (char *)"encoder_cfg_line_terminator_lf_get", _wrap_encoder_cfg_line_terminator_lf_get, METH_VARARGS, NULL}, + { (char *)"encoder_cfg_subs_delay_set", _wrap_encoder_cfg_subs_delay_set, METH_VARARGS, NULL}, + { (char *)"encoder_cfg_subs_delay_get", _wrap_encoder_cfg_subs_delay_get, METH_VARARGS, NULL}, + { (char *)"encoder_cfg_program_number_set", _wrap_encoder_cfg_program_number_set, METH_VARARGS, NULL}, + { (char *)"encoder_cfg_program_number_get", _wrap_encoder_cfg_program_number_get, METH_VARARGS, NULL}, + { (char *)"encoder_cfg_in_format_set", _wrap_encoder_cfg_in_format_set, METH_VARARGS, NULL}, + { (char *)"encoder_cfg_in_format_get", _wrap_encoder_cfg_in_format_get, METH_VARARGS, NULL}, + { (char *)"encoder_cfg_services_enabled_set", _wrap_encoder_cfg_services_enabled_set, METH_VARARGS, NULL}, + { (char *)"encoder_cfg_services_enabled_get", _wrap_encoder_cfg_services_enabled_get, METH_VARARGS, NULL}, + { (char *)"encoder_cfg_services_charsets_set", _wrap_encoder_cfg_services_charsets_set, METH_VARARGS, NULL}, + { (char *)"encoder_cfg_services_charsets_get", _wrap_encoder_cfg_services_charsets_get, METH_VARARGS, NULL}, + { (char *)"encoder_cfg_all_services_charset_set", _wrap_encoder_cfg_all_services_charset_set, METH_VARARGS, NULL}, + { (char *)"encoder_cfg_all_services_charset_get", _wrap_encoder_cfg_all_services_charset_get, METH_VARARGS, NULL}, + { (char *)"new_encoder_cfg", _wrap_new_encoder_cfg, METH_VARARGS, NULL}, + { (char *)"delete_encoder_cfg", _wrap_delete_encoder_cfg, METH_VARARGS, NULL}, + { (char *)"encoder_cfg_swigregister", encoder_cfg_swigregister, METH_VARARGS, NULL}, + { (char *)"ccx_s_options_extract_set", _wrap_ccx_s_options_extract_set, METH_VARARGS, NULL}, + { (char *)"ccx_s_options_extract_get", _wrap_ccx_s_options_extract_get, METH_VARARGS, NULL}, + { (char *)"ccx_s_options_no_rollup_set", _wrap_ccx_s_options_no_rollup_set, METH_VARARGS, NULL}, + { (char *)"ccx_s_options_no_rollup_get", _wrap_ccx_s_options_no_rollup_get, METH_VARARGS, NULL}, + { (char *)"ccx_s_options_noscte20_set", _wrap_ccx_s_options_noscte20_set, METH_VARARGS, NULL}, + { (char *)"ccx_s_options_noscte20_get", _wrap_ccx_s_options_noscte20_get, METH_VARARGS, NULL}, + { (char *)"ccx_s_options_webvtt_create_css_set", _wrap_ccx_s_options_webvtt_create_css_set, METH_VARARGS, NULL}, + { (char *)"ccx_s_options_webvtt_create_css_get", _wrap_ccx_s_options_webvtt_create_css_get, METH_VARARGS, NULL}, + { (char *)"ccx_s_options_cc_channel_set", _wrap_ccx_s_options_cc_channel_set, METH_VARARGS, NULL}, + { (char *)"ccx_s_options_cc_channel_get", _wrap_ccx_s_options_cc_channel_get, METH_VARARGS, NULL}, + { (char *)"ccx_s_options_buffer_input_set", _wrap_ccx_s_options_buffer_input_set, METH_VARARGS, NULL}, + { (char *)"ccx_s_options_buffer_input_get", _wrap_ccx_s_options_buffer_input_get, METH_VARARGS, NULL}, + { (char *)"ccx_s_options_nofontcolor_set", _wrap_ccx_s_options_nofontcolor_set, METH_VARARGS, NULL}, + { (char *)"ccx_s_options_nofontcolor_get", _wrap_ccx_s_options_nofontcolor_get, METH_VARARGS, NULL}, + { (char *)"ccx_s_options_nohtmlescape_set", _wrap_ccx_s_options_nohtmlescape_set, METH_VARARGS, NULL}, + { (char *)"ccx_s_options_nohtmlescape_get", _wrap_ccx_s_options_nohtmlescape_get, METH_VARARGS, NULL}, + { (char *)"ccx_s_options_notypesetting_set", _wrap_ccx_s_options_notypesetting_set, METH_VARARGS, NULL}, + { (char *)"ccx_s_options_notypesetting_get", _wrap_ccx_s_options_notypesetting_get, METH_VARARGS, NULL}, + { (char *)"ccx_s_options_extraction_start_set", _wrap_ccx_s_options_extraction_start_set, METH_VARARGS, NULL}, + { (char *)"ccx_s_options_extraction_start_get", _wrap_ccx_s_options_extraction_start_get, METH_VARARGS, NULL}, + { (char *)"ccx_s_options_extraction_end_set", _wrap_ccx_s_options_extraction_end_set, METH_VARARGS, NULL}, + { (char *)"ccx_s_options_extraction_end_get", _wrap_ccx_s_options_extraction_end_get, METH_VARARGS, NULL}, + { (char *)"ccx_s_options_print_file_reports_set", _wrap_ccx_s_options_print_file_reports_set, METH_VARARGS, NULL}, + { (char *)"ccx_s_options_print_file_reports_get", _wrap_ccx_s_options_print_file_reports_get, METH_VARARGS, NULL}, + { (char *)"ccx_s_options_settings_608_set", _wrap_ccx_s_options_settings_608_set, METH_VARARGS, NULL}, + { (char *)"ccx_s_options_settings_608_get", _wrap_ccx_s_options_settings_608_get, METH_VARARGS, NULL}, + { (char *)"ccx_s_options_settings_dtvcc_set", _wrap_ccx_s_options_settings_dtvcc_set, METH_VARARGS, NULL}, + { (char *)"ccx_s_options_settings_dtvcc_get", _wrap_ccx_s_options_settings_dtvcc_get, METH_VARARGS, NULL}, + { (char *)"ccx_s_options_millis_separator_set", _wrap_ccx_s_options_millis_separator_set, METH_VARARGS, NULL}, + { (char *)"ccx_s_options_millis_separator_get", _wrap_ccx_s_options_millis_separator_get, METH_VARARGS, NULL}, + { (char *)"ccx_s_options_binary_concat_set", _wrap_ccx_s_options_binary_concat_set, METH_VARARGS, NULL}, + { (char *)"ccx_s_options_binary_concat_get", _wrap_ccx_s_options_binary_concat_get, METH_VARARGS, NULL}, + { (char *)"ccx_s_options_use_gop_as_pts_set", _wrap_ccx_s_options_use_gop_as_pts_set, METH_VARARGS, NULL}, + { (char *)"ccx_s_options_use_gop_as_pts_get", _wrap_ccx_s_options_use_gop_as_pts_get, METH_VARARGS, NULL}, + { (char *)"ccx_s_options_fix_padding_set", _wrap_ccx_s_options_fix_padding_set, METH_VARARGS, NULL}, + { (char *)"ccx_s_options_fix_padding_get", _wrap_ccx_s_options_fix_padding_get, METH_VARARGS, NULL}, + { (char *)"ccx_s_options_gui_mode_reports_set", _wrap_ccx_s_options_gui_mode_reports_set, METH_VARARGS, NULL}, + { (char *)"ccx_s_options_gui_mode_reports_get", _wrap_ccx_s_options_gui_mode_reports_get, METH_VARARGS, NULL}, + { (char *)"ccx_s_options_no_progress_bar_set", _wrap_ccx_s_options_no_progress_bar_set, METH_VARARGS, NULL}, + { (char *)"ccx_s_options_no_progress_bar_get", _wrap_ccx_s_options_no_progress_bar_get, METH_VARARGS, NULL}, + { (char *)"ccx_s_options_sentence_cap_file_set", _wrap_ccx_s_options_sentence_cap_file_set, METH_VARARGS, NULL}, + { (char *)"ccx_s_options_sentence_cap_file_get", _wrap_ccx_s_options_sentence_cap_file_get, METH_VARARGS, NULL}, + { (char *)"ccx_s_options_live_stream_set", _wrap_ccx_s_options_live_stream_set, METH_VARARGS, NULL}, + { (char *)"ccx_s_options_live_stream_get", _wrap_ccx_s_options_live_stream_get, METH_VARARGS, NULL}, + { (char *)"ccx_s_options_messages_target_set", _wrap_ccx_s_options_messages_target_set, METH_VARARGS, NULL}, + { (char *)"ccx_s_options_messages_target_get", _wrap_ccx_s_options_messages_target_get, METH_VARARGS, NULL}, + { (char *)"ccx_s_options_levdistmincnt_set", _wrap_ccx_s_options_levdistmincnt_set, METH_VARARGS, NULL}, + { (char *)"ccx_s_options_levdistmincnt_get", _wrap_ccx_s_options_levdistmincnt_get, METH_VARARGS, NULL}, + { (char *)"ccx_s_options_levdistmaxpct_set", _wrap_ccx_s_options_levdistmaxpct_set, METH_VARARGS, NULL}, + { (char *)"ccx_s_options_levdistmaxpct_get", _wrap_ccx_s_options_levdistmaxpct_get, METH_VARARGS, NULL}, + { (char *)"ccx_s_options_investigate_packets_set", _wrap_ccx_s_options_investigate_packets_set, METH_VARARGS, NULL}, + { (char *)"ccx_s_options_investigate_packets_get", _wrap_ccx_s_options_investigate_packets_get, METH_VARARGS, NULL}, + { (char *)"ccx_s_options_fullbin_set", _wrap_ccx_s_options_fullbin_set, METH_VARARGS, NULL}, + { (char *)"ccx_s_options_fullbin_get", _wrap_ccx_s_options_fullbin_get, METH_VARARGS, NULL}, + { (char *)"ccx_s_options_nosync_set", _wrap_ccx_s_options_nosync_set, METH_VARARGS, NULL}, + { (char *)"ccx_s_options_nosync_get", _wrap_ccx_s_options_nosync_get, METH_VARARGS, NULL}, + { (char *)"ccx_s_options_hauppauge_mode_set", _wrap_ccx_s_options_hauppauge_mode_set, METH_VARARGS, NULL}, + { (char *)"ccx_s_options_hauppauge_mode_get", _wrap_ccx_s_options_hauppauge_mode_get, METH_VARARGS, NULL}, + { (char *)"ccx_s_options_wtvconvertfix_set", _wrap_ccx_s_options_wtvconvertfix_set, METH_VARARGS, NULL}, + { (char *)"ccx_s_options_wtvconvertfix_get", _wrap_ccx_s_options_wtvconvertfix_get, METH_VARARGS, NULL}, + { (char *)"ccx_s_options_wtvmpeg2_set", _wrap_ccx_s_options_wtvmpeg2_set, METH_VARARGS, NULL}, + { (char *)"ccx_s_options_wtvmpeg2_get", _wrap_ccx_s_options_wtvmpeg2_get, METH_VARARGS, NULL}, + { (char *)"ccx_s_options_auto_myth_set", _wrap_ccx_s_options_auto_myth_set, METH_VARARGS, NULL}, + { (char *)"ccx_s_options_auto_myth_get", _wrap_ccx_s_options_auto_myth_get, METH_VARARGS, NULL}, + { (char *)"ccx_s_options_mp4vidtrack_set", _wrap_ccx_s_options_mp4vidtrack_set, METH_VARARGS, NULL}, + { (char *)"ccx_s_options_mp4vidtrack_get", _wrap_ccx_s_options_mp4vidtrack_get, METH_VARARGS, NULL}, + { (char *)"ccx_s_options_extract_chapters_set", _wrap_ccx_s_options_extract_chapters_set, METH_VARARGS, NULL}, + { (char *)"ccx_s_options_extract_chapters_get", _wrap_ccx_s_options_extract_chapters_get, METH_VARARGS, NULL}, + { (char *)"ccx_s_options_usepicorder_set", _wrap_ccx_s_options_usepicorder_set, METH_VARARGS, NULL}, + { (char *)"ccx_s_options_usepicorder_get", _wrap_ccx_s_options_usepicorder_get, METH_VARARGS, NULL}, + { (char *)"ccx_s_options_xmltv_set", _wrap_ccx_s_options_xmltv_set, METH_VARARGS, NULL}, + { (char *)"ccx_s_options_xmltv_get", _wrap_ccx_s_options_xmltv_get, METH_VARARGS, NULL}, + { (char *)"ccx_s_options_xmltvliveinterval_set", _wrap_ccx_s_options_xmltvliveinterval_set, METH_VARARGS, NULL}, + { (char *)"ccx_s_options_xmltvliveinterval_get", _wrap_ccx_s_options_xmltvliveinterval_get, METH_VARARGS, NULL}, + { (char *)"ccx_s_options_xmltvoutputinterval_set", _wrap_ccx_s_options_xmltvoutputinterval_set, METH_VARARGS, NULL}, + { (char *)"ccx_s_options_xmltvoutputinterval_get", _wrap_ccx_s_options_xmltvoutputinterval_get, METH_VARARGS, NULL}, + { (char *)"ccx_s_options_xmltvonlycurrent_set", _wrap_ccx_s_options_xmltvonlycurrent_set, METH_VARARGS, NULL}, + { (char *)"ccx_s_options_xmltvonlycurrent_get", _wrap_ccx_s_options_xmltvonlycurrent_get, METH_VARARGS, NULL}, + { (char *)"ccx_s_options_keep_output_closed_set", _wrap_ccx_s_options_keep_output_closed_set, METH_VARARGS, NULL}, + { (char *)"ccx_s_options_keep_output_closed_get", _wrap_ccx_s_options_keep_output_closed_get, METH_VARARGS, NULL}, + { (char *)"ccx_s_options_force_flush_set", _wrap_ccx_s_options_force_flush_set, METH_VARARGS, NULL}, + { (char *)"ccx_s_options_force_flush_get", _wrap_ccx_s_options_force_flush_get, METH_VARARGS, NULL}, + { (char *)"ccx_s_options_append_mode_set", _wrap_ccx_s_options_append_mode_set, METH_VARARGS, NULL}, + { (char *)"ccx_s_options_append_mode_get", _wrap_ccx_s_options_append_mode_get, METH_VARARGS, NULL}, + { (char *)"ccx_s_options_ucla_set", _wrap_ccx_s_options_ucla_set, METH_VARARGS, NULL}, + { (char *)"ccx_s_options_ucla_get", _wrap_ccx_s_options_ucla_get, METH_VARARGS, NULL}, + { (char *)"ccx_s_options_tickertext_set", _wrap_ccx_s_options_tickertext_set, METH_VARARGS, NULL}, + { (char *)"ccx_s_options_tickertext_get", _wrap_ccx_s_options_tickertext_get, METH_VARARGS, NULL}, + { (char *)"ccx_s_options_hardsubx_set", _wrap_ccx_s_options_hardsubx_set, METH_VARARGS, NULL}, + { (char *)"ccx_s_options_hardsubx_get", _wrap_ccx_s_options_hardsubx_get, METH_VARARGS, NULL}, + { (char *)"ccx_s_options_dvbcolor_set", _wrap_ccx_s_options_dvbcolor_set, METH_VARARGS, NULL}, + { (char *)"ccx_s_options_dvbcolor_get", _wrap_ccx_s_options_dvbcolor_get, METH_VARARGS, NULL}, + { (char *)"ccx_s_options_dvblang_set", _wrap_ccx_s_options_dvblang_set, METH_VARARGS, NULL}, + { (char *)"ccx_s_options_dvblang_get", _wrap_ccx_s_options_dvblang_get, METH_VARARGS, NULL}, + { (char *)"ccx_s_options_ocrlang_set", _wrap_ccx_s_options_ocrlang_set, METH_VARARGS, NULL}, + { (char *)"ccx_s_options_ocrlang_get", _wrap_ccx_s_options_ocrlang_get, METH_VARARGS, NULL}, + { (char *)"ccx_s_options_ocr_oem_set", _wrap_ccx_s_options_ocr_oem_set, METH_VARARGS, NULL}, + { (char *)"ccx_s_options_ocr_oem_get", _wrap_ccx_s_options_ocr_oem_get, METH_VARARGS, NULL}, + { (char *)"ccx_s_options_mkvlang_set", _wrap_ccx_s_options_mkvlang_set, METH_VARARGS, NULL}, + { (char *)"ccx_s_options_mkvlang_get", _wrap_ccx_s_options_mkvlang_get, METH_VARARGS, NULL}, + { (char *)"ccx_s_options_hardsubx_ocr_mode_set", _wrap_ccx_s_options_hardsubx_ocr_mode_set, METH_VARARGS, NULL}, + { (char *)"ccx_s_options_hardsubx_ocr_mode_get", _wrap_ccx_s_options_hardsubx_ocr_mode_get, METH_VARARGS, NULL}, + { (char *)"ccx_s_options_hardsubx_subcolor_set", _wrap_ccx_s_options_hardsubx_subcolor_set, METH_VARARGS, NULL}, + { (char *)"ccx_s_options_hardsubx_subcolor_get", _wrap_ccx_s_options_hardsubx_subcolor_get, METH_VARARGS, NULL}, + { (char *)"ccx_s_options_hardsubx_min_sub_duration_set", _wrap_ccx_s_options_hardsubx_min_sub_duration_set, METH_VARARGS, NULL}, + { (char *)"ccx_s_options_hardsubx_min_sub_duration_get", _wrap_ccx_s_options_hardsubx_min_sub_duration_get, METH_VARARGS, NULL}, + { (char *)"ccx_s_options_hardsubx_detect_italics_set", _wrap_ccx_s_options_hardsubx_detect_italics_set, METH_VARARGS, NULL}, + { (char *)"ccx_s_options_hardsubx_detect_italics_get", _wrap_ccx_s_options_hardsubx_detect_italics_get, METH_VARARGS, NULL}, + { (char *)"ccx_s_options_hardsubx_conf_thresh_set", _wrap_ccx_s_options_hardsubx_conf_thresh_set, METH_VARARGS, NULL}, + { (char *)"ccx_s_options_hardsubx_conf_thresh_get", _wrap_ccx_s_options_hardsubx_conf_thresh_get, METH_VARARGS, NULL}, + { (char *)"ccx_s_options_hardsubx_hue_set", _wrap_ccx_s_options_hardsubx_hue_set, METH_VARARGS, NULL}, + { (char *)"ccx_s_options_hardsubx_hue_get", _wrap_ccx_s_options_hardsubx_hue_get, METH_VARARGS, NULL}, + { (char *)"ccx_s_options_hardsubx_lum_thresh_set", _wrap_ccx_s_options_hardsubx_lum_thresh_set, METH_VARARGS, NULL}, + { (char *)"ccx_s_options_hardsubx_lum_thresh_get", _wrap_ccx_s_options_hardsubx_lum_thresh_get, METH_VARARGS, NULL}, + { (char *)"ccx_s_options_transcript_settings_set", _wrap_ccx_s_options_transcript_settings_set, METH_VARARGS, NULL}, + { (char *)"ccx_s_options_transcript_settings_get", _wrap_ccx_s_options_transcript_settings_get, METH_VARARGS, NULL}, + { (char *)"ccx_s_options_date_format_set", _wrap_ccx_s_options_date_format_set, METH_VARARGS, NULL}, + { (char *)"ccx_s_options_date_format_get", _wrap_ccx_s_options_date_format_get, METH_VARARGS, NULL}, + { (char *)"ccx_s_options_send_to_srv_set", _wrap_ccx_s_options_send_to_srv_set, METH_VARARGS, NULL}, + { (char *)"ccx_s_options_send_to_srv_get", _wrap_ccx_s_options_send_to_srv_get, METH_VARARGS, NULL}, + { (char *)"ccx_s_options_write_format_set", _wrap_ccx_s_options_write_format_set, METH_VARARGS, NULL}, + { (char *)"ccx_s_options_write_format_get", _wrap_ccx_s_options_write_format_get, METH_VARARGS, NULL}, + { (char *)"ccx_s_options_write_format_rewritten_set", _wrap_ccx_s_options_write_format_rewritten_set, METH_VARARGS, NULL}, + { (char *)"ccx_s_options_write_format_rewritten_get", _wrap_ccx_s_options_write_format_rewritten_get, METH_VARARGS, NULL}, + { (char *)"ccx_s_options_use_ass_instead_of_ssa_set", _wrap_ccx_s_options_use_ass_instead_of_ssa_set, METH_VARARGS, NULL}, + { (char *)"ccx_s_options_use_ass_instead_of_ssa_get", _wrap_ccx_s_options_use_ass_instead_of_ssa_get, METH_VARARGS, NULL}, + { (char *)"ccx_s_options_use_webvtt_styling_set", _wrap_ccx_s_options_use_webvtt_styling_set, METH_VARARGS, NULL}, + { (char *)"ccx_s_options_use_webvtt_styling_get", _wrap_ccx_s_options_use_webvtt_styling_get, METH_VARARGS, NULL}, + { (char *)"ccx_s_options_debug_mask_set", _wrap_ccx_s_options_debug_mask_set, METH_VARARGS, NULL}, + { (char *)"ccx_s_options_debug_mask_get", _wrap_ccx_s_options_debug_mask_get, METH_VARARGS, NULL}, + { (char *)"ccx_s_options_debug_mask_on_debug_set", _wrap_ccx_s_options_debug_mask_on_debug_set, METH_VARARGS, NULL}, + { (char *)"ccx_s_options_debug_mask_on_debug_get", _wrap_ccx_s_options_debug_mask_on_debug_get, METH_VARARGS, NULL}, + { (char *)"ccx_s_options_udpaddr_set", _wrap_ccx_s_options_udpaddr_set, METH_VARARGS, NULL}, + { (char *)"ccx_s_options_udpaddr_get", _wrap_ccx_s_options_udpaddr_get, METH_VARARGS, NULL}, + { (char *)"ccx_s_options_udpport_set", _wrap_ccx_s_options_udpport_set, METH_VARARGS, NULL}, + { (char *)"ccx_s_options_udpport_get", _wrap_ccx_s_options_udpport_get, METH_VARARGS, NULL}, + { (char *)"ccx_s_options_tcpport_set", _wrap_ccx_s_options_tcpport_set, METH_VARARGS, NULL}, + { (char *)"ccx_s_options_tcpport_get", _wrap_ccx_s_options_tcpport_get, METH_VARARGS, NULL}, + { (char *)"ccx_s_options_tcp_password_set", _wrap_ccx_s_options_tcp_password_set, METH_VARARGS, NULL}, + { (char *)"ccx_s_options_tcp_password_get", _wrap_ccx_s_options_tcp_password_get, METH_VARARGS, NULL}, + { (char *)"ccx_s_options_tcp_desc_set", _wrap_ccx_s_options_tcp_desc_set, METH_VARARGS, NULL}, + { (char *)"ccx_s_options_tcp_desc_get", _wrap_ccx_s_options_tcp_desc_get, METH_VARARGS, NULL}, + { (char *)"ccx_s_options_srv_addr_set", _wrap_ccx_s_options_srv_addr_set, METH_VARARGS, NULL}, + { (char *)"ccx_s_options_srv_addr_get", _wrap_ccx_s_options_srv_addr_get, METH_VARARGS, NULL}, + { (char *)"ccx_s_options_srv_port_set", _wrap_ccx_s_options_srv_port_set, METH_VARARGS, NULL}, + { (char *)"ccx_s_options_srv_port_get", _wrap_ccx_s_options_srv_port_get, METH_VARARGS, NULL}, + { (char *)"ccx_s_options_noautotimeref_set", _wrap_ccx_s_options_noautotimeref_set, METH_VARARGS, NULL}, + { (char *)"ccx_s_options_noautotimeref_get", _wrap_ccx_s_options_noautotimeref_get, METH_VARARGS, NULL}, + { (char *)"ccx_s_options_input_source_set", _wrap_ccx_s_options_input_source_set, METH_VARARGS, NULL}, + { (char *)"ccx_s_options_input_source_get", _wrap_ccx_s_options_input_source_get, METH_VARARGS, NULL}, + { (char *)"ccx_s_options_output_filename_set", _wrap_ccx_s_options_output_filename_set, METH_VARARGS, NULL}, + { (char *)"ccx_s_options_output_filename_get", _wrap_ccx_s_options_output_filename_get, METH_VARARGS, NULL}, + { (char *)"ccx_s_options_inputfile_set", _wrap_ccx_s_options_inputfile_set, METH_VARARGS, NULL}, + { (char *)"ccx_s_options_inputfile_get", _wrap_ccx_s_options_inputfile_get, METH_VARARGS, NULL}, + { (char *)"ccx_s_options_num_input_files_set", _wrap_ccx_s_options_num_input_files_set, METH_VARARGS, NULL}, + { (char *)"ccx_s_options_num_input_files_get", _wrap_ccx_s_options_num_input_files_get, METH_VARARGS, NULL}, + { (char *)"ccx_s_options_demux_cfg_set", _wrap_ccx_s_options_demux_cfg_set, METH_VARARGS, NULL}, + { (char *)"ccx_s_options_demux_cfg_get", _wrap_ccx_s_options_demux_cfg_get, METH_VARARGS, NULL}, + { (char *)"ccx_s_options_enc_cfg_set", _wrap_ccx_s_options_enc_cfg_set, METH_VARARGS, NULL}, + { (char *)"ccx_s_options_enc_cfg_get", _wrap_ccx_s_options_enc_cfg_get, METH_VARARGS, NULL}, + { (char *)"ccx_s_options_subs_delay_set", _wrap_ccx_s_options_subs_delay_set, METH_VARARGS, NULL}, + { (char *)"ccx_s_options_subs_delay_get", _wrap_ccx_s_options_subs_delay_get, METH_VARARGS, NULL}, + { (char *)"ccx_s_options_cc_to_stdout_set", _wrap_ccx_s_options_cc_to_stdout_set, METH_VARARGS, NULL}, + { (char *)"ccx_s_options_cc_to_stdout_get", _wrap_ccx_s_options_cc_to_stdout_get, METH_VARARGS, NULL}, + { (char *)"ccx_s_options_pes_header_to_stdout_set", _wrap_ccx_s_options_pes_header_to_stdout_set, METH_VARARGS, NULL}, + { (char *)"ccx_s_options_pes_header_to_stdout_get", _wrap_ccx_s_options_pes_header_to_stdout_get, METH_VARARGS, NULL}, + { (char *)"ccx_s_options_dvb_debug_traces_to_stdout_set", _wrap_ccx_s_options_dvb_debug_traces_to_stdout_set, METH_VARARGS, NULL}, + { (char *)"ccx_s_options_dvb_debug_traces_to_stdout_get", _wrap_ccx_s_options_dvb_debug_traces_to_stdout_get, METH_VARARGS, NULL}, + { (char *)"ccx_s_options_ignore_pts_jumps_set", _wrap_ccx_s_options_ignore_pts_jumps_set, METH_VARARGS, NULL}, + { (char *)"ccx_s_options_ignore_pts_jumps_get", _wrap_ccx_s_options_ignore_pts_jumps_get, METH_VARARGS, NULL}, + { (char *)"ccx_s_options_multiprogram_set", _wrap_ccx_s_options_multiprogram_set, METH_VARARGS, NULL}, + { (char *)"ccx_s_options_multiprogram_get", _wrap_ccx_s_options_multiprogram_get, METH_VARARGS, NULL}, + { (char *)"ccx_s_options_out_interval_set", _wrap_ccx_s_options_out_interval_set, METH_VARARGS, NULL}, + { (char *)"ccx_s_options_out_interval_get", _wrap_ccx_s_options_out_interval_get, METH_VARARGS, NULL}, + { (char *)"ccx_s_options_myarguments_set", _wrap_ccx_s_options_myarguments_set, METH_VARARGS, NULL}, + { (char *)"ccx_s_options_myarguments_get", _wrap_ccx_s_options_myarguments_get, METH_VARARGS, NULL}, + { (char *)"ccx_s_options_argument_count_set", _wrap_ccx_s_options_argument_count_set, METH_VARARGS, NULL}, + { (char *)"ccx_s_options_argument_count_get", _wrap_ccx_s_options_argument_count_get, METH_VARARGS, NULL}, + { (char *)"new_ccx_s_options", _wrap_new_ccx_s_options, METH_VARARGS, NULL}, + { (char *)"delete_ccx_s_options", _wrap_delete_ccx_s_options, METH_VARARGS, NULL}, + { (char *)"ccx_s_options_swigregister", ccx_s_options_swigregister, METH_VARARGS, NULL}, + { (char *)"init_options", _wrap_init_options, METH_VARARGS, NULL}, + { (char *)"processmp4", _wrap_processmp4, METH_VARARGS, NULL}, + { (char *)"dumpchapters", _wrap_dumpchapters, METH_VARARGS, NULL}, + { (char *)"sigusr1_handler", _wrap_sigusr1_handler, METH_VARARGS, NULL}, + { (char *)"sigterm_handler", _wrap_sigterm_handler, METH_VARARGS, NULL}, + { (char *)"sigint_handler", _wrap_sigint_handler, METH_VARARGS, NULL}, + { (char *)"api_init_options", _wrap_api_init_options, METH_VARARGS, NULL}, + { (char *)"checking_configuration_file", _wrap_checking_configuration_file, METH_VARARGS, NULL}, + { (char *)"compile_params", _wrap_compile_params, METH_VARARGS, NULL}, + { (char *)"api_add_param", _wrap_api_add_param, METH_VARARGS, NULL}, + { (char *)"main", _wrap_main, METH_VARARGS, NULL}, + { NULL, NULL, 0, NULL } +}; + + +/* -------- TYPE CONVERSION AND EQUIVALENCE RULES (BEGIN) -------- */ + +static swig_type_info _swigt__p_EIT_program = {"_p_EIT_program", "struct EIT_program *", 0, 0, (void*)0, 0}; +static swig_type_info _swigt__p_LLONG = {"_p_LLONG", "LLONG *", 0, 0, (void*)0, 0}; +static swig_type_info _swigt__p_PSI_buffer = {"_p_PSI_buffer", "struct PSI_buffer *", 0, 0, (void*)0, 0}; +static swig_type_info _swigt__p_bitstream = {"_p_bitstream", "struct bitstream *", 0, 0, (void*)0, 0}; +static swig_type_info _swigt__p_bool_t = {"_p_bool_t", "bool_t *", 0, 0, (void*)0, 0}; +static swig_type_info _swigt__p_cap_info = {"_p_cap_info", "struct cap_info *", 0, 0, (void*)0, 0}; +static swig_type_info _swigt__p_cc_subtitle = {"_p_cc_subtitle", "struct cc_subtitle *", 0, 0, (void*)0, 0}; +static swig_type_info _swigt__p_ccx_boundary_time = {"_p_ccx_boundary_time", "struct ccx_boundary_time *", 0, 0, (void*)0, 0}; +static swig_type_info _swigt__p_ccx_decoder_608_report = {"_p_ccx_decoder_608_report", "struct ccx_decoder_608_report *", 0, 0, (void*)0, 0}; +static swig_type_info _swigt__p_ccx_decoder_608_settings = {"_p_ccx_decoder_608_settings", "ccx_decoder_608_settings *", 0, 0, (void*)0, 0}; +static swig_type_info _swigt__p_ccx_decoder_dtvcc_report = {"_p_ccx_decoder_dtvcc_report", "struct ccx_decoder_dtvcc_report *", 0, 0, (void*)0, 0}; +static swig_type_info _swigt__p_ccx_decoder_dtvcc_settings = {"_p_ccx_decoder_dtvcc_settings", "ccx_decoder_dtvcc_settings *", 0, 0, (void*)0, 0}; +static swig_type_info _swigt__p_ccx_decoders_common_settings_t = {"_p_ccx_decoders_common_settings_t", "struct ccx_decoders_common_settings_t *", 0, 0, (void*)0, 0}; +static swig_type_info _swigt__p_ccx_demuxer = {"_p_ccx_demuxer", "struct ccx_demuxer *", 0, 0, (void*)0, 0}; +static swig_type_info _swigt__p_ccx_encoders_transcript_format = {"_p_ccx_encoders_transcript_format", "ccx_encoders_transcript_format *", 0, 0, (void*)0, 0}; +static swig_type_info _swigt__p_ccx_s_mp4Cfg = {"_p_ccx_s_mp4Cfg", "struct ccx_s_mp4Cfg *|ccx_s_mp4Cfg *", 0, 0, (void*)0, 0}; +static swig_type_info _swigt__p_ccx_s_options = {"_p_ccx_s_options", "struct ccx_s_options *|ccx_s_options *", 0, 0, (void*)0, 0}; +static swig_type_info _swigt__p_ccx_s_teletext_config = {"_p_ccx_s_teletext_config", "struct ccx_s_teletext_config *|ccx_s_teletext_config *", 0, 0, (void*)0, 0}; +static swig_type_info _swigt__p_ccx_s_write = {"_p_ccx_s_write", "struct ccx_s_write *", 0, 0, (void*)0, 0}; +static swig_type_info _swigt__p_char = {"_p_char", "char *", 0, 0, (void*)0, 0}; +static swig_type_info _swigt__p_demuxer_cfg = {"_p_demuxer_cfg", "struct demuxer_cfg *|demuxer_cfg *", 0, 0, (void*)0, 0}; +static swig_type_info _swigt__p_demuxer_data = {"_p_demuxer_data", "struct demuxer_data *", 0, 0, (void*)0, 0}; +static swig_type_info _swigt__p_encoder_cfg = {"_p_encoder_cfg", "struct encoder_cfg *|encoder_cfg *", 0, 0, (void*)0, 0}; +static swig_type_info _swigt__p_encoder_ctx = {"_p_encoder_ctx", "struct encoder_ctx *", 0, 0, (void*)0, 0}; +static swig_type_info _swigt__p_f_int__void = {"_p_f_int__void", "void (*)(int)", 0, 0, (void*)0, 0}; +static swig_type_info _swigt__p_file_report = {"_p_file_report", "struct file_report *|file_report *", 0, 0, (void*)0, 0}; +static swig_type_info _swigt__p_int = {"_p_int", "int *", 0, 0, (void*)0, 0}; +static swig_type_info _swigt__p_int16_t = {"_p_int16_t", "int16_t *", 0, 0, (void*)0, 0}; +static swig_type_info _swigt__p_int32_t = {"_p_int32_t", "int32_t *", 0, 0, (void*)0, 0}; +static swig_type_info _swigt__p_lib_cc_decode = {"_p_lib_cc_decode", "struct lib_cc_decode *", 0, 0, (void*)0, 0}; +static swig_type_info _swigt__p_lib_ccx_ctx = {"_p_lib_ccx_ctx", "struct lib_ccx_ctx *|lib_ccx_ctx *", 0, 0, (void*)0, 0}; +static swig_type_info _swigt__p_list_head = {"_p_list_head", "struct list_head *", 0, 0, (void*)0, 0}; +static swig_type_info _swigt__p_p_char = {"_p_p_char", "char **", 0, 0, (void*)0, 0}; +static swig_type_info _swigt__p_p_demuxer_data = {"_p_p_demuxer_data", "struct demuxer_data **", 0, 0, (void*)0, 0}; +static swig_type_info _swigt__p_p_lib_ccx_ctx = {"_p_p_lib_ccx_ctx", "struct lib_ccx_ctx **", 0, 0, (void*)0, 0}; +static swig_type_info _swigt__p_p_void = {"_p_p_void", "void **", 0, 0, (void*)0, 0}; +static swig_type_info _swigt__p_program_info = {"_p_program_info", "struct program_info *", 0, 0, (void*)0, 0}; +static swig_type_info _swigt__p_size_t = {"_p_size_t", "size_t *", 0, 0, (void*)0, 0}; +static swig_type_info _swigt__p_ts_payload = {"_p_ts_payload", "struct ts_payload *", 0, 0, (void*)0, 0}; +static swig_type_info _swigt__p_uint16_t = {"_p_uint16_t", "uint16_t *", 0, 0, (void*)0, 0}; +static swig_type_info _swigt__p_uint32_t = {"_p_uint32_t", "uint32_t *", 0, 0, (void*)0, 0}; +static swig_type_info _swigt__p_uint64_t = {"_p_uint64_t", "uint64_t *", 0, 0, (void*)0, 0}; +static swig_type_info _swigt__p_uint8_t = {"_p_uint8_t", "uint8_t *", 0, 0, (void*)0, 0}; +static swig_type_info _swigt__p_unsigned_char = {"_p_unsigned_char", "unsigned char *", 0, 0, (void*)0, 0}; +static swig_type_info _swigt__p_unsigned_int = {"_p_unsigned_int", "unsigned int *", 0, 0, (void*)0, 0}; +static swig_type_info _swigt__p_void = {"_p_void", "void *", 0, 0, (void*)0, 0}; + +static swig_type_info *swig_type_initial[] = { + &_swigt__p_EIT_program, + &_swigt__p_LLONG, + &_swigt__p_PSI_buffer, + &_swigt__p_bitstream, + &_swigt__p_bool_t, + &_swigt__p_cap_info, + &_swigt__p_cc_subtitle, + &_swigt__p_ccx_boundary_time, + &_swigt__p_ccx_decoder_608_report, + &_swigt__p_ccx_decoder_608_settings, + &_swigt__p_ccx_decoder_dtvcc_report, + &_swigt__p_ccx_decoder_dtvcc_settings, + &_swigt__p_ccx_decoders_common_settings_t, + &_swigt__p_ccx_demuxer, + &_swigt__p_ccx_encoders_transcript_format, + &_swigt__p_ccx_s_mp4Cfg, + &_swigt__p_ccx_s_options, + &_swigt__p_ccx_s_teletext_config, + &_swigt__p_ccx_s_write, + &_swigt__p_char, + &_swigt__p_demuxer_cfg, + &_swigt__p_demuxer_data, + &_swigt__p_encoder_cfg, + &_swigt__p_encoder_ctx, + &_swigt__p_f_int__void, + &_swigt__p_file_report, + &_swigt__p_int, + &_swigt__p_int16_t, + &_swigt__p_int32_t, + &_swigt__p_lib_cc_decode, + &_swigt__p_lib_ccx_ctx, + &_swigt__p_list_head, + &_swigt__p_p_char, + &_swigt__p_p_demuxer_data, + &_swigt__p_p_lib_ccx_ctx, + &_swigt__p_p_void, + &_swigt__p_program_info, + &_swigt__p_size_t, + &_swigt__p_ts_payload, + &_swigt__p_uint16_t, + &_swigt__p_uint32_t, + &_swigt__p_uint64_t, + &_swigt__p_uint8_t, + &_swigt__p_unsigned_char, + &_swigt__p_unsigned_int, + &_swigt__p_void, +}; + +static swig_cast_info _swigc__p_EIT_program[] = { {&_swigt__p_EIT_program, 0, 0, 0},{0, 0, 0, 0}}; +static swig_cast_info _swigc__p_LLONG[] = { {&_swigt__p_LLONG, 0, 0, 0},{0, 0, 0, 0}}; +static swig_cast_info _swigc__p_PSI_buffer[] = { {&_swigt__p_PSI_buffer, 0, 0, 0},{0, 0, 0, 0}}; +static swig_cast_info _swigc__p_bitstream[] = { {&_swigt__p_bitstream, 0, 0, 0},{0, 0, 0, 0}}; +static swig_cast_info _swigc__p_bool_t[] = { {&_swigt__p_bool_t, 0, 0, 0},{0, 0, 0, 0}}; +static swig_cast_info _swigc__p_cap_info[] = { {&_swigt__p_cap_info, 0, 0, 0},{0, 0, 0, 0}}; +static swig_cast_info _swigc__p_cc_subtitle[] = { {&_swigt__p_cc_subtitle, 0, 0, 0},{0, 0, 0, 0}}; +static swig_cast_info _swigc__p_ccx_boundary_time[] = { {&_swigt__p_ccx_boundary_time, 0, 0, 0},{0, 0, 0, 0}}; +static swig_cast_info _swigc__p_ccx_decoder_608_report[] = { {&_swigt__p_ccx_decoder_608_report, 0, 0, 0},{0, 0, 0, 0}}; +static swig_cast_info _swigc__p_ccx_decoder_608_settings[] = { {&_swigt__p_ccx_decoder_608_settings, 0, 0, 0},{0, 0, 0, 0}}; +static swig_cast_info _swigc__p_ccx_decoder_dtvcc_report[] = { {&_swigt__p_ccx_decoder_dtvcc_report, 0, 0, 0},{0, 0, 0, 0}}; +static swig_cast_info _swigc__p_ccx_decoder_dtvcc_settings[] = { {&_swigt__p_ccx_decoder_dtvcc_settings, 0, 0, 0},{0, 0, 0, 0}}; +static swig_cast_info _swigc__p_ccx_decoders_common_settings_t[] = { {&_swigt__p_ccx_decoders_common_settings_t, 0, 0, 0},{0, 0, 0, 0}}; +static swig_cast_info _swigc__p_ccx_demuxer[] = { {&_swigt__p_ccx_demuxer, 0, 0, 0},{0, 0, 0, 0}}; +static swig_cast_info _swigc__p_ccx_encoders_transcript_format[] = { {&_swigt__p_ccx_encoders_transcript_format, 0, 0, 0},{0, 0, 0, 0}}; +static swig_cast_info _swigc__p_ccx_s_mp4Cfg[] = { {&_swigt__p_ccx_s_mp4Cfg, 0, 0, 0},{0, 0, 0, 0}}; +static swig_cast_info _swigc__p_ccx_s_options[] = { {&_swigt__p_ccx_s_options, 0, 0, 0},{0, 0, 0, 0}}; +static swig_cast_info _swigc__p_ccx_s_teletext_config[] = { {&_swigt__p_ccx_s_teletext_config, 0, 0, 0},{0, 0, 0, 0}}; +static swig_cast_info _swigc__p_ccx_s_write[] = { {&_swigt__p_ccx_s_write, 0, 0, 0},{0, 0, 0, 0}}; +static swig_cast_info _swigc__p_char[] = { {&_swigt__p_char, 0, 0, 0},{0, 0, 0, 0}}; +static swig_cast_info _swigc__p_demuxer_cfg[] = { {&_swigt__p_demuxer_cfg, 0, 0, 0},{0, 0, 0, 0}}; +static swig_cast_info _swigc__p_demuxer_data[] = { {&_swigt__p_demuxer_data, 0, 0, 0},{0, 0, 0, 0}}; +static swig_cast_info _swigc__p_encoder_cfg[] = { {&_swigt__p_encoder_cfg, 0, 0, 0},{0, 0, 0, 0}}; +static swig_cast_info _swigc__p_encoder_ctx[] = { {&_swigt__p_encoder_ctx, 0, 0, 0},{0, 0, 0, 0}}; +static swig_cast_info _swigc__p_f_int__void[] = { {&_swigt__p_f_int__void, 0, 0, 0},{0, 0, 0, 0}}; +static swig_cast_info _swigc__p_file_report[] = { {&_swigt__p_file_report, 0, 0, 0},{0, 0, 0, 0}}; +static swig_cast_info _swigc__p_int[] = { {&_swigt__p_int, 0, 0, 0},{0, 0, 0, 0}}; +static swig_cast_info _swigc__p_int16_t[] = { {&_swigt__p_int16_t, 0, 0, 0},{0, 0, 0, 0}}; +static swig_cast_info _swigc__p_int32_t[] = { {&_swigt__p_int32_t, 0, 0, 0},{0, 0, 0, 0}}; +static swig_cast_info _swigc__p_lib_cc_decode[] = { {&_swigt__p_lib_cc_decode, 0, 0, 0},{0, 0, 0, 0}}; +static swig_cast_info _swigc__p_lib_ccx_ctx[] = { {&_swigt__p_lib_ccx_ctx, 0, 0, 0},{0, 0, 0, 0}}; +static swig_cast_info _swigc__p_list_head[] = { {&_swigt__p_list_head, 0, 0, 0},{0, 0, 0, 0}}; +static swig_cast_info _swigc__p_p_char[] = { {&_swigt__p_p_char, 0, 0, 0},{0, 0, 0, 0}}; +static swig_cast_info _swigc__p_p_demuxer_data[] = { {&_swigt__p_p_demuxer_data, 0, 0, 0},{0, 0, 0, 0}}; +static swig_cast_info _swigc__p_p_lib_ccx_ctx[] = { {&_swigt__p_p_lib_ccx_ctx, 0, 0, 0},{0, 0, 0, 0}}; +static swig_cast_info _swigc__p_p_void[] = { {&_swigt__p_p_void, 0, 0, 0},{0, 0, 0, 0}}; +static swig_cast_info _swigc__p_program_info[] = { {&_swigt__p_program_info, 0, 0, 0},{0, 0, 0, 0}}; +static swig_cast_info _swigc__p_size_t[] = { {&_swigt__p_size_t, 0, 0, 0},{0, 0, 0, 0}}; +static swig_cast_info _swigc__p_ts_payload[] = { {&_swigt__p_ts_payload, 0, 0, 0},{0, 0, 0, 0}}; +static swig_cast_info _swigc__p_uint16_t[] = { {&_swigt__p_uint16_t, 0, 0, 0},{0, 0, 0, 0}}; +static swig_cast_info _swigc__p_uint32_t[] = { {&_swigt__p_uint32_t, 0, 0, 0},{0, 0, 0, 0}}; +static swig_cast_info _swigc__p_uint64_t[] = { {&_swigt__p_uint64_t, 0, 0, 0},{0, 0, 0, 0}}; +static swig_cast_info _swigc__p_uint8_t[] = { {&_swigt__p_uint8_t, 0, 0, 0},{0, 0, 0, 0}}; +static swig_cast_info _swigc__p_unsigned_char[] = { {&_swigt__p_unsigned_char, 0, 0, 0},{0, 0, 0, 0}}; +static swig_cast_info _swigc__p_unsigned_int[] = { {&_swigt__p_unsigned_int, 0, 0, 0},{0, 0, 0, 0}}; +static swig_cast_info _swigc__p_void[] = { {&_swigt__p_void, 0, 0, 0},{0, 0, 0, 0}}; + +static swig_cast_info *swig_cast_initial[] = { + _swigc__p_EIT_program, + _swigc__p_LLONG, + _swigc__p_PSI_buffer, + _swigc__p_bitstream, + _swigc__p_bool_t, + _swigc__p_cap_info, + _swigc__p_cc_subtitle, + _swigc__p_ccx_boundary_time, + _swigc__p_ccx_decoder_608_report, + _swigc__p_ccx_decoder_608_settings, + _swigc__p_ccx_decoder_dtvcc_report, + _swigc__p_ccx_decoder_dtvcc_settings, + _swigc__p_ccx_decoders_common_settings_t, + _swigc__p_ccx_demuxer, + _swigc__p_ccx_encoders_transcript_format, + _swigc__p_ccx_s_mp4Cfg, + _swigc__p_ccx_s_options, + _swigc__p_ccx_s_teletext_config, + _swigc__p_ccx_s_write, + _swigc__p_char, + _swigc__p_demuxer_cfg, + _swigc__p_demuxer_data, + _swigc__p_encoder_cfg, + _swigc__p_encoder_ctx, + _swigc__p_f_int__void, + _swigc__p_file_report, + _swigc__p_int, + _swigc__p_int16_t, + _swigc__p_int32_t, + _swigc__p_lib_cc_decode, + _swigc__p_lib_ccx_ctx, + _swigc__p_list_head, + _swigc__p_p_char, + _swigc__p_p_demuxer_data, + _swigc__p_p_lib_ccx_ctx, + _swigc__p_p_void, + _swigc__p_program_info, + _swigc__p_size_t, + _swigc__p_ts_payload, + _swigc__p_uint16_t, + _swigc__p_uint32_t, + _swigc__p_uint64_t, + _swigc__p_uint8_t, + _swigc__p_unsigned_char, + _swigc__p_unsigned_int, + _swigc__p_void, +}; + + +/* -------- TYPE CONVERSION AND EQUIVALENCE RULES (END) -------- */ + +static swig_const_info swig_const_table[] = { +{0, 0, 0, 0.0, 0, 0}}; + +#ifdef __cplusplus +} +#endif +/* ----------------------------------------------------------------------------- + * Type initialization: + * This problem is tough by the requirement that no dynamic + * memory is used. Also, since swig_type_info structures store pointers to + * swig_cast_info structures and swig_cast_info structures store pointers back + * to swig_type_info structures, we need some lookup code at initialization. + * The idea is that swig generates all the structures that are needed. + * The runtime then collects these partially filled structures. + * The SWIG_InitializeModule function takes these initial arrays out of + * swig_module, and does all the lookup, filling in the swig_module.types + * array with the correct data and linking the correct swig_cast_info + * structures together. + * + * The generated swig_type_info structures are assigned statically to an initial + * array. We just loop through that array, and handle each type individually. + * First we lookup if this type has been already loaded, and if so, use the + * loaded structure instead of the generated one. Then we have to fill in the + * cast linked list. The cast data is initially stored in something like a + * two-dimensional array. Each row corresponds to a type (there are the same + * number of rows as there are in the swig_type_initial array). Each entry in + * a column is one of the swig_cast_info structures for that type. + * The cast_initial array is actually an array of arrays, because each row has + * a variable number of columns. So to actually build the cast linked list, + * we find the array of casts associated with the type, and loop through it + * adding the casts to the list. The one last trick we need to do is making + * sure the type pointer in the swig_cast_info struct is correct. + * + * First off, we lookup the cast->type name to see if it is already loaded. + * There are three cases to handle: + * 1) If the cast->type has already been loaded AND the type we are adding + * casting info to has not been loaded (it is in this module), THEN we + * replace the cast->type pointer with the type pointer that has already + * been loaded. + * 2) If BOTH types (the one we are adding casting info to, and the + * cast->type) are loaded, THEN the cast info has already been loaded by + * the previous module so we just ignore it. + * 3) Finally, if cast->type has not already been loaded, then we add that + * swig_cast_info to the linked list (because the cast->type) pointer will + * be correct. + * ----------------------------------------------------------------------------- */ + +#ifdef __cplusplus +extern "C" { +#if 0 +} /* c-mode */ +#endif +#endif + +#if 0 +#define SWIGRUNTIME_DEBUG +#endif + + +SWIGRUNTIME void +SWIG_InitializeModule(void *clientdata) { + size_t i; + swig_module_info *module_head, *iter; + int init; + + /* check to see if the circular list has been setup, if not, set it up */ + if (swig_module.next==0) { + /* Initialize the swig_module */ + swig_module.type_initial = swig_type_initial; + swig_module.cast_initial = swig_cast_initial; + swig_module.next = &swig_module; + init = 1; + } else { + init = 0; + } + + /* Try and load any already created modules */ + module_head = SWIG_GetModule(clientdata); + if (!module_head) { + /* This is the first module loaded for this interpreter */ + /* so set the swig module into the interpreter */ + SWIG_SetModule(clientdata, &swig_module); + } else { + /* the interpreter has loaded a SWIG module, but has it loaded this one? */ + iter=module_head; + do { + if (iter==&swig_module) { + /* Our module is already in the list, so there's nothing more to do. */ + return; + } + iter=iter->next; + } while (iter!= module_head); + + /* otherwise we must add our module into the list */ + swig_module.next = module_head->next; + module_head->next = &swig_module; + } + + /* When multiple interpreters are used, a module could have already been initialized in + a different interpreter, but not yet have a pointer in this interpreter. + In this case, we do not want to continue adding types... everything should be + set up already */ + if (init == 0) return; + + /* Now work on filling in swig_module.types */ +#ifdef SWIGRUNTIME_DEBUG + printf("SWIG_InitializeModule: size %d\n", swig_module.size); +#endif + for (i = 0; i < swig_module.size; ++i) { + swig_type_info *type = 0; + swig_type_info *ret; + swig_cast_info *cast; + +#ifdef SWIGRUNTIME_DEBUG + printf("SWIG_InitializeModule: type %d %s\n", i, swig_module.type_initial[i]->name); +#endif + + /* if there is another module already loaded */ + if (swig_module.next != &swig_module) { + type = SWIG_MangledTypeQueryModule(swig_module.next, &swig_module, swig_module.type_initial[i]->name); + } + if (type) { + /* Overwrite clientdata field */ +#ifdef SWIGRUNTIME_DEBUG + printf("SWIG_InitializeModule: found type %s\n", type->name); +#endif + if (swig_module.type_initial[i]->clientdata) { + type->clientdata = swig_module.type_initial[i]->clientdata; +#ifdef SWIGRUNTIME_DEBUG + printf("SWIG_InitializeModule: found and overwrite type %s \n", type->name); +#endif + } + } else { + type = swig_module.type_initial[i]; + } + + /* Insert casting types */ + cast = swig_module.cast_initial[i]; + while (cast->type) { + /* Don't need to add information already in the list */ + ret = 0; +#ifdef SWIGRUNTIME_DEBUG + printf("SWIG_InitializeModule: look cast %s\n", cast->type->name); +#endif + if (swig_module.next != &swig_module) { + ret = SWIG_MangledTypeQueryModule(swig_module.next, &swig_module, cast->type->name); +#ifdef SWIGRUNTIME_DEBUG + if (ret) printf("SWIG_InitializeModule: found cast %s\n", ret->name); +#endif + } + if (ret) { + if (type == swig_module.type_initial[i]) { +#ifdef SWIGRUNTIME_DEBUG + printf("SWIG_InitializeModule: skip old type %s\n", ret->name); +#endif + cast->type = ret; + ret = 0; + } else { + /* Check for casting already in the list */ + swig_cast_info *ocast = SWIG_TypeCheck(ret->name, type); +#ifdef SWIGRUNTIME_DEBUG + if (ocast) printf("SWIG_InitializeModule: skip old cast %s\n", ret->name); +#endif + if (!ocast) ret = 0; + } + } + + if (!ret) { +#ifdef SWIGRUNTIME_DEBUG + printf("SWIG_InitializeModule: adding cast %s\n", cast->type->name); +#endif + if (type->cast) { + type->cast->prev = cast; + cast->next = type->cast; + } + type->cast = cast; + } + cast++; + } + /* Set entry in modules->types array equal to the type */ + swig_module.types[i] = type; + } + swig_module.types[i] = 0; + +#ifdef SWIGRUNTIME_DEBUG + printf("**** SWIG_InitializeModule: Cast List ******\n"); + for (i = 0; i < swig_module.size; ++i) { + int j = 0; + swig_cast_info *cast = swig_module.cast_initial[i]; + printf("SWIG_InitializeModule: type %d %s\n", i, swig_module.type_initial[i]->name); + while (cast->type) { + printf("SWIG_InitializeModule: cast type %s\n", cast->type->name); + cast++; + ++j; + } + printf("---- Total casts: %d\n",j); + } + printf("**** SWIG_InitializeModule: Cast List ******\n"); +#endif +} + +/* This function will propagate the clientdata field of type to +* any new swig_type_info structures that have been added into the list +* of equivalent types. It is like calling +* SWIG_TypeClientData(type, clientdata) a second time. +*/ +SWIGRUNTIME void +SWIG_PropagateClientData(void) { + size_t i; + swig_cast_info *equiv; + static int init_run = 0; + + if (init_run) return; + init_run = 1; + + for (i = 0; i < swig_module.size; i++) { + if (swig_module.types[i]->clientdata) { + equiv = swig_module.types[i]->cast; + while (equiv) { + if (!equiv->converter) { + if (equiv->type && !equiv->type->clientdata) + SWIG_TypeClientData(equiv->type, swig_module.types[i]->clientdata); + } + equiv = equiv->next; + } + } + } +} + +#ifdef __cplusplus +#if 0 +{ + /* c-mode */ +#endif +} +#endif + + + +#ifdef __cplusplus +extern "C" { +#endif + + /* Python-specific SWIG API */ +#define SWIG_newvarlink() SWIG_Python_newvarlink() +#define SWIG_addvarlink(p, name, get_attr, set_attr) SWIG_Python_addvarlink(p, name, get_attr, set_attr) +#define SWIG_InstallConstants(d, constants) SWIG_Python_InstallConstants(d, constants) + + /* ----------------------------------------------------------------------------- + * global variable support code. + * ----------------------------------------------------------------------------- */ + + typedef struct swig_globalvar { + char *name; /* Name of global variable */ + PyObject *(*get_attr)(void); /* Return the current value */ + int (*set_attr)(PyObject *); /* Set the value */ + struct swig_globalvar *next; + } swig_globalvar; + + typedef struct swig_varlinkobject { + PyObject_HEAD + swig_globalvar *vars; + } swig_varlinkobject; + + SWIGINTERN PyObject * + swig_varlink_repr(swig_varlinkobject *SWIGUNUSEDPARM(v)) { +#if PY_VERSION_HEX >= 0x03000000 + return PyUnicode_InternFromString(""); +#else + return PyString_FromString(""); +#endif + } + + SWIGINTERN PyObject * + swig_varlink_str(swig_varlinkobject *v) { +#if PY_VERSION_HEX >= 0x03000000 + PyObject *str = PyUnicode_InternFromString("("); + PyObject *tail; + PyObject *joined; + swig_globalvar *var; + for (var = v->vars; var; var=var->next) { + tail = PyUnicode_FromString(var->name); + joined = PyUnicode_Concat(str, tail); + Py_DecRef(str); + Py_DecRef(tail); + str = joined; + if (var->next) { + tail = PyUnicode_InternFromString(", "); + joined = PyUnicode_Concat(str, tail); + Py_DecRef(str); + Py_DecRef(tail); + str = joined; + } + } + tail = PyUnicode_InternFromString(")"); + joined = PyUnicode_Concat(str, tail); + Py_DecRef(str); + Py_DecRef(tail); + str = joined; +#else + PyObject *str = PyString_FromString("("); + swig_globalvar *var; + for (var = v->vars; var; var=var->next) { + PyString_ConcatAndDel(&str,PyString_FromString(var->name)); + if (var->next) PyString_ConcatAndDel(&str,PyString_FromString(", ")); + } + PyString_ConcatAndDel(&str,PyString_FromString(")")); +#endif + return str; + } + + SWIGINTERN int + swig_varlink_print(swig_varlinkobject *v, FILE *fp, int SWIGUNUSEDPARM(flags)) { + char *tmp; + PyObject *str = swig_varlink_str(v); + fprintf(fp,"Swig global variables "); + fprintf(fp,"%s\n", tmp = SWIG_Python_str_AsChar(str)); + SWIG_Python_str_DelForPy3(tmp); + Py_DECREF(str); + return 0; + } + + SWIGINTERN void + swig_varlink_dealloc(swig_varlinkobject *v) { + swig_globalvar *var = v->vars; + while (var) { + swig_globalvar *n = var->next; + free(var->name); + free(var); + var = n; + } + } + + SWIGINTERN PyObject * + swig_varlink_getattr(swig_varlinkobject *v, char *n) { + PyObject *res = NULL; + swig_globalvar *var = v->vars; + while (var) { + if (strcmp(var->name,n) == 0) { + res = (*var->get_attr)(); + break; + } + var = var->next; + } + if (res == NULL && !PyErr_Occurred()) { + PyErr_Format(PyExc_AttributeError, "Unknown C global variable '%s'", n); + } + return res; + } + + SWIGINTERN int + swig_varlink_setattr(swig_varlinkobject *v, char *n, PyObject *p) { + int res = 1; + swig_globalvar *var = v->vars; + while (var) { + if (strcmp(var->name,n) == 0) { + res = (*var->set_attr)(p); + break; + } + var = var->next; + } + if (res == 1 && !PyErr_Occurred()) { + PyErr_Format(PyExc_AttributeError, "Unknown C global variable '%s'", n); + } + return res; + } + + SWIGINTERN PyTypeObject* + swig_varlink_type(void) { + static char varlink__doc__[] = "Swig var link object"; + static PyTypeObject varlink_type; + static int type_init = 0; + if (!type_init) { + const PyTypeObject tmp = { +#if PY_VERSION_HEX >= 0x03000000 + PyVarObject_HEAD_INIT(NULL, 0) +#else + PyObject_HEAD_INIT(NULL) + 0, /* ob_size */ +#endif + (char *)"swigvarlink", /* tp_name */ + sizeof(swig_varlinkobject), /* tp_basicsize */ + 0, /* tp_itemsize */ + (destructor) swig_varlink_dealloc, /* tp_dealloc */ + (printfunc) swig_varlink_print, /* tp_print */ + (getattrfunc) swig_varlink_getattr, /* tp_getattr */ + (setattrfunc) swig_varlink_setattr, /* tp_setattr */ + 0, /* tp_compare */ + (reprfunc) swig_varlink_repr, /* tp_repr */ + 0, /* tp_as_number */ + 0, /* tp_as_sequence */ + 0, /* tp_as_mapping */ + 0, /* tp_hash */ + 0, /* tp_call */ + (reprfunc) swig_varlink_str, /* tp_str */ + 0, /* tp_getattro */ + 0, /* tp_setattro */ + 0, /* tp_as_buffer */ + 0, /* tp_flags */ + varlink__doc__, /* tp_doc */ + 0, /* tp_traverse */ + 0, /* tp_clear */ + 0, /* tp_richcompare */ + 0, /* tp_weaklistoffset */ +#if PY_VERSION_HEX >= 0x02020000 + 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, /* tp_iter -> tp_weaklist */ +#endif +#if PY_VERSION_HEX >= 0x02030000 + 0, /* tp_del */ +#endif +#if PY_VERSION_HEX >= 0x02060000 + 0, /* tp_version_tag */ +#endif +#if PY_VERSION_HEX >= 0x03040000 + 0, /* tp_finalize */ +#endif +#ifdef COUNT_ALLOCS + 0, /* tp_allocs */ + 0, /* tp_frees */ + 0, /* tp_maxalloc */ +#if PY_VERSION_HEX >= 0x02050000 + 0, /* tp_prev */ +#endif + 0 /* tp_next */ +#endif + }; + varlink_type = tmp; + type_init = 1; +#if PY_VERSION_HEX < 0x02020000 + varlink_type.ob_type = &PyType_Type; +#else + if (PyType_Ready(&varlink_type) < 0) + return NULL; +#endif + } + return &varlink_type; + } + + /* Create a variable linking object for use later */ + SWIGINTERN PyObject * + SWIG_Python_newvarlink(void) { + swig_varlinkobject *result = PyObject_NEW(swig_varlinkobject, swig_varlink_type()); + if (result) { + result->vars = 0; + } + return ((PyObject*) result); + } + + SWIGINTERN void + SWIG_Python_addvarlink(PyObject *p, char *name, PyObject *(*get_attr)(void), int (*set_attr)(PyObject *p)) { + swig_varlinkobject *v = (swig_varlinkobject *) p; + swig_globalvar *gv = (swig_globalvar *) malloc(sizeof(swig_globalvar)); + if (gv) { + size_t size = strlen(name)+1; + gv->name = (char *)malloc(size); + if (gv->name) { + strncpy(gv->name,name,size); + gv->get_attr = get_attr; + gv->set_attr = set_attr; + gv->next = v->vars; + } + } + v->vars = gv; + } + + SWIGINTERN PyObject * + SWIG_globals(void) { + static PyObject *_SWIG_globals = 0; + if (!_SWIG_globals) _SWIG_globals = SWIG_newvarlink(); + return _SWIG_globals; + } + + /* ----------------------------------------------------------------------------- + * constants/methods manipulation + * ----------------------------------------------------------------------------- */ + + /* Install Constants */ + SWIGINTERN void + SWIG_Python_InstallConstants(PyObject *d, swig_const_info constants[]) { + PyObject *obj = 0; + size_t i; + for (i = 0; constants[i].type; ++i) { + switch(constants[i].type) { + case SWIG_PY_POINTER: + obj = SWIG_InternalNewPointerObj(constants[i].pvalue, *(constants[i]).ptype,0); + break; + case SWIG_PY_BINARY: + obj = SWIG_NewPackedObj(constants[i].pvalue, constants[i].lvalue, *(constants[i].ptype)); + break; + default: + obj = 0; + break; + } + if (obj) { + PyDict_SetItemString(d, constants[i].name, obj); + Py_DECREF(obj); + } + } + } + + /* -----------------------------------------------------------------------------*/ + /* Fix SwigMethods to carry the callback ptrs when needed */ + /* -----------------------------------------------------------------------------*/ + + SWIGINTERN void + SWIG_Python_FixMethods(PyMethodDef *methods, + swig_const_info *const_table, + swig_type_info **types, + swig_type_info **types_initial) { + size_t i; + for (i = 0; methods[i].ml_name; ++i) { + const char *c = methods[i].ml_doc; + if (!c) continue; + c = strstr(c, "swig_ptr: "); + if (c) { + int j; + swig_const_info *ci = 0; + const char *name = c + 10; + for (j = 0; const_table[j].type; ++j) { + if (strncmp(const_table[j].name, name, + strlen(const_table[j].name)) == 0) { + ci = &(const_table[j]); + break; + } + } + if (ci) { + void *ptr = (ci->type == SWIG_PY_POINTER) ? ci->pvalue : 0; + if (ptr) { + size_t shift = (ci->ptype) - types; + swig_type_info *ty = types_initial[shift]; + size_t ldoc = (c - methods[i].ml_doc); + size_t lptr = strlen(ty->name)+2*sizeof(void*)+2; + char *ndoc = (char*)malloc(ldoc + lptr + 10); + if (ndoc) { + char *buff = ndoc; + strncpy(buff, methods[i].ml_doc, ldoc); + buff += ldoc; + strncpy(buff, "swig_ptr: ", 10); + buff += 10; + SWIG_PackVoidPtr(buff, ptr, ty->name, lptr); + methods[i].ml_doc = ndoc; + } + } + } + } + } + } + +#ifdef __cplusplus +} +#endif + +/* -----------------------------------------------------------------------------* + * Partial Init method + * -----------------------------------------------------------------------------*/ + +#ifdef __cplusplus +extern "C" +#endif + +SWIGEXPORT +#if PY_VERSION_HEX >= 0x03000000 +PyObject* +#else +void +#endif +SWIG_init(void) { + PyObject *m, *d, *md; +#if PY_VERSION_HEX >= 0x03000000 + static struct PyModuleDef SWIG_module = { +# if PY_VERSION_HEX >= 0x03020000 + PyModuleDef_HEAD_INIT, +# else + { + PyObject_HEAD_INIT(NULL) + NULL, /* m_init */ + 0, /* m_index */ + NULL, /* m_copy */ + }, +# endif + (char *) SWIG_name, + NULL, + -1, + SwigMethods, + NULL, + NULL, + NULL, + NULL + }; +#endif + +#if defined(SWIGPYTHON_BUILTIN) + static SwigPyClientData SwigPyObject_clientdata = { + 0, 0, 0, 0, 0, 0, 0 + }; + static PyGetSetDef this_getset_def = { + (char *)"this", &SwigPyBuiltin_ThisClosure, NULL, NULL, NULL + }; + static SwigPyGetSet thisown_getset_closure = { + (PyCFunction) SwigPyObject_own, + (PyCFunction) SwigPyObject_own + }; + static PyGetSetDef thisown_getset_def = { + (char *)"thisown", SwigPyBuiltin_GetterClosure, SwigPyBuiltin_SetterClosure, NULL, &thisown_getset_closure + }; + PyTypeObject *builtin_pytype; + int builtin_base_count; + swig_type_info *builtin_basetype; + PyObject *tuple; + PyGetSetDescrObject *static_getset; + PyTypeObject *metatype; + PyTypeObject *swigpyobject; + SwigPyClientData *cd; + PyObject *public_interface, *public_symbol; + PyObject *this_descr; + PyObject *thisown_descr; + PyObject *self = 0; + int i; + + (void)builtin_pytype; + (void)builtin_base_count; + (void)builtin_basetype; + (void)tuple; + (void)static_getset; + (void)self; + + /* Metaclass is used to implement static member variables */ + metatype = SwigPyObjectType(); + assert(metatype); +#endif + + /* Fix SwigMethods to carry the callback ptrs when needed */ + SWIG_Python_FixMethods(SwigMethods, swig_const_table, swig_types, swig_type_initial); + +#if PY_VERSION_HEX >= 0x03000000 + m = PyModule_Create(&SWIG_module); +#else + m = Py_InitModule((char *) SWIG_name, SwigMethods); +#endif + + md = d = PyModule_GetDict(m); + (void)md; + + SWIG_InitializeModule(0); + +#ifdef SWIGPYTHON_BUILTIN + swigpyobject = SwigPyObject_TypeOnce(); + + SwigPyObject_stype = SWIG_MangledTypeQuery("_p_SwigPyObject"); + assert(SwigPyObject_stype); + cd = (SwigPyClientData*) SwigPyObject_stype->clientdata; + if (!cd) { + SwigPyObject_stype->clientdata = &SwigPyObject_clientdata; + SwigPyObject_clientdata.pytype = swigpyobject; + } else if (swigpyobject->tp_basicsize != cd->pytype->tp_basicsize) { + PyErr_SetString(PyExc_RuntimeError, "Import error: attempted to load two incompatible swig-generated modules."); +# if PY_VERSION_HEX >= 0x03000000 + return NULL; +# else + return; +# endif + } + + /* All objects have a 'this' attribute */ + this_descr = PyDescr_NewGetSet(SwigPyObject_type(), &this_getset_def); + (void)this_descr; + + /* All objects have a 'thisown' attribute */ + thisown_descr = PyDescr_NewGetSet(SwigPyObject_type(), &thisown_getset_def); + (void)thisown_descr; + + public_interface = PyList_New(0); + public_symbol = 0; + (void)public_symbol; + + PyDict_SetItemString(md, "__all__", public_interface); + Py_DECREF(public_interface); + for (i = 0; SwigMethods[i].ml_name != NULL; ++i) + SwigPyBuiltin_AddPublicSymbol(public_interface, SwigMethods[i].ml_name); + for (i = 0; swig_const_table[i].name != 0; ++i) + SwigPyBuiltin_AddPublicSymbol(public_interface, swig_const_table[i].name); +#endif + + SWIG_InstallConstants(d,swig_const_table); + + SWIG_Python_SetConstant(d, "VERSION",SWIG_FromCharPtr("0.85")); + SWIG_Python_SetConstant(d, "SUB_STREAMS_CNT",SWIG_From_int((int)(10))); + SWIG_Python_SetConstant(d, "TELETEXT_CHUNK_LEN",SWIG_From_int((int)(1+8+44))); + PyDict_SetItemString(md,(char *)"cvar", SWIG_globals()); + SWIG_addvarlink(SWIG_globals(),(char *)"end_of_file",Swig_var_end_of_file_get, Swig_var_end_of_file_set); + SWIG_addvarlink(SWIG_globals(),(char *)"top_field_first",Swig_var_top_field_first_get, Swig_var_top_field_first_set); + SWIG_addvarlink(SWIG_globals(),(char *)"strangeheader",Swig_var_strangeheader_get, Swig_var_strangeheader_set); + SWIG_addvarlink(SWIG_globals(),(char *)"desc",Swig_var_desc_get, Swig_var_desc_set); + SWIG_addvarlink(SWIG_globals(),(char *)"FILEBUFFERSIZE",Swig_var_FILEBUFFERSIZE_get, Swig_var_FILEBUFFERSIZE_set); + SWIG_addvarlink(SWIG_globals(),(char *)"firstcall",Swig_var_firstcall_get, Swig_var_firstcall_set); + SWIG_addvarlink(SWIG_globals(),(char *)"tspacket",Swig_var_tspacket_get, Swig_var_tspacket_set); + SWIG_addvarlink(SWIG_globals(),(char *)"last_pat_payload",Swig_var_last_pat_payload_get, Swig_var_last_pat_payload_set); + SWIG_addvarlink(SWIG_globals(),(char *)"last_pat_length",Swig_var_last_pat_length_get, Swig_var_last_pat_length_set); + SWIG_addvarlink(SWIG_globals(),(char *)"terminate_asap",Swig_var_terminate_asap_get, Swig_var_terminate_asap_set); + SWIG_Python_SetConstant(d, "HAUPPAGE_CCPID",SWIG_From_int((int)(1003))); + SWIG_addvarlink(SWIG_globals(),(char *)"teletext_mode",Swig_var_teletext_mode_get, Swig_var_teletext_mode_set); + SWIG_Python_SetConstant(d, "MAX_TLT_PAGES",SWIG_From_int((int)(1000))); + SWIG_addvarlink(SWIG_globals(),(char *)"tlt_config",Swig_var_tlt_config_get, Swig_var_tlt_config_set); + SWIG_addvarlink(SWIG_globals(),(char *)"ccx_options",Swig_var_ccx_options_get, Swig_var_ccx_options_set); + SWIG_addvarlink(SWIG_globals(),(char *)"signal_ctx",Swig_var_signal_ctx_get, Swig_var_signal_ctx_set); +#if PY_VERSION_HEX >= 0x03000000 + return m; +#else + return; +#endif +} + diff --git a/linux/module_generator b/linux/module_generator new file mode 100755 index 00000000..0524698b --- /dev/null +++ b/linux/module_generator @@ -0,0 +1,12 @@ +#!/bin/bash +SRC_LIBPNG="$(find ../src/libpng/ -name '*.c')" +SRC_ZLIB="$(find ../src/zlib/ -name '*.c')" +SRC_ZVBI="$(find ../src/zvbi/ -name '*.c')" +SRC_CCX="$(find ../src/lib_ccx/ -name '*.c')" +SRC_GPAC="$(find ../src/gpacmp4/ -name '*.c')" +SRC_HASH="$(find ../src/lib_hash/ -name '*.c')" +SRC_PROTOBUF="$(find ../src/protobuf-c/ -name '*.c')" +SRC_UTF8PROC="../src/utf8proc/utf8proc.c" +BLD_SOURCES="../src/ccextractor.c ../src/ccextractorapi_wrap.c $SRC_CCX $SRC_GPAC $SRC_ZLIB $SRC_ZVBI $SRC_LIBPNG $SRC_HASH $SRC_PROTOBUF $SRC_UTF8PROC" + +python setup.py $BLD_SOURCES diff --git a/src/ccextractor.c b/src/ccextractor.c index 24486e76..23338bcc 100644 --- a/src/ccextractor.c +++ b/src/ccextractor.c @@ -1,3 +1,4 @@ + /* CCExtractor, originally by carlos at ccextractor.org, now a lot of people. Credits: See CHANGES.TXT License: GPL 2.0 @@ -57,444 +58,8 @@ void print_end_msg() mprint("https://github.com/CCExtractor/ccextractor/issues\n"); } -///////////////////////////////////////////////////////////////// - struct ccx_s_options ccx_options; -int api_start(struct ccx_s_options api_options){ - struct lib_ccx_ctx *ctx; - struct lib_cc_decode *dec_ctx = NULL; - int ret = 0, tmp; - enum ccx_stream_mode_enum stream_mode; - -#if defined(ENABLE_OCR) && defined(_WIN32) - setMsgSeverity(LEPT_MSG_SEVERITY); -#endif -#ifdef ENABLE_HARDSUBX - if(api_options.hardsubx) - { - // Perform burned in subtitle extraction - hardsubx(&api_options); - return 0; - } -#endif - // Initialize CCExtractor libraries - ctx = init_libraries(&api_options); - if (!ctx && errno == ENOMEM) - fatal (EXIT_NOT_ENOUGH_MEMORY, "Not enough memory\n"); - else if (!ctx && errno == EINVAL) - fatal (CCX_COMMON_EXIT_BUG_BUG, "Invalid option to CCextractor Library\n"); - else if (!ctx && errno == EPERM) - fatal (CCX_COMMON_EXIT_FILE_CREATION_FAILED, "Unable to create output file: Operation not permitted.\n"); - else if (!ctx && errno == EACCES) - fatal (CCX_COMMON_EXIT_FILE_CREATION_FAILED, "Unable to create output file: Permission denied\n"); - else if (!ctx) - fatal (EXIT_NOT_CLASSIFIED, "Unable to create Library Context %d\n",errno); - -#ifdef WITH_LIBCURL - curl_global_init(CURL_GLOBAL_ALL); - - /* get a curl handle */ - curl = curl_easy_init(); - if (!curl) - { - curl_global_cleanup(); // Must be done even on init fail - fatal (EXIT_NOT_CLASSIFIED, "Unable to init curl."); - } -#endif - - int show_myth_banner = 0; - - params_dump(ctx); - - // default teletext page - if (tlt_config.page > 0) { - // dec to BCD, magazine pages numbers are in BCD (ETSI 300 706) - tlt_config.page = ((tlt_config.page / 100) << 8) | (((tlt_config.page / 10) % 10) << 4) | (tlt_config.page % 10); - } - - if (api_options.transcript_settings.xds) - { - if (api_options.write_format != CCX_OF_TRANSCRIPT) - { - api_options.transcript_settings.xds = 0; - mprint ("Warning: -xds ignored, XDS can only be exported to transcripts at this time.\n"); - } - } - - - time_t start, final; - time(&start); - - if (api_options.binary_concat) - { - ctx->total_inputsize=get_total_file_size(ctx); - if (ctx->total_inputsize < 0) - { - switch (ctx->total_inputsize) - { - case -1*ENOENT: - fatal(EXIT_NO_INPUT_FILES, "Failed to open file: File does not exist."); - case -1*EACCES: - fatal(EXIT_READ_ERROR, "Failed to open file: Unable to access"); - case -1*EINVAL: - fatal(EXIT_READ_ERROR, "Failed to open file: Invalid opening flag."); - case -1*EMFILE: - fatal(EXIT_TOO_MANY_INPUT_FILES, "Failed to open file: Too many files are open."); - default: - fatal(EXIT_READ_ERROR, "Failed to open file: Reason unknown"); - } - } - } - -#ifndef _WIN32 - signal_ctx = ctx; - m_signal(SIGINT, sigint_handler); - m_signal(SIGTERM, sigterm_handler); - m_signal(SIGUSR1, sigusr1_handler); -#endif - terminate_asap = 0; - -#ifdef ENABLE_SHARING - if (api_options.translate_enabled && ctx->num_input_files > 1) - { - mprint("[share] WARNING: simultaneous translation of several input files is not supported yet\n"); - api_options.translate_enabled = 0; - api_options.sharing_enabled = 0; - } - if (api_options.translate_enabled) - { - mprint("[share] launching translate service\n"); - ccx_share_launch_translator(api_options.translate_langs, api_options.translate_key); - } -#endif //ENABLE_SHARING - ret = 0; - while (switch_to_next_file(ctx, 0)) - { - prepare_for_new_file(ctx); -#ifdef ENABLE_SHARING - if (api_options.sharing_enabled) - ccx_share_start(ctx->basefilename); -#endif //ENABLE_SHARING - - stream_mode = ctx->demux_ctx->get_stream_mode(ctx->demux_ctx); - // Disable sync check for raw formats - they have the right timeline. - // Also true for bin formats, but -nosync might have created a - // broken timeline for debug purposes. - // Disable too in MP4, specs doesn't say that there can't be a jump - switch (stream_mode) - { - case CCX_SM_MCPOODLESRAW: - case CCX_SM_RCWT: - case CCX_SM_MP4: -#ifdef WTV_DEBUG - case CCX_SM_HEX_DUMP: -#endif - ccx_common_timing_settings.disable_sync_check = 1; - break; - default: - break; - } - /* ----------------------------------------------------------------- - MAIN LOOP - ----------------------------------------------------------------- */ - switch (stream_mode) - { - case CCX_SM_ELEMENTARY_OR_NOT_FOUND: - if (!api_options.use_gop_as_pts) // If !0 then the user selected something - api_options.use_gop_as_pts = 1; // Force GOP timing for ES - ccx_common_timing_settings.is_elementary_stream = 1; - case CCX_SM_TRANSPORT: - case CCX_SM_PROGRAM: - case CCX_SM_ASF: - case CCX_SM_WTV: - case CCX_SM_GXF: -#ifdef ENABLE_FFMPEG - case CCX_SM_FFMPEG: -#endif - if (!api_options.use_gop_as_pts) // If !0 then the user selected something - api_options.use_gop_as_pts = 0; - if (api_options.ignore_pts_jumps) - ccx_common_timing_settings.disable_sync_check = 1; - mprint ("\rAnalyzing data in general mode\n"); - tmp = general_loop(ctx); - if (!ret) ret = tmp; - break; - case CCX_SM_MCPOODLESRAW: - mprint ("\rAnalyzing data in McPoodle raw mode\n"); - tmp = raw_loop(ctx); - if (!ret) ret = tmp; - break; - case CCX_SM_RCWT: - mprint ("\rAnalyzing data in CCExtractor's binary format\n"); - tmp = rcwt_loop(ctx); - if (!ret) ret = tmp; - break; - case CCX_SM_MYTH: - mprint ("\rAnalyzing data in MythTV mode\n"); - show_myth_banner = 1; - tmp = myth_loop(ctx); - if (!ret) ret = tmp; - break; - case CCX_SM_MP4: - mprint ("\rAnalyzing data with GPAC (MP4 library)\n"); - close_input_file(ctx); // No need to have it open. GPAC will do it for us - if (ctx->current_file == -1) // We don't have a file to open, must be stdin, and GPAC is incompatible with stdin - { - fatal (EXIT_INCOMPATIBLE_PARAMETERS, "MP4 requires an actual file, it's not possible to read from a stream, including stdin.\n"); - } - if(api_options.extract_chapters) - { - tmp = dumpchapters(ctx, &ctx->mp4_cfg, ctx->inputfile[ctx->current_file]); - } - else - { - tmp = processmp4(ctx, &ctx->mp4_cfg, ctx->inputfile[ctx->current_file]); - } - if (api_options.print_file_reports) - print_file_report(ctx); - if (!ret) ret = tmp; - break; - case CCX_SM_MKV: - mprint ("\rAnalyzing data in Matroska mode\n"); - tmp = matroska_loop(ctx); - if (!ret) ret = tmp; - break; -#ifdef WTV_DEBUG - case CCX_SM_HEX_DUMP: - close_input_file(ctx); // process_hex will open it in text mode - process_hex (ctx, ctx->inputfile[0]); - break; -#endif - case CCX_SM_AUTODETECT: - fatal(CCX_COMMON_EXIT_BUG_BUG, "Cannot be reached!"); - break; - } - - list_for_each_entry(dec_ctx, &ctx->dec_ctx_head, list, struct lib_cc_decode) - { - mprint("\n"); - dbg_print(CCX_DMT_DECODER_608, "\nTime stamps after last caption block was written:\n"); - dbg_print(CCX_DMT_DECODER_608, "GOP: %s \n", print_mstime_static(gop_time.ms) ); - - dbg_print(CCX_DMT_DECODER_608, "GOP: %s (%+3dms incl.)\n", - print_mstime_static((LLONG)(gop_time.ms - -first_gop_time.ms - +get_fts_max(dec_ctx->timing)-fts_at_gop_start)), - (int)(get_fts_max(dec_ctx->timing)-fts_at_gop_start)); - // When padding is active the CC block time should be within - // 1000/29.97 us of the differences. - dbg_print(CCX_DMT_DECODER_608, "Max. FTS: %s (without caption blocks since then)\n", - print_mstime_static(get_fts_max(dec_ctx->timing))); - - if (dec_ctx->codec == CCX_CODEC_ATSC_CC) - { - mprint ("\nTotal frames time: %s (%u frames at %.2ffps)\n", - print_mstime_static( (LLONG)(total_frames_count*1000/current_fps) ), - total_frames_count, current_fps); - } - - if (ctx->stat_hdtv) - { - mprint ("\rCC type 0: %d (%s)\n", dec_ctx->cc_stats[0], cc_types[0]); - mprint ("CC type 1: %d (%s)\n", dec_ctx->cc_stats[1], cc_types[1]); - mprint ("CC type 2: %d (%s)\n", dec_ctx->cc_stats[2], cc_types[2]); - mprint ("CC type 3: %d (%s)\n", dec_ctx->cc_stats[3], cc_types[3]); - } - // Add one frame as fts_max marks the beginning of the last frame, - // but we need the end. - dec_ctx->timing->fts_global += dec_ctx->timing->fts_max + (LLONG) (1000.0/current_fps); - // CFS: At least in Hauppage mode, cb_field can be responsible for ALL the - // timing (cb_fields having a huge number and fts_now and fts_global being 0 all - // the time), so we need to take that into account in fts_global before resetting - // counters. - if (cb_field1!=0) - dec_ctx->timing->fts_global += cb_field1*1001/3; - else if (cb_field2!=0) - dec_ctx->timing->fts_global += cb_field2*1001/3; - else - dec_ctx->timing->fts_global += cb_708*1001/3; - // Reset counters - This is needed if some captions are still buffered - // and need to be written after the last file is processed. - cb_field1 = 0; cb_field2 = 0; cb_708 = 0; - dec_ctx->timing->fts_now = 0; - dec_ctx->timing->fts_max = 0; - -#ifdef ENABLE_SHARING - if (api_options.sharing_enabled) - { - ccx_share_stream_done(ctx->basefilename); - ccx_share_stop(); - } -#endif //ENABLE_SHARING - - if (dec_ctx->total_pulldownframes) - mprint ("incl. pulldown frames: %s (%u frames at %.2ffps)\n", - print_mstime_static( (LLONG)(dec_ctx->total_pulldownframes*1000/current_fps) ), - dec_ctx->total_pulldownframes, current_fps); - if (dec_ctx->timing->pts_set >= 1 && dec_ctx->timing->min_pts != 0x01FFFFFFFFLL) - { - LLONG postsyncms = (LLONG) (dec_ctx->frames_since_last_gop*1000/current_fps); - mprint ("\nMin PTS: %s\n", - print_mstime_static( dec_ctx->timing->min_pts/(MPEG_CLOCK_FREQ/1000) - dec_ctx->timing->fts_offset)); - if (pts_big_change) - mprint ("(Reference clock was reset at some point, Min PTS is approximated)\n"); - mprint ("Max PTS: %s\n", - print_mstime_static( dec_ctx->timing->sync_pts/(MPEG_CLOCK_FREQ/1000) + postsyncms)); - - mprint ("Length: %s\n", - print_mstime_static( dec_ctx->timing->sync_pts/(MPEG_CLOCK_FREQ/1000) + postsyncms - - dec_ctx->timing->min_pts/(MPEG_CLOCK_FREQ/1000) + dec_ctx->timing->fts_offset )); - } - - - // dvr-ms files have invalid GOPs - if (gop_time.inited && first_gop_time.inited && stream_mode != CCX_SM_ASF) - { - mprint ("\nInitial GOP time: %s\n", - print_mstime_static(first_gop_time.ms)); - mprint ("Final GOP time: %s%+3dF\n", - print_mstime_static(gop_time.ms), - dec_ctx->frames_since_last_gop); - mprint ("Diff. GOP length: %s%+3dF", - print_mstime_static(gop_time.ms - first_gop_time.ms), - dec_ctx->frames_since_last_gop); - mprint (" (%s)\n\n", - print_mstime_static(gop_time.ms - first_gop_time.ms - +(LLONG) ((dec_ctx->frames_since_last_gop)*1000/29.97)) ); - } - - if (dec_ctx->false_pict_header) - mprint ("\nNumber of likely false picture headers (discarded): %d\n",dec_ctx->false_pict_header); - - if (dec_ctx->stat_numuserheaders) - mprint("\nTotal user data fields: %d\n", dec_ctx->stat_numuserheaders); - if (dec_ctx->stat_dvdccheaders) - mprint("DVD-type user data fields: %d\n", dec_ctx->stat_dvdccheaders); - if (dec_ctx->stat_scte20ccheaders) - mprint("SCTE-20 type user data fields: %d\n", dec_ctx->stat_scte20ccheaders); - if (dec_ctx->stat_replay4000headers) - mprint("ReplayTV 4000 user data fields: %d\n", dec_ctx->stat_replay4000headers); - if (dec_ctx->stat_replay5000headers) - mprint("ReplayTV 5000 user data fields: %d\n", dec_ctx->stat_replay5000headers); - if (dec_ctx->stat_hdtv) - mprint("HDTV type user data fields: %d\n", dec_ctx->stat_hdtv); - if (dec_ctx->stat_dishheaders) - mprint("Dish Network user data fields: %d\n", dec_ctx->stat_dishheaders); - if (dec_ctx->stat_divicom) - { - mprint("CEA608/Divicom user data fields: %d\n", dec_ctx->stat_divicom); - - mprint("\n\nNOTE! The CEA 608 / Divicom standard encoding for closed\n"); - mprint("caption is not well understood!\n\n"); - mprint("Please submit samples to the developers.\n\n\n"); - } - - } - - if(is_decoder_processed_enough(ctx) == CCX_TRUE) - break; - } // file loop - close_input_file(ctx); - free((void *) ctx->extension); - - prepare_for_new_file (ctx); // To reset counters used by handle_end_of_data() - - - time (&final); - - long proc_time=(long) (final-start); - mprint ("\rDone, processing time = %ld seconds\n", proc_time); -#if 0 - if (proc_time>0) - { - LLONG ratio=(get_fts_max()/10)/proc_time; - unsigned s1=(unsigned) (ratio/100); - unsigned s2=(unsigned) (ratio%100); - mprint ("Performance (real length/process time) = %u.%02u\n", - s1, s2); - } -#endif - - if (is_decoder_processed_enough(ctx) == CCX_TRUE) - { - mprint ("\rNote: Processing was canceled before all data was processed because\n"); - mprint ("\rone or more user-defined limits were reached.\n"); - } - -#ifdef CURL - if (curl) - curl_easy_cleanup(curl); - curl_global_cleanup(); -#endif - dinit_libraries(&ctx); - - if (!ret) - mprint("\nNo captions were found in input.\n"); - - print_end_msg(); - - if (show_myth_banner) - { - mprint("NOTICE: Due to the major rework in 0.49, we needed to change part of the timing\n"); - mprint("code in the MythTV's branch. Please report results to the address above. If\n"); - mprint("something is broken it will be fixed. Thanks\n"); - } - return ret ? EXIT_OK : EXIT_NO_CAPTIONS; -} -struct ccx_s_options* api_init_options(){ - init_options(&ccx_options); - return &ccx_options; -} -void checking_configuration_file(struct ccx_s_options api_options){ - parse_configuration(&api_options); -} - - -int compile_params(struct ccx_s_options *api_options,int argc){ - int ret = parse_parameters (api_options, argc, api_options->myarguments); - if (ret == EXIT_NO_INPUT_FILES) - { - print_usage (); - fatal (EXIT_NO_INPUT_FILES, "(This help screen was shown because there were no input files)\n"); - } - else if (ret == EXIT_WITH_HELP) - { - return EXIT_OK; - } - else if (ret != EXIT_OK) - { - exit(ret); - } - return EXIT_OK; -} - - -void api_add_param(struct ccx_s_options* api_options,char* arg){ - api_options->myarguments = realloc(api_options->myarguments, (api_options->argument_count+1) * sizeof *api_options->myarguments); - api_options->myarguments[api_options->argument_count] = malloc(strlen(arg)+1); - strcpy(api_options->myarguments[api_options->argument_count], arg); - api_options->argument_count++; -} -int main(int argc, char* argv[]){ - int ret,i,start_ret; - struct ccx_s_options* api_options = api_init_options(); - checking_configuration_file(*api_options); - for(i = 0; i < argc; i++) { - api_add_param(api_options,argv[i]); - } - int compile_ret = compile_params(api_options,argc); - printf("********************* %d *********************\n",api_options->argument_count); - start_ret = api_start(*api_options); - printf("Done compiling and extraction of subs"); - printf("********************* %d *********************\n",api_options->argument_count); - - return 1; -} - - -////////////////////////////////////////////////////////////////// -//struct ccx_s_options ccx_options; -int defined_main(int argc, char *argv[]) +int main(int argc, char *argv[]) { struct lib_ccx_ctx *ctx; struct lib_cc_decode *dec_ctx = NULL;