taglib-ruby 1.1.2 → 1.1.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/.github/FUNDING.yml +1 -0
- data/CHANGELOG.md +6 -0
- data/README.md +1 -1
- data/ext/taglib_aiff/taglib_aiff.i +1 -0
- data/ext/taglib_aiff/taglib_aiff_wrap.cxx +106 -53
- data/ext/taglib_base/taglib_base.i +16 -4
- data/ext/taglib_base/taglib_base_wrap.cxx +133 -80
- data/ext/taglib_flac/taglib_flac.i +1 -0
- data/ext/taglib_flac/taglib_flac_wrap.cxx +126 -73
- data/ext/taglib_flac_picture/taglib_flac_picture_wrap.cxx +105 -52
- data/ext/taglib_id3v1/taglib_id3v1_wrap.cxx +106 -53
- data/ext/taglib_id3v2/taglib_id3v2_wrap.cxx +198 -149
- data/ext/taglib_mp4/taglib_mp4.i +1 -0
- data/ext/taglib_mp4/taglib_mp4_wrap.cxx +134 -81
- data/ext/taglib_mpeg/taglib_mpeg.i +1 -0
- data/ext/taglib_mpeg/taglib_mpeg_wrap.cxx +134 -81
- data/ext/taglib_ogg/taglib_ogg_wrap.cxx +120 -67
- data/ext/taglib_vorbis/taglib_vorbis.i +1 -0
- data/ext/taglib_vorbis/taglib_vorbis_wrap.cxx +116 -63
- data/ext/taglib_wav/taglib_wav.i +1 -0
- data/ext/taglib_wav/taglib_wav_wrap.cxx +112 -59
- data/lib/taglib/version.rb +1 -1
- data/taglib-ruby.gemspec +1 -0
- metadata +3 -2
@@ -1,42 +1,14 @@
|
|
1
1
|
/* ----------------------------------------------------------------------------
|
2
|
-
* This file was automatically generated by SWIG (
|
3
|
-
* Version 4.
|
2
|
+
* This file was automatically generated by SWIG (https://www.swig.org).
|
3
|
+
* Version 4.1.1
|
4
4
|
*
|
5
|
-
*
|
6
|
-
*
|
7
|
-
* changes to this file unless you know what you are doing--modify the SWIG
|
8
|
-
* interface file instead.
|
5
|
+
* Do not make changes to this file unless you know what you are doing - modify
|
6
|
+
* the SWIG interface file instead.
|
9
7
|
* ----------------------------------------------------------------------------- */
|
10
8
|
|
11
9
|
|
12
|
-
#
|
10
|
+
#define SWIG_VERSION 0x040101
|
13
11
|
#define SWIGRUBY
|
14
|
-
#endif
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
#ifdef __cplusplus
|
19
|
-
/* SwigValueWrapper is described in swig.swg */
|
20
|
-
template<typename T> class SwigValueWrapper {
|
21
|
-
struct SwigMovePointer {
|
22
|
-
T *ptr;
|
23
|
-
SwigMovePointer(T *p) : ptr(p) { }
|
24
|
-
~SwigMovePointer() { delete ptr; }
|
25
|
-
SwigMovePointer& operator=(SwigMovePointer& rhs) { T* oldptr = ptr; ptr = 0; delete oldptr; ptr = rhs.ptr; rhs.ptr = 0; return *this; }
|
26
|
-
} pointer;
|
27
|
-
SwigValueWrapper& operator=(const SwigValueWrapper<T>& rhs);
|
28
|
-
SwigValueWrapper(const SwigValueWrapper<T>& rhs);
|
29
|
-
public:
|
30
|
-
SwigValueWrapper() : pointer(0) { }
|
31
|
-
SwigValueWrapper& operator=(const T& t) { SwigMovePointer tmp(new T(t)); pointer = tmp; return *this; }
|
32
|
-
operator T&() const { return *pointer.ptr; }
|
33
|
-
T *operator&() { return pointer.ptr; }
|
34
|
-
};
|
35
|
-
|
36
|
-
template <typename T> T SwigValueInit() {
|
37
|
-
return T();
|
38
|
-
}
|
39
|
-
#endif
|
40
12
|
|
41
13
|
/* -----------------------------------------------------------------------------
|
42
14
|
* This section contains generic SWIG labels for method/variable
|
@@ -332,6 +304,8 @@ template <typename T> T SwigValueInit() {
|
|
332
304
|
#define SWIG_POINTER_DISOWN 0x1
|
333
305
|
#define SWIG_CAST_NEW_MEMORY 0x2
|
334
306
|
#define SWIG_POINTER_NO_NULL 0x4
|
307
|
+
#define SWIG_POINTER_CLEAR 0x8
|
308
|
+
#define SWIG_POINTER_RELEASE (SWIG_POINTER_CLEAR | SWIG_POINTER_DISOWN)
|
335
309
|
|
336
310
|
/* Flags for new pointer objects */
|
337
311
|
#define SWIG_POINTER_OWN 0x1
|
@@ -403,7 +377,7 @@ template <typename T> T SwigValueInit() {
|
|
403
377
|
SWIG errors code.
|
404
378
|
|
405
379
|
Finally, if the SWIG_CASTRANK_MODE is enabled, the result code
|
406
|
-
allows
|
380
|
+
allows returning the 'cast rank', for example, if you have this
|
407
381
|
|
408
382
|
int food(double)
|
409
383
|
int fooi(int);
|
@@ -417,7 +391,13 @@ template <typename T> T SwigValueInit() {
|
|
417
391
|
*/
|
418
392
|
|
419
393
|
#define SWIG_OK (0)
|
394
|
+
/* Runtime errors are < 0 */
|
420
395
|
#define SWIG_ERROR (-1)
|
396
|
+
/* Errors in range -1 to -99 are in swigerrors.swg (errors for all languages including those not using the runtime) */
|
397
|
+
/* Errors in range -100 to -199 are language specific errors defined in *errors.swg */
|
398
|
+
/* Errors < -200 are generic runtime specific errors */
|
399
|
+
#define SWIG_ERROR_RELEASE_NOT_OWNED (-200)
|
400
|
+
|
421
401
|
#define SWIG_IsOK(r) (r >= 0)
|
422
402
|
#define SWIG_ArgError(r) ((r != SWIG_ERROR) ? r : SWIG_TypeError)
|
423
403
|
|
@@ -432,7 +412,7 @@ template <typename T> T SwigValueInit() {
|
|
432
412
|
#define SWIG_OLDOBJ (SWIG_OK)
|
433
413
|
#define SWIG_NEWOBJ (SWIG_OK | SWIG_NEWOBJMASK)
|
434
414
|
#define SWIG_TMPOBJ (SWIG_OK | SWIG_TMPOBJMASK)
|
435
|
-
/* Check, add and del mask methods */
|
415
|
+
/* Check, add and del object mask methods */
|
436
416
|
#define SWIG_AddNewMask(r) (SWIG_IsOK(r) ? (r | SWIG_NEWOBJMASK) : r)
|
437
417
|
#define SWIG_DelNewMask(r) (SWIG_IsOK(r) ? (r & ~SWIG_NEWOBJMASK) : r)
|
438
418
|
#define SWIG_IsNewObj(r) (SWIG_IsOK(r) && (r & SWIG_NEWOBJMASK))
|
@@ -578,7 +558,7 @@ SWIG_TypeCheck(const char *c, swig_type_info *ty) {
|
|
578
558
|
Identical to SWIG_TypeCheck, except strcmp is replaced with a pointer comparison
|
579
559
|
*/
|
580
560
|
SWIGRUNTIME swig_cast_info *
|
581
|
-
SWIG_TypeCheckStruct(swig_type_info *from, swig_type_info *ty) {
|
561
|
+
SWIG_TypeCheckStruct(const swig_type_info *from, swig_type_info *ty) {
|
582
562
|
if (ty) {
|
583
563
|
swig_cast_info *iter = ty->cast;
|
584
564
|
while (iter) {
|
@@ -638,9 +618,9 @@ SWIG_TypeName(const swig_type_info *ty) {
|
|
638
618
|
SWIGRUNTIME const char *
|
639
619
|
SWIG_TypePrettyName(const swig_type_info *type) {
|
640
620
|
/* The "str" field contains the equivalent pretty names of the
|
641
|
-
type, separated by vertical-bar characters.
|
642
|
-
|
643
|
-
|
621
|
+
type, separated by vertical-bar characters. Choose the last
|
622
|
+
name. It should be the most specific; a fully resolved name
|
623
|
+
but not necessarily with default template parameters expanded. */
|
644
624
|
if (!type) return NULL;
|
645
625
|
if (type->str != NULL) {
|
646
626
|
const char *last_name = type->str;
|
@@ -860,7 +840,7 @@ SWIG_UnpackDataName(const char *c, void *ptr, size_t sz, const char *name) {
|
|
860
840
|
}
|
861
841
|
#endif
|
862
842
|
|
863
|
-
/*
|
843
|
+
/* SWIG Errors applicable to all language modules, values are reserved from -1 to -99 */
|
864
844
|
#define SWIG_UnknownError -1
|
865
845
|
#define SWIG_IOError -2
|
866
846
|
#define SWIG_RuntimeError -3
|
@@ -876,9 +856,25 @@ SWIG_UnpackDataName(const char *c, void *ptr, size_t sz, const char *name) {
|
|
876
856
|
#define SWIG_NullReferenceError -13
|
877
857
|
|
878
858
|
|
859
|
+
#if __GNUC__ >= 7
|
860
|
+
#pragma GCC diagnostic push
|
861
|
+
#if defined(__cplusplus)
|
862
|
+
#pragma GCC diagnostic ignored "-Wregister"
|
863
|
+
#if __GNUC__ >= 10
|
864
|
+
#pragma GCC diagnostic ignored "-Wvolatile"
|
865
|
+
#if __GNUC__ >= 11
|
866
|
+
#pragma GCC diagnostic ignored "-Wdeprecated-enum-enum-conversion"
|
867
|
+
#endif
|
868
|
+
#endif
|
869
|
+
#endif
|
870
|
+
#endif
|
879
871
|
|
880
872
|
#include <ruby.h>
|
881
873
|
|
874
|
+
#if __GNUC__ >= 7
|
875
|
+
#pragma GCC diagnostic pop
|
876
|
+
#endif
|
877
|
+
|
882
878
|
/* Ruby 1.9.1 has a "memoisation optimisation" when compiling with GCC which
|
883
879
|
* breaks using rb_intern as an lvalue, as SWIG does. We work around this
|
884
880
|
* issue for now by disabling this.
|
@@ -1658,6 +1654,11 @@ SWIG_Ruby_ConvertPtrAndOwn(VALUE obj, void **ptr, swig_type_info *ty, int flags,
|
|
1658
1654
|
own->own = 0;
|
1659
1655
|
}
|
1660
1656
|
|
1657
|
+
if (((flags & SWIG_POINTER_RELEASE) == SWIG_POINTER_RELEASE)) {
|
1658
|
+
if (!RDATA(obj)->dfree)
|
1659
|
+
return SWIG_ERROR_RELEASE_NOT_OWNED;
|
1660
|
+
}
|
1661
|
+
|
1661
1662
|
/* Check to see if the input object is giving up ownership
|
1662
1663
|
of the underlying C struct or C++ object. If so then we
|
1663
1664
|
need to reset the destructor since the Ruby object no
|
@@ -1669,7 +1670,7 @@ SWIG_Ruby_ConvertPtrAndOwn(VALUE obj, void **ptr, swig_type_info *ty, int flags,
|
|
1669
1670
|
swig_class *sklass = (swig_class *) ty->clientdata;
|
1670
1671
|
track = sklass->trackObjects;
|
1671
1672
|
}
|
1672
|
-
|
1673
|
+
|
1673
1674
|
if (track) {
|
1674
1675
|
/* We are tracking objects for this class. Thus we change the destructor
|
1675
1676
|
* to SWIG_RubyRemoveTracking. This allows us to
|
@@ -1683,6 +1684,10 @@ SWIG_Ruby_ConvertPtrAndOwn(VALUE obj, void **ptr, swig_type_info *ty, int flags,
|
|
1683
1684
|
}
|
1684
1685
|
}
|
1685
1686
|
|
1687
|
+
if (flags & SWIG_POINTER_CLEAR) {
|
1688
|
+
DATA_PTR(obj) = 0;
|
1689
|
+
}
|
1690
|
+
|
1686
1691
|
/* Do type-checking if type info was provided */
|
1687
1692
|
if (ty) {
|
1688
1693
|
if (ty->clientdata) {
|
@@ -1790,6 +1795,7 @@ SWIG_Ruby_SetModule(swig_module_info *pointer)
|
|
1790
1795
|
{
|
1791
1796
|
/* register a new class */
|
1792
1797
|
VALUE cl = rb_define_class("swig_runtime_data", rb_cObject);
|
1798
|
+
rb_undef_alloc_func(cl);
|
1793
1799
|
/* create and store the structure pointer to a global variable */
|
1794
1800
|
swig_runtime_data_type_pointer = Data_Wrap_Struct(cl, 0, 0, pointer);
|
1795
1801
|
rb_define_readonly_variable("$swig_runtime_data_type_pointer" SWIG_RUNTIME_VERSION SWIG_TYPE_TABLE_NAME, &swig_runtime_data_type_pointer);
|
@@ -1820,7 +1826,7 @@ int SWIG_Ruby_arity( VALUE proc, int minimal )
|
|
1820
1826
|
{
|
1821
1827
|
if ( rb_respond_to( proc, swig_arity_id ) )
|
1822
1828
|
{
|
1823
|
-
VALUE num =
|
1829
|
+
VALUE num = rb_funcall2( proc, swig_arity_id, 0, 0 );
|
1824
1830
|
int arity = NUM2INT(num);
|
1825
1831
|
if ( arity < 0 && (arity+1) < -minimal ) return 1;
|
1826
1832
|
if ( arity == minimal ) return 1;
|
@@ -1838,7 +1844,7 @@ int SWIG_Ruby_arity( VALUE proc, int minimal )
|
|
1838
1844
|
|
1839
1845
|
#define SWIG_exception_fail(code, msg) do { SWIG_Error(code, msg); SWIG_fail; } while(0)
|
1840
1846
|
|
1841
|
-
#define SWIG_contract_assert(expr, msg) if (!(expr)) { SWIG_Error(SWIG_RuntimeError, msg); SWIG_fail; }
|
1847
|
+
#define SWIG_contract_assert(expr, msg) do { if (!(expr)) { SWIG_Error(SWIG_RuntimeError, msg); SWIG_fail; } } while (0)
|
1842
1848
|
|
1843
1849
|
|
1844
1850
|
|
@@ -1890,12 +1896,56 @@ static swig_module_info swig_module = {swig_types, 34, 0, 0, 0, 0};
|
|
1890
1896
|
|
1891
1897
|
static VALUE mID3v2;
|
1892
1898
|
|
1893
|
-
#
|
1894
|
-
#
|
1899
|
+
#ifdef __cplusplus
|
1900
|
+
#include <utility>
|
1901
|
+
/* SwigValueWrapper is described in swig.swg */
|
1902
|
+
template<typename T> class SwigValueWrapper {
|
1903
|
+
struct SwigSmartPointer {
|
1904
|
+
T *ptr;
|
1905
|
+
SwigSmartPointer(T *p) : ptr(p) { }
|
1906
|
+
~SwigSmartPointer() { delete ptr; }
|
1907
|
+
SwigSmartPointer& operator=(SwigSmartPointer& rhs) { T* oldptr = ptr; ptr = 0; delete oldptr; ptr = rhs.ptr; rhs.ptr = 0; return *this; }
|
1908
|
+
void reset(T *p) { T* oldptr = ptr; ptr = 0; delete oldptr; ptr = p; }
|
1909
|
+
} pointer;
|
1910
|
+
SwigValueWrapper& operator=(const SwigValueWrapper<T>& rhs);
|
1911
|
+
SwigValueWrapper(const SwigValueWrapper<T>& rhs);
|
1912
|
+
public:
|
1913
|
+
SwigValueWrapper() : pointer(0) { }
|
1914
|
+
SwigValueWrapper& operator=(const T& t) { SwigSmartPointer tmp(new T(t)); pointer = tmp; return *this; }
|
1915
|
+
#if __cplusplus >=201103L
|
1916
|
+
SwigValueWrapper& operator=(T&& t) { SwigSmartPointer tmp(new T(std::move(t))); pointer = tmp; return *this; }
|
1917
|
+
operator T&&() const { return std::move(*pointer.ptr); }
|
1918
|
+
#else
|
1919
|
+
operator T&() const { return *pointer.ptr; }
|
1920
|
+
#endif
|
1921
|
+
T *operator&() const { return pointer.ptr; }
|
1922
|
+
static void reset(SwigValueWrapper& t, T *p) { t.pointer.reset(p); }
|
1923
|
+
};
|
1895
1924
|
|
1925
|
+
/*
|
1926
|
+
* SwigValueInit() is a generic initialisation solution as the following approach:
|
1927
|
+
*
|
1928
|
+
* T c_result = T();
|
1929
|
+
*
|
1930
|
+
* doesn't compile for all types for example:
|
1931
|
+
*
|
1932
|
+
* unsigned int c_result = unsigned int();
|
1933
|
+
*/
|
1934
|
+
template <typename T> T SwigValueInit() {
|
1935
|
+
return T();
|
1936
|
+
}
|
1896
1937
|
|
1897
|
-
#
|
1898
|
-
#define
|
1938
|
+
#if __cplusplus >=201103L
|
1939
|
+
# define SWIG_STD_MOVE(OBJ) std::move(OBJ)
|
1940
|
+
#else
|
1941
|
+
# define SWIG_STD_MOVE(OBJ) OBJ
|
1942
|
+
#endif
|
1943
|
+
|
1944
|
+
#endif
|
1945
|
+
|
1946
|
+
|
1947
|
+
#define SWIG_RUBY_THREAD_BEGIN_BLOCK
|
1948
|
+
#define SWIG_RUBY_THREAD_END_BLOCK
|
1899
1949
|
|
1900
1950
|
|
1901
1951
|
#define SWIG_as_voidptr(a) const_cast< void * >(static_cast< const void * >(a))
|
@@ -2196,7 +2246,7 @@ SWIG_ruby_failed(VALUE SWIGUNUSEDPARM(arg1), VALUE SWIGUNUSEDPARM(arg2))
|
|
2196
2246
|
}
|
2197
2247
|
|
2198
2248
|
|
2199
|
-
/*@SWIG:/usr/local/Cellar/swig/4.
|
2249
|
+
/*@SWIG:/usr/local/Cellar/swig/4.1.1/share/swig/4.1.1/ruby/rubyprimtypes.swg,19,%ruby_aux_method@*/
|
2200
2250
|
SWIGINTERN VALUE SWIG_AUX_NUM2ULONG(VALUE arg)
|
2201
2251
|
{
|
2202
2252
|
VALUE *args = (VALUE *)arg;
|
@@ -2249,7 +2299,7 @@ SWIG_From_bool (bool value)
|
|
2249
2299
|
}
|
2250
2300
|
|
2251
2301
|
|
2252
|
-
/*@SWIG:/usr/local/Cellar/swig/4.
|
2302
|
+
/*@SWIG:/usr/local/Cellar/swig/4.1.1/share/swig/4.1.1/ruby/rubyprimtypes.swg,19,%ruby_aux_method@*/
|
2253
2303
|
SWIGINTERN VALUE SWIG_AUX_NUM2LONG(VALUE arg)
|
2254
2304
|
{
|
2255
2305
|
VALUE *args = (VALUE *)arg;
|
@@ -2384,10 +2434,6 @@ inline int SWIG_isfinite_func(T x) {
|
|
2384
2434
|
# define SWIG_isfinite(X) (SWIG_isfinite_func(X))
|
2385
2435
|
# elif defined(__GNUC__) && (__GNUC__ > 4 || (__GNUC__ == 4 && __GNUC_MINOR__ >= 2))
|
2386
2436
|
# define SWIG_isfinite(X) (__builtin_isfinite(X))
|
2387
|
-
# elif defined(__clang__) && defined(__has_builtin)
|
2388
|
-
# if __has_builtin(__builtin_isfinite)
|
2389
|
-
# define SWIG_isfinite(X) (__builtin_isfinite(X))
|
2390
|
-
# endif
|
2391
2437
|
# elif defined(_MSC_VER)
|
2392
2438
|
# define SWIG_isfinite(X) (_finite(X))
|
2393
2439
|
# elif defined(__sun) && defined(__SVR4)
|
@@ -2405,7 +2451,7 @@ inline int SWIG_isfinite_func(T x) {
|
|
2405
2451
|
#endif
|
2406
2452
|
|
2407
2453
|
|
2408
|
-
/*@SWIG:/usr/local/Cellar/swig/4.
|
2454
|
+
/*@SWIG:/usr/local/Cellar/swig/4.1.1/share/swig/4.1.1/ruby/rubyprimtypes.swg,19,%ruby_aux_method@*/
|
2409
2455
|
SWIGINTERN VALUE SWIG_AUX_NUM2DBL(VALUE arg)
|
2410
2456
|
{
|
2411
2457
|
VALUE *args = (VALUE *)arg;
|
@@ -2542,7 +2588,7 @@ SWIGINTERN VALUE _wrap_new_Header(int nargs, VALUE *args, VALUE self) {
|
|
2542
2588
|
return _wrap_new_Header__SWIG_0(nargs, args, self);
|
2543
2589
|
}
|
2544
2590
|
if (argc == 1) {
|
2545
|
-
int _v;
|
2591
|
+
int _v = 0;
|
2546
2592
|
int res = SWIG_AsCharPtrAndSize(argv[0], 0, NULL, 0);
|
2547
2593
|
_v = SWIG_CheckState(res);
|
2548
2594
|
if (_v) {
|
@@ -3229,7 +3275,7 @@ SWIGINTERN VALUE _wrap_new_Tag(int nargs, VALUE *args, VALUE self) {
|
|
3229
3275
|
return _wrap_new_Tag__SWIG_0(nargs, args, self);
|
3230
3276
|
}
|
3231
3277
|
if (argc == 2) {
|
3232
|
-
int _v;
|
3278
|
+
int _v = 0;
|
3233
3279
|
void *vptr = 0;
|
3234
3280
|
int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_TagLib__File, 0);
|
3235
3281
|
_v = SWIG_CheckState(res);
|
@@ -3244,7 +3290,7 @@ SWIGINTERN VALUE _wrap_new_Tag(int nargs, VALUE *args, VALUE self) {
|
|
3244
3290
|
}
|
3245
3291
|
}
|
3246
3292
|
if (argc == 3) {
|
3247
|
-
int _v;
|
3293
|
+
int _v = 0;
|
3248
3294
|
void *vptr = 0;
|
3249
3295
|
int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_TagLib__File, 0);
|
3250
3296
|
_v = SWIG_CheckState(res);
|
@@ -3842,7 +3888,7 @@ SWIGINTERN VALUE _wrap_Tag_frame_list(int nargs, VALUE *args, VALUE self) {
|
|
3842
3888
|
argv[ii] = args[ii-1];
|
3843
3889
|
}
|
3844
3890
|
if (argc == 1) {
|
3845
|
-
int _v;
|
3891
|
+
int _v = 0;
|
3846
3892
|
void *vptr = 0;
|
3847
3893
|
int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_TagLib__ID3v2__Tag, 0);
|
3848
3894
|
_v = SWIG_CheckState(res);
|
@@ -3851,7 +3897,7 @@ SWIGINTERN VALUE _wrap_Tag_frame_list(int nargs, VALUE *args, VALUE self) {
|
|
3851
3897
|
}
|
3852
3898
|
}
|
3853
3899
|
if (argc == 2) {
|
3854
|
-
int _v;
|
3900
|
+
int _v = 0;
|
3855
3901
|
void *vptr = 0;
|
3856
3902
|
int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_TagLib__ID3v2__Tag, 0);
|
3857
3903
|
_v = SWIG_CheckState(res);
|
@@ -4132,7 +4178,7 @@ SWIGINTERN VALUE _wrap_FrameFactory_create_frame(int nargs, VALUE *args, VALUE s
|
|
4132
4178
|
argv[ii] = args[ii-1];
|
4133
4179
|
}
|
4134
4180
|
if (argc == 2) {
|
4135
|
-
int _v;
|
4181
|
+
int _v = 0;
|
4136
4182
|
void *vptr = 0;
|
4137
4183
|
int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_TagLib__ID3v2__FrameFactory, 0);
|
4138
4184
|
_v = SWIG_CheckState(res);
|
@@ -4145,7 +4191,7 @@ SWIGINTERN VALUE _wrap_FrameFactory_create_frame(int nargs, VALUE *args, VALUE s
|
|
4145
4191
|
}
|
4146
4192
|
}
|
4147
4193
|
if (argc == 3) {
|
4148
|
-
int _v;
|
4194
|
+
int _v = 0;
|
4149
4195
|
void *vptr = 0;
|
4150
4196
|
int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_TagLib__ID3v2__FrameFactory, 0);
|
4151
4197
|
_v = SWIG_CheckState(res);
|
@@ -4163,7 +4209,7 @@ SWIGINTERN VALUE _wrap_FrameFactory_create_frame(int nargs, VALUE *args, VALUE s
|
|
4163
4209
|
}
|
4164
4210
|
}
|
4165
4211
|
if (argc == 3) {
|
4166
|
-
int _v;
|
4212
|
+
int _v = 0;
|
4167
4213
|
void *vptr = 0;
|
4168
4214
|
int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_TagLib__ID3v2__FrameFactory, 0);
|
4169
4215
|
_v = SWIG_CheckState(res);
|
@@ -4182,7 +4228,7 @@ SWIGINTERN VALUE _wrap_FrameFactory_create_frame(int nargs, VALUE *args, VALUE s
|
|
4182
4228
|
}
|
4183
4229
|
}
|
4184
4230
|
if (argc == 3) {
|
4185
|
-
int _v;
|
4231
|
+
int _v = 0;
|
4186
4232
|
void *vptr = 0;
|
4187
4233
|
int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_TagLib__ID3v2__FrameFactory, 0);
|
4188
4234
|
_v = SWIG_CheckState(res);
|
@@ -4334,7 +4380,7 @@ SWIGINTERN VALUE _wrap_new_RelativeVolumeFrame(int nargs, VALUE *args, VALUE sel
|
|
4334
4380
|
return _wrap_new_RelativeVolumeFrame__SWIG_0(nargs, args, self);
|
4335
4381
|
}
|
4336
4382
|
if (argc == 1) {
|
4337
|
-
int _v;
|
4383
|
+
int _v = 0;
|
4338
4384
|
int res = SWIG_AsCharPtrAndSize(argv[0], 0, NULL, 0);
|
4339
4385
|
_v = SWIG_CheckState(res);
|
4340
4386
|
if (_v) {
|
@@ -4537,7 +4583,7 @@ SWIGINTERN VALUE _wrap_RelativeVolumeFrame_volume_adjustment_index(int nargs, VA
|
|
4537
4583
|
argv[ii] = args[ii-1];
|
4538
4584
|
}
|
4539
4585
|
if (argc == 1) {
|
4540
|
-
int _v;
|
4586
|
+
int _v = 0;
|
4541
4587
|
void *vptr = 0;
|
4542
4588
|
int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_TagLib__ID3v2__RelativeVolumeFrame, 0);
|
4543
4589
|
_v = SWIG_CheckState(res);
|
@@ -4546,7 +4592,7 @@ SWIGINTERN VALUE _wrap_RelativeVolumeFrame_volume_adjustment_index(int nargs, VA
|
|
4546
4592
|
}
|
4547
4593
|
}
|
4548
4594
|
if (argc == 2) {
|
4549
|
-
int _v;
|
4595
|
+
int _v = 0;
|
4550
4596
|
void *vptr = 0;
|
4551
4597
|
int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_TagLib__ID3v2__RelativeVolumeFrame, 0);
|
4552
4598
|
_v = SWIG_CheckState(res);
|
@@ -4648,7 +4694,7 @@ SWIGINTERN VALUE _wrap_RelativeVolumeFrame_set_volume_adjustment_index(int nargs
|
|
4648
4694
|
argv[ii] = args[ii-1];
|
4649
4695
|
}
|
4650
4696
|
if (argc == 2) {
|
4651
|
-
int _v;
|
4697
|
+
int _v = 0;
|
4652
4698
|
void *vptr = 0;
|
4653
4699
|
int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_TagLib__ID3v2__RelativeVolumeFrame, 0);
|
4654
4700
|
_v = SWIG_CheckState(res);
|
@@ -4663,7 +4709,7 @@ SWIGINTERN VALUE _wrap_RelativeVolumeFrame_set_volume_adjustment_index(int nargs
|
|
4663
4709
|
}
|
4664
4710
|
}
|
4665
4711
|
if (argc == 3) {
|
4666
|
-
int _v;
|
4712
|
+
int _v = 0;
|
4667
4713
|
void *vptr = 0;
|
4668
4714
|
int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_TagLib__ID3v2__RelativeVolumeFrame, 0);
|
4669
4715
|
_v = SWIG_CheckState(res);
|
@@ -4761,7 +4807,7 @@ SWIGINTERN VALUE _wrap_RelativeVolumeFrame_volume_adjustment(int nargs, VALUE *a
|
|
4761
4807
|
argv[ii] = args[ii-1];
|
4762
4808
|
}
|
4763
4809
|
if (argc == 1) {
|
4764
|
-
int _v;
|
4810
|
+
int _v = 0;
|
4765
4811
|
void *vptr = 0;
|
4766
4812
|
int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_TagLib__ID3v2__RelativeVolumeFrame, 0);
|
4767
4813
|
_v = SWIG_CheckState(res);
|
@@ -4770,7 +4816,7 @@ SWIGINTERN VALUE _wrap_RelativeVolumeFrame_volume_adjustment(int nargs, VALUE *a
|
|
4770
4816
|
}
|
4771
4817
|
}
|
4772
4818
|
if (argc == 2) {
|
4773
|
-
int _v;
|
4819
|
+
int _v = 0;
|
4774
4820
|
void *vptr = 0;
|
4775
4821
|
int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_TagLib__ID3v2__RelativeVolumeFrame, 0);
|
4776
4822
|
_v = SWIG_CheckState(res);
|
@@ -4872,7 +4918,7 @@ SWIGINTERN VALUE _wrap_RelativeVolumeFrame_set_volume_adjustment(int nargs, VALU
|
|
4872
4918
|
argv[ii] = args[ii-1];
|
4873
4919
|
}
|
4874
4920
|
if (argc == 2) {
|
4875
|
-
int _v;
|
4921
|
+
int _v = 0;
|
4876
4922
|
void *vptr = 0;
|
4877
4923
|
int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_TagLib__ID3v2__RelativeVolumeFrame, 0);
|
4878
4924
|
_v = SWIG_CheckState(res);
|
@@ -4887,7 +4933,7 @@ SWIGINTERN VALUE _wrap_RelativeVolumeFrame_set_volume_adjustment(int nargs, VALU
|
|
4887
4933
|
}
|
4888
4934
|
}
|
4889
4935
|
if (argc == 3) {
|
4890
|
-
int _v;
|
4936
|
+
int _v = 0;
|
4891
4937
|
void *vptr = 0;
|
4892
4938
|
int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_TagLib__ID3v2__RelativeVolumeFrame, 0);
|
4893
4939
|
_v = SWIG_CheckState(res);
|
@@ -4942,7 +4988,7 @@ _wrap_RelativeVolumeFrame_peak_volume__SWIG_0(int argc, VALUE *argv, VALUE self)
|
|
4942
4988
|
}
|
4943
4989
|
arg2 = static_cast< TagLib::ID3v2::RelativeVolumeFrame::ChannelType >(val2);
|
4944
4990
|
result = ((TagLib::ID3v2::RelativeVolumeFrame const *)arg1)->peakVolume(arg2);
|
4945
|
-
vresult = SWIG_NewPointerObj((new TagLib::ID3v2::RelativeVolumeFrame::PeakVolume(
|
4991
|
+
vresult = SWIG_NewPointerObj((new TagLib::ID3v2::RelativeVolumeFrame::PeakVolume(result)), SWIGTYPE_p_TagLib__ID3v2__RelativeVolumeFrame__PeakVolume, SWIG_POINTER_OWN | 0 );
|
4946
4992
|
return vresult;
|
4947
4993
|
fail:
|
4948
4994
|
return Qnil;
|
@@ -4966,7 +5012,7 @@ _wrap_RelativeVolumeFrame_peak_volume__SWIG_1(int argc, VALUE *argv, VALUE self)
|
|
4966
5012
|
}
|
4967
5013
|
arg1 = reinterpret_cast< TagLib::ID3v2::RelativeVolumeFrame * >(argp1);
|
4968
5014
|
result = ((TagLib::ID3v2::RelativeVolumeFrame const *)arg1)->peakVolume();
|
4969
|
-
vresult = SWIG_NewPointerObj((new TagLib::ID3v2::RelativeVolumeFrame::PeakVolume(
|
5015
|
+
vresult = SWIG_NewPointerObj((new TagLib::ID3v2::RelativeVolumeFrame::PeakVolume(result)), SWIGTYPE_p_TagLib__ID3v2__RelativeVolumeFrame__PeakVolume, SWIG_POINTER_OWN | 0 );
|
4970
5016
|
return vresult;
|
4971
5017
|
fail:
|
4972
5018
|
return Qnil;
|
@@ -4985,7 +5031,7 @@ SWIGINTERN VALUE _wrap_RelativeVolumeFrame_peak_volume(int nargs, VALUE *args, V
|
|
4985
5031
|
argv[ii] = args[ii-1];
|
4986
5032
|
}
|
4987
5033
|
if (argc == 1) {
|
4988
|
-
int _v;
|
5034
|
+
int _v = 0;
|
4989
5035
|
void *vptr = 0;
|
4990
5036
|
int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_TagLib__ID3v2__RelativeVolumeFrame, 0);
|
4991
5037
|
_v = SWIG_CheckState(res);
|
@@ -4994,7 +5040,7 @@ SWIGINTERN VALUE _wrap_RelativeVolumeFrame_peak_volume(int nargs, VALUE *args, V
|
|
4994
5040
|
}
|
4995
5041
|
}
|
4996
5042
|
if (argc == 2) {
|
4997
|
-
int _v;
|
5043
|
+
int _v = 0;
|
4998
5044
|
void *vptr = 0;
|
4999
5045
|
int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_TagLib__ID3v2__RelativeVolumeFrame, 0);
|
5000
5046
|
_v = SWIG_CheckState(res);
|
@@ -5025,7 +5071,7 @@ _wrap_RelativeVolumeFrame_set_peak_volume__SWIG_0(int argc, VALUE *argv, VALUE s
|
|
5025
5071
|
TagLib::ID3v2::RelativeVolumeFrame::ChannelType arg3 ;
|
5026
5072
|
void *argp1 = 0 ;
|
5027
5073
|
int res1 = 0 ;
|
5028
|
-
void *argp2 ;
|
5074
|
+
void *argp2 = 0 ;
|
5029
5075
|
int res2 = 0 ;
|
5030
5076
|
int val3 ;
|
5031
5077
|
int ecode3 = 0 ;
|
@@ -5064,7 +5110,7 @@ _wrap_RelativeVolumeFrame_set_peak_volume__SWIG_1(int argc, VALUE *argv, VALUE s
|
|
5064
5110
|
TagLib::ID3v2::RelativeVolumeFrame::PeakVolume *arg2 = 0 ;
|
5065
5111
|
void *argp1 = 0 ;
|
5066
5112
|
int res1 = 0 ;
|
5067
|
-
void *argp2 ;
|
5113
|
+
void *argp2 = 0 ;
|
5068
5114
|
int res2 = 0 ;
|
5069
5115
|
|
5070
5116
|
if ((argc < 1) || (argc > 1)) {
|
@@ -5102,7 +5148,7 @@ SWIGINTERN VALUE _wrap_RelativeVolumeFrame_set_peak_volume(int nargs, VALUE *arg
|
|
5102
5148
|
argv[ii] = args[ii-1];
|
5103
5149
|
}
|
5104
5150
|
if (argc == 2) {
|
5105
|
-
int _v;
|
5151
|
+
int _v = 0;
|
5106
5152
|
void *vptr = 0;
|
5107
5153
|
int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_TagLib__ID3v2__RelativeVolumeFrame, 0);
|
5108
5154
|
_v = SWIG_CheckState(res);
|
@@ -5116,7 +5162,7 @@ SWIGINTERN VALUE _wrap_RelativeVolumeFrame_set_peak_volume(int nargs, VALUE *arg
|
|
5116
5162
|
}
|
5117
5163
|
}
|
5118
5164
|
if (argc == 3) {
|
5119
|
-
int _v;
|
5165
|
+
int _v = 0;
|
5120
5166
|
void *vptr = 0;
|
5121
5167
|
int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_TagLib__ID3v2__RelativeVolumeFrame, 0);
|
5122
5168
|
_v = SWIG_CheckState(res);
|
@@ -5413,7 +5459,7 @@ SWIGINTERN VALUE _wrap_new_AttachedPictureFrame(int nargs, VALUE *args, VALUE se
|
|
5413
5459
|
return _wrap_new_AttachedPictureFrame__SWIG_0(nargs, args, self);
|
5414
5460
|
}
|
5415
5461
|
if (argc == 1) {
|
5416
|
-
int _v;
|
5462
|
+
int _v = 0;
|
5417
5463
|
int res = SWIG_AsCharPtrAndSize(argv[0], 0, NULL, 0);
|
5418
5464
|
_v = SWIG_CheckState(res);
|
5419
5465
|
if (_v) {
|
@@ -5786,7 +5832,7 @@ _wrap_new_ChapterFrame__SWIG_1(int argc, VALUE *argv, VALUE self) {
|
|
5786
5832
|
int ecode4 = 0 ;
|
5787
5833
|
unsigned int val5 ;
|
5788
5834
|
int ecode5 = 0 ;
|
5789
|
-
void *argp6 ;
|
5835
|
+
void *argp6 = 0 ;
|
5790
5836
|
int res6 = 0 ;
|
5791
5837
|
TagLib::ID3v2::ChapterFrame *result = 0 ;
|
5792
5838
|
|
@@ -5914,7 +5960,7 @@ SWIGINTERN VALUE _wrap_new_ChapterFrame(int nargs, VALUE *args, VALUE self) {
|
|
5914
5960
|
argv[ii] = args[ii];
|
5915
5961
|
}
|
5916
5962
|
if (argc == 2) {
|
5917
|
-
int _v;
|
5963
|
+
int _v = 0;
|
5918
5964
|
void *vptr = 0;
|
5919
5965
|
int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_TagLib__ID3v2__Header, 0);
|
5920
5966
|
_v = SWIG_CheckState(res);
|
@@ -5927,7 +5973,7 @@ SWIGINTERN VALUE _wrap_new_ChapterFrame(int nargs, VALUE *args, VALUE self) {
|
|
5927
5973
|
}
|
5928
5974
|
}
|
5929
5975
|
if (argc == 5) {
|
5930
|
-
int _v;
|
5976
|
+
int _v = 0;
|
5931
5977
|
int res = SWIG_AsCharPtrAndSize(argv[0], 0, NULL, 0);
|
5932
5978
|
_v = SWIG_CheckState(res);
|
5933
5979
|
if (_v) {
|
@@ -5959,7 +6005,7 @@ SWIGINTERN VALUE _wrap_new_ChapterFrame(int nargs, VALUE *args, VALUE self) {
|
|
5959
6005
|
}
|
5960
6006
|
}
|
5961
6007
|
if (argc == 6) {
|
5962
|
-
int _v;
|
6008
|
+
int _v = 0;
|
5963
6009
|
int res = SWIG_AsCharPtrAndSize(argv[0], 0, NULL, 0);
|
5964
6010
|
_v = SWIG_CheckState(res);
|
5965
6011
|
if (_v) {
|
@@ -6380,7 +6426,7 @@ SWIGINTERN VALUE _wrap_ChapterFrame_embedded_frame_list(int nargs, VALUE *args,
|
|
6380
6426
|
argv[ii] = args[ii-1];
|
6381
6427
|
}
|
6382
6428
|
if (argc == 1) {
|
6383
|
-
int _v;
|
6429
|
+
int _v = 0;
|
6384
6430
|
void *vptr = 0;
|
6385
6431
|
int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_TagLib__ID3v2__ChapterFrame, 0);
|
6386
6432
|
_v = SWIG_CheckState(res);
|
@@ -6389,7 +6435,7 @@ SWIGINTERN VALUE _wrap_ChapterFrame_embedded_frame_list(int nargs, VALUE *args,
|
|
6389
6435
|
}
|
6390
6436
|
}
|
6391
6437
|
if (argc == 2) {
|
6392
|
-
int _v;
|
6438
|
+
int _v = 0;
|
6393
6439
|
void *vptr = 0;
|
6394
6440
|
int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_TagLib__ID3v2__ChapterFrame, 0);
|
6395
6441
|
_v = SWIG_CheckState(res);
|
@@ -6518,7 +6564,7 @@ SWIGINTERN VALUE _wrap_ChapterFrame_remove_embedded_frame(int nargs, VALUE *args
|
|
6518
6564
|
argv[ii] = args[ii-1];
|
6519
6565
|
}
|
6520
6566
|
if (argc == 2) {
|
6521
|
-
int _v;
|
6567
|
+
int _v = 0;
|
6522
6568
|
void *vptr = 0;
|
6523
6569
|
int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_TagLib__ID3v2__ChapterFrame, 0);
|
6524
6570
|
_v = SWIG_CheckState(res);
|
@@ -6532,7 +6578,7 @@ SWIGINTERN VALUE _wrap_ChapterFrame_remove_embedded_frame(int nargs, VALUE *args
|
|
6532
6578
|
}
|
6533
6579
|
}
|
6534
6580
|
if (argc == 3) {
|
6535
|
-
int _v;
|
6581
|
+
int _v = 0;
|
6536
6582
|
void *vptr = 0;
|
6537
6583
|
int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_TagLib__ID3v2__ChapterFrame, 0);
|
6538
6584
|
_v = SWIG_CheckState(res);
|
@@ -6737,7 +6783,7 @@ SWIGINTERN VALUE _wrap_new_CommentsFrame(int nargs, VALUE *args, VALUE self) {
|
|
6737
6783
|
return _wrap_new_CommentsFrame__SWIG_1(nargs, args, self);
|
6738
6784
|
}
|
6739
6785
|
if (argc == 1) {
|
6740
|
-
int _v;
|
6786
|
+
int _v = 0;
|
6741
6787
|
{
|
6742
6788
|
int res = SWIG_AsVal_int(argv[0], NULL);
|
6743
6789
|
_v = SWIG_CheckState(res);
|
@@ -6747,7 +6793,7 @@ SWIGINTERN VALUE _wrap_new_CommentsFrame(int nargs, VALUE *args, VALUE self) {
|
|
6747
6793
|
}
|
6748
6794
|
}
|
6749
6795
|
if (argc == 1) {
|
6750
|
-
int _v;
|
6796
|
+
int _v = 0;
|
6751
6797
|
int res = SWIG_AsCharPtrAndSize(argv[0], 0, NULL, 0);
|
6752
6798
|
_v = SWIG_CheckState(res);
|
6753
6799
|
if (_v) {
|
@@ -7109,7 +7155,7 @@ SWIGINTERN VALUE _wrap_new_GeneralEncapsulatedObjectFrame(int nargs, VALUE *args
|
|
7109
7155
|
return _wrap_new_GeneralEncapsulatedObjectFrame__SWIG_0(nargs, args, self);
|
7110
7156
|
}
|
7111
7157
|
if (argc == 1) {
|
7112
|
-
int _v;
|
7158
|
+
int _v = 0;
|
7113
7159
|
int res = SWIG_AsCharPtrAndSize(argv[0], 0, NULL, 0);
|
7114
7160
|
_v = SWIG_CheckState(res);
|
7115
7161
|
if (_v) {
|
@@ -7493,7 +7539,7 @@ SWIGINTERN VALUE _wrap_new_PopularimeterFrame(int nargs, VALUE *args, VALUE self
|
|
7493
7539
|
return _wrap_new_PopularimeterFrame__SWIG_0(nargs, args, self);
|
7494
7540
|
}
|
7495
7541
|
if (argc == 1) {
|
7496
|
-
int _v;
|
7542
|
+
int _v = 0;
|
7497
7543
|
int res = SWIG_AsCharPtrAndSize(argv[0], 0, NULL, 0);
|
7498
7544
|
_v = SWIG_CheckState(res);
|
7499
7545
|
if (_v) {
|
@@ -7771,7 +7817,7 @@ SWIGINTERN VALUE _wrap_new_PrivateFrame(int nargs, VALUE *args, VALUE self) {
|
|
7771
7817
|
return _wrap_new_PrivateFrame__SWIG_0(nargs, args, self);
|
7772
7818
|
}
|
7773
7819
|
if (argc == 1) {
|
7774
|
-
int _v;
|
7820
|
+
int _v = 0;
|
7775
7821
|
int res = SWIG_AsCharPtrAndSize(argv[0], 0, NULL, 0);
|
7776
7822
|
_v = SWIG_CheckState(res);
|
7777
7823
|
if (_v) {
|
@@ -7966,7 +8012,7 @@ _wrap_new_TableOfContentsFrame__SWIG_1(int argc, VALUE *argv, VALUE self) {
|
|
7966
8012
|
TagLib::ID3v2::FrameList *arg3 = 0 ;
|
7967
8013
|
TagLib::ByteVector tmp1 ;
|
7968
8014
|
TagLib::ByteVectorList tmp2 ;
|
7969
|
-
void *argp3 ;
|
8015
|
+
void *argp3 = 0 ;
|
7970
8016
|
int res3 = 0 ;
|
7971
8017
|
TagLib::ID3v2::TableOfContentsFrame *result = 0 ;
|
7972
8018
|
|
@@ -8074,7 +8120,7 @@ SWIGINTERN VALUE _wrap_new_TableOfContentsFrame(int nargs, VALUE *args, VALUE se
|
|
8074
8120
|
argv[ii] = args[ii];
|
8075
8121
|
}
|
8076
8122
|
if (argc == 1) {
|
8077
|
-
int _v;
|
8123
|
+
int _v = 0;
|
8078
8124
|
int res = SWIG_AsCharPtrAndSize(argv[0], 0, NULL, 0);
|
8079
8125
|
_v = SWIG_CheckState(res);
|
8080
8126
|
if (_v) {
|
@@ -8082,7 +8128,7 @@ SWIGINTERN VALUE _wrap_new_TableOfContentsFrame(int nargs, VALUE *args, VALUE se
|
|
8082
8128
|
}
|
8083
8129
|
}
|
8084
8130
|
if (argc == 2) {
|
8085
|
-
int _v;
|
8131
|
+
int _v = 0;
|
8086
8132
|
void *vptr = 0;
|
8087
8133
|
int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_TagLib__ID3v2__Header, 0);
|
8088
8134
|
_v = SWIG_CheckState(res);
|
@@ -8095,7 +8141,7 @@ SWIGINTERN VALUE _wrap_new_TableOfContentsFrame(int nargs, VALUE *args, VALUE se
|
|
8095
8141
|
}
|
8096
8142
|
}
|
8097
8143
|
if (argc == 2) {
|
8098
|
-
int _v;
|
8144
|
+
int _v = 0;
|
8099
8145
|
int res = SWIG_AsCharPtrAndSize(argv[0], 0, NULL, 0);
|
8100
8146
|
_v = SWIG_CheckState(res);
|
8101
8147
|
if (_v) {
|
@@ -8108,7 +8154,7 @@ SWIGINTERN VALUE _wrap_new_TableOfContentsFrame(int nargs, VALUE *args, VALUE se
|
|
8108
8154
|
}
|
8109
8155
|
}
|
8110
8156
|
if (argc == 3) {
|
8111
|
-
int _v;
|
8157
|
+
int _v = 0;
|
8112
8158
|
int res = SWIG_AsCharPtrAndSize(argv[0], 0, NULL, 0);
|
8113
8159
|
_v = SWIG_CheckState(res);
|
8114
8160
|
if (_v) {
|
@@ -8532,7 +8578,7 @@ SWIGINTERN VALUE _wrap_TableOfContentsFrame_embedded_frame_list(int nargs, VALUE
|
|
8532
8578
|
argv[ii] = args[ii-1];
|
8533
8579
|
}
|
8534
8580
|
if (argc == 1) {
|
8535
|
-
int _v;
|
8581
|
+
int _v = 0;
|
8536
8582
|
void *vptr = 0;
|
8537
8583
|
int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_TagLib__ID3v2__TableOfContentsFrame, 0);
|
8538
8584
|
_v = SWIG_CheckState(res);
|
@@ -8541,7 +8587,7 @@ SWIGINTERN VALUE _wrap_TableOfContentsFrame_embedded_frame_list(int nargs, VALUE
|
|
8541
8587
|
}
|
8542
8588
|
}
|
8543
8589
|
if (argc == 2) {
|
8544
|
-
int _v;
|
8590
|
+
int _v = 0;
|
8545
8591
|
void *vptr = 0;
|
8546
8592
|
int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_TagLib__ID3v2__TableOfContentsFrame, 0);
|
8547
8593
|
_v = SWIG_CheckState(res);
|
@@ -8670,7 +8716,7 @@ SWIGINTERN VALUE _wrap_TableOfContentsFrame_remove_embedded_frame(int nargs, VAL
|
|
8670
8716
|
argv[ii] = args[ii-1];
|
8671
8717
|
}
|
8672
8718
|
if (argc == 2) {
|
8673
|
-
int _v;
|
8719
|
+
int _v = 0;
|
8674
8720
|
void *vptr = 0;
|
8675
8721
|
int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_TagLib__ID3v2__TableOfContentsFrame, 0);
|
8676
8722
|
_v = SWIG_CheckState(res);
|
@@ -8684,7 +8730,7 @@ SWIGINTERN VALUE _wrap_TableOfContentsFrame_remove_embedded_frame(int nargs, VAL
|
|
8684
8730
|
}
|
8685
8731
|
}
|
8686
8732
|
if (argc == 3) {
|
8687
|
-
int _v;
|
8733
|
+
int _v = 0;
|
8688
8734
|
void *vptr = 0;
|
8689
8735
|
int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_TagLib__ID3v2__TableOfContentsFrame, 0);
|
8690
8736
|
_v = SWIG_CheckState(res);
|
@@ -9227,7 +9273,7 @@ SWIGINTERN VALUE _wrap_new_UserTextIdentificationFrame(int nargs, VALUE *args, V
|
|
9227
9273
|
return _wrap_new_UserTextIdentificationFrame__SWIG_1(nargs, args, self);
|
9228
9274
|
}
|
9229
9275
|
if (argc == 1) {
|
9230
|
-
int _v;
|
9276
|
+
int _v = 0;
|
9231
9277
|
{
|
9232
9278
|
int res = SWIG_AsVal_int(argv[0], NULL);
|
9233
9279
|
_v = SWIG_CheckState(res);
|
@@ -9237,7 +9283,7 @@ SWIGINTERN VALUE _wrap_new_UserTextIdentificationFrame(int nargs, VALUE *args, V
|
|
9237
9283
|
}
|
9238
9284
|
}
|
9239
9285
|
if (argc == 1) {
|
9240
|
-
int _v;
|
9286
|
+
int _v = 0;
|
9241
9287
|
int res = SWIG_AsCharPtrAndSize(argv[0], 0, NULL, 0);
|
9242
9288
|
_v = SWIG_CheckState(res);
|
9243
9289
|
if (_v) {
|
@@ -9245,7 +9291,7 @@ SWIGINTERN VALUE _wrap_new_UserTextIdentificationFrame(int nargs, VALUE *args, V
|
|
9245
9291
|
}
|
9246
9292
|
}
|
9247
9293
|
if (argc == 2) {
|
9248
|
-
int _v;
|
9294
|
+
int _v = 0;
|
9249
9295
|
int res = SWIG_AsCharPtrAndSize(argv[0], 0, NULL, 0);
|
9250
9296
|
_v = SWIG_CheckState(res);
|
9251
9297
|
if (_v) {
|
@@ -9258,7 +9304,7 @@ SWIGINTERN VALUE _wrap_new_UserTextIdentificationFrame(int nargs, VALUE *args, V
|
|
9258
9304
|
}
|
9259
9305
|
}
|
9260
9306
|
if (argc == 3) {
|
9261
|
-
int _v;
|
9307
|
+
int _v = 0;
|
9262
9308
|
int res = SWIG_AsCharPtrAndSize(argv[0], 0, NULL, 0);
|
9263
9309
|
_v = SWIG_CheckState(res);
|
9264
9310
|
if (_v) {
|
@@ -9571,7 +9617,7 @@ SWIGINTERN VALUE _wrap_new_UniqueFileIdentifierFrame(int nargs, VALUE *args, VAL
|
|
9571
9617
|
argv[ii] = args[ii];
|
9572
9618
|
}
|
9573
9619
|
if (argc == 1) {
|
9574
|
-
int _v;
|
9620
|
+
int _v = 0;
|
9575
9621
|
int res = SWIG_AsCharPtrAndSize(argv[0], 0, NULL, 0);
|
9576
9622
|
_v = SWIG_CheckState(res);
|
9577
9623
|
if (_v) {
|
@@ -9579,7 +9625,7 @@ SWIGINTERN VALUE _wrap_new_UniqueFileIdentifierFrame(int nargs, VALUE *args, VAL
|
|
9579
9625
|
}
|
9580
9626
|
}
|
9581
9627
|
if (argc == 2) {
|
9582
|
-
int _v;
|
9628
|
+
int _v = 0;
|
9583
9629
|
int res = SWIG_AsCharPtrAndSize(argv[0], 0, NULL, 0);
|
9584
9630
|
_v = SWIG_CheckState(res);
|
9585
9631
|
if (_v) {
|
@@ -9930,7 +9976,7 @@ SWIGINTERN VALUE _wrap_new_UnsynchronizedLyricsFrame(int nargs, VALUE *args, VAL
|
|
9930
9976
|
return _wrap_new_UnsynchronizedLyricsFrame__SWIG_1(nargs, args, self);
|
9931
9977
|
}
|
9932
9978
|
if (argc == 1) {
|
9933
|
-
int _v;
|
9979
|
+
int _v = 0;
|
9934
9980
|
{
|
9935
9981
|
int res = SWIG_AsVal_int(argv[0], NULL);
|
9936
9982
|
_v = SWIG_CheckState(res);
|
@@ -9940,7 +9986,7 @@ SWIGINTERN VALUE _wrap_new_UnsynchronizedLyricsFrame(int nargs, VALUE *args, VAL
|
|
9940
9986
|
}
|
9941
9987
|
}
|
9942
9988
|
if (argc == 1) {
|
9943
|
-
int _v;
|
9989
|
+
int _v = 0;
|
9944
9990
|
int res = SWIG_AsCharPtrAndSize(argv[0], 0, NULL, 0);
|
9945
9991
|
_v = SWIG_CheckState(res);
|
9946
9992
|
if (_v) {
|
@@ -10448,7 +10494,7 @@ SWIGINTERN VALUE _wrap_new_UserUrlLinkFrame(int nargs, VALUE *args, VALUE self)
|
|
10448
10494
|
return _wrap_new_UserUrlLinkFrame__SWIG_1(nargs, args, self);
|
10449
10495
|
}
|
10450
10496
|
if (argc == 1) {
|
10451
|
-
int _v;
|
10497
|
+
int _v = 0;
|
10452
10498
|
{
|
10453
10499
|
int res = SWIG_AsVal_int(argv[0], NULL);
|
10454
10500
|
_v = SWIG_CheckState(res);
|
@@ -10458,7 +10504,7 @@ SWIGINTERN VALUE _wrap_new_UserUrlLinkFrame(int nargs, VALUE *args, VALUE self)
|
|
10458
10504
|
}
|
10459
10505
|
}
|
10460
10506
|
if (argc == 1) {
|
10461
|
-
int _v;
|
10507
|
+
int _v = 0;
|
10462
10508
|
int res = SWIG_AsCharPtrAndSize(argv[0], 0, NULL, 0);
|
10463
10509
|
_v = SWIG_CheckState(res);
|
10464
10510
|
if (_v) {
|
@@ -10618,67 +10664,67 @@ fail:
|
|
10618
10664
|
|
10619
10665
|
/* -------- TYPE CONVERSION AND EQUIVALENCE RULES (BEGIN) -------- */
|
10620
10666
|
|
10621
|
-
static void *
|
10622
|
-
return (void *)((TagLib::ID3v2::
|
10623
|
-
}
|
10624
|
-
static void *_p_TagLib__ID3v2__TableOfContentsFrameTo_p_TagLib__ID3v2__Frame(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
10625
|
-
return (void *)((TagLib::ID3v2::Frame *) ((TagLib::ID3v2::TableOfContentsFrame *) x));
|
10667
|
+
static void *_p_TagLib__ID3v2__AttachedPictureFrameV22To_p_TagLib__ID3v2__AttachedPictureFrame(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
10668
|
+
return (void *)((TagLib::ID3v2::AttachedPictureFrame *) ((TagLib::ID3v2::AttachedPictureFrameV22 *) x));
|
10626
10669
|
}
|
10627
|
-
static void *
|
10628
|
-
return (void *)((TagLib::ID3v2::Frame *) ((TagLib::ID3v2::
|
10670
|
+
static void *_p_TagLib__ID3v2__AttachedPictureFrameTo_p_TagLib__ID3v2__Frame(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
10671
|
+
return (void *)((TagLib::ID3v2::Frame *) ((TagLib::ID3v2::AttachedPictureFrame *) x));
|
10629
10672
|
}
|
10630
10673
|
static void *_p_TagLib__ID3v2__AttachedPictureFrameV22To_p_TagLib__ID3v2__Frame(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
10631
10674
|
return (void *)((TagLib::ID3v2::Frame *) (TagLib::ID3v2::AttachedPictureFrame *) ((TagLib::ID3v2::AttachedPictureFrameV22 *) x));
|
10632
10675
|
}
|
10633
|
-
static void *_p_TagLib__ID3v2__UrlLinkFrameTo_p_TagLib__ID3v2__Frame(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
10634
|
-
return (void *)((TagLib::ID3v2::Frame *) ((TagLib::ID3v2::UrlLinkFrame *) x));
|
10635
|
-
}
|
10636
|
-
static void *_p_TagLib__ID3v2__UserUrlLinkFrameTo_p_TagLib__ID3v2__Frame(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
10637
|
-
return (void *)((TagLib::ID3v2::Frame *) (TagLib::ID3v2::UrlLinkFrame *) ((TagLib::ID3v2::UserUrlLinkFrame *) x));
|
10638
|
-
}
|
10639
|
-
static void *_p_TagLib__ID3v2__UniqueFileIdentifierFrameTo_p_TagLib__ID3v2__Frame(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
10640
|
-
return (void *)((TagLib::ID3v2::Frame *) ((TagLib::ID3v2::UniqueFileIdentifierFrame *) x));
|
10641
|
-
}
|
10642
|
-
static void *_p_TagLib__ID3v2__PopularimeterFrameTo_p_TagLib__ID3v2__Frame(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
10643
|
-
return (void *)((TagLib::ID3v2::Frame *) ((TagLib::ID3v2::PopularimeterFrame *) x));
|
10644
|
-
}
|
10645
10676
|
static void *_p_TagLib__ID3v2__ChapterFrameTo_p_TagLib__ID3v2__Frame(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
10646
10677
|
return (void *)((TagLib::ID3v2::Frame *) ((TagLib::ID3v2::ChapterFrame *) x));
|
10647
10678
|
}
|
10648
|
-
static void *
|
10649
|
-
return (void *)((TagLib::ID3v2::Frame *) ((TagLib::ID3v2::
|
10679
|
+
static void *_p_TagLib__ID3v2__CommentsFrameTo_p_TagLib__ID3v2__Frame(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
10680
|
+
return (void *)((TagLib::ID3v2::Frame *) ((TagLib::ID3v2::CommentsFrame *) x));
|
10650
10681
|
}
|
10651
10682
|
static void *_p_TagLib__ID3v2__GeneralEncapsulatedObjectFrameTo_p_TagLib__ID3v2__Frame(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
10652
10683
|
return (void *)((TagLib::ID3v2::Frame *) ((TagLib::ID3v2::GeneralEncapsulatedObjectFrame *) x));
|
10653
10684
|
}
|
10685
|
+
static void *_p_TagLib__ID3v2__PopularimeterFrameTo_p_TagLib__ID3v2__Frame(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
10686
|
+
return (void *)((TagLib::ID3v2::Frame *) ((TagLib::ID3v2::PopularimeterFrame *) x));
|
10687
|
+
}
|
10654
10688
|
static void *_p_TagLib__ID3v2__PrivateFrameTo_p_TagLib__ID3v2__Frame(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
10655
10689
|
return (void *)((TagLib::ID3v2::Frame *) ((TagLib::ID3v2::PrivateFrame *) x));
|
10656
10690
|
}
|
10657
|
-
static void *_p_TagLib__ID3v2__AttachedPictureFrameTo_p_TagLib__ID3v2__Frame(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
10658
|
-
return (void *)((TagLib::ID3v2::Frame *) ((TagLib::ID3v2::AttachedPictureFrame *) x));
|
10659
|
-
}
|
10660
10691
|
static void *_p_TagLib__ID3v2__RelativeVolumeFrameTo_p_TagLib__ID3v2__Frame(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
10661
10692
|
return (void *)((TagLib::ID3v2::Frame *) ((TagLib::ID3v2::RelativeVolumeFrame *) x));
|
10662
10693
|
}
|
10694
|
+
static void *_p_TagLib__ID3v2__TableOfContentsFrameTo_p_TagLib__ID3v2__Frame(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
10695
|
+
return (void *)((TagLib::ID3v2::Frame *) ((TagLib::ID3v2::TableOfContentsFrame *) x));
|
10696
|
+
}
|
10697
|
+
static void *_p_TagLib__ID3v2__TextIdentificationFrameTo_p_TagLib__ID3v2__Frame(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
10698
|
+
return (void *)((TagLib::ID3v2::Frame *) ((TagLib::ID3v2::TextIdentificationFrame *) x));
|
10699
|
+
}
|
10700
|
+
static void *_p_TagLib__ID3v2__UniqueFileIdentifierFrameTo_p_TagLib__ID3v2__Frame(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
10701
|
+
return (void *)((TagLib::ID3v2::Frame *) ((TagLib::ID3v2::UniqueFileIdentifierFrame *) x));
|
10702
|
+
}
|
10663
10703
|
static void *_p_TagLib__ID3v2__UnknownFrameTo_p_TagLib__ID3v2__Frame(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
10664
10704
|
return (void *)((TagLib::ID3v2::Frame *) ((TagLib::ID3v2::UnknownFrame *) x));
|
10665
10705
|
}
|
10706
|
+
static void *_p_TagLib__ID3v2__UnsynchronizedLyricsFrameTo_p_TagLib__ID3v2__Frame(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
10707
|
+
return (void *)((TagLib::ID3v2::Frame *) ((TagLib::ID3v2::UnsynchronizedLyricsFrame *) x));
|
10708
|
+
}
|
10709
|
+
static void *_p_TagLib__ID3v2__UrlLinkFrameTo_p_TagLib__ID3v2__Frame(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
10710
|
+
return (void *)((TagLib::ID3v2::Frame *) ((TagLib::ID3v2::UrlLinkFrame *) x));
|
10711
|
+
}
|
10666
10712
|
static void *_p_TagLib__ID3v2__UserTextIdentificationFrameTo_p_TagLib__ID3v2__Frame(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
10667
10713
|
return (void *)((TagLib::ID3v2::Frame *) (TagLib::ID3v2::TextIdentificationFrame *) ((TagLib::ID3v2::UserTextIdentificationFrame *) x));
|
10668
10714
|
}
|
10669
|
-
static void *
|
10670
|
-
return (void *)((TagLib::ID3v2::Frame *)
|
10671
|
-
}
|
10672
|
-
static void *_p_TagLib__ID3v2__TagTo_p_TagLib__Tag(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
10673
|
-
return (void *)((TagLib::Tag *) ((TagLib::ID3v2::Tag *) x));
|
10715
|
+
static void *_p_TagLib__ID3v2__UserUrlLinkFrameTo_p_TagLib__ID3v2__Frame(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
10716
|
+
return (void *)((TagLib::ID3v2::Frame *) (TagLib::ID3v2::UrlLinkFrame *) ((TagLib::ID3v2::UserUrlLinkFrame *) x));
|
10674
10717
|
}
|
10675
10718
|
static void *_p_TagLib__ID3v2__UserTextIdentificationFrameTo_p_TagLib__ID3v2__TextIdentificationFrame(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
10676
10719
|
return (void *)((TagLib::ID3v2::TextIdentificationFrame *) ((TagLib::ID3v2::UserTextIdentificationFrame *) x));
|
10677
10720
|
}
|
10678
|
-
static void *
|
10679
|
-
return (void *)((TagLib::ID3v2::
|
10721
|
+
static void *_p_TagLib__ID3v2__UserUrlLinkFrameTo_p_TagLib__ID3v2__UrlLinkFrame(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
10722
|
+
return (void *)((TagLib::ID3v2::UrlLinkFrame *) ((TagLib::ID3v2::UserUrlLinkFrame *) x));
|
10680
10723
|
}
|
10681
|
-
static
|
10724
|
+
static void *_p_TagLib__ID3v2__TagTo_p_TagLib__Tag(void *x, int *SWIGUNUSEDPARM(newmemory)) {
|
10725
|
+
return (void *)((TagLib::Tag *) ((TagLib::ID3v2::Tag *) x));
|
10726
|
+
}
|
10727
|
+
static swig_type_info _swigt__p_MapT_TagLib__ByteVector_TagLib__ListT_TagLib__ID3v2__Frame_p_t_t = {"_p_MapT_TagLib__ByteVector_TagLib__ListT_TagLib__ID3v2__Frame_p_t_t", "TagLib::ID3v2::FrameListMap *|Map< TagLib::ByteVector,TagLib::List< TagLib::ID3v2::Frame * > > *", 0, 0, (void*)0, 0};
|
10682
10728
|
static swig_type_info _swigt__p_TagLib__ByteVector = {"_p_TagLib__ByteVector", "TagLib::ByteVector *", 0, 0, (void*)0, 0};
|
10683
10729
|
static swig_type_info _swigt__p_TagLib__ByteVectorList = {"_p_TagLib__ByteVectorList", "TagLib::ByteVectorList *", 0, 0, (void*)0, 0};
|
10684
10730
|
static swig_type_info _swigt__p_TagLib__File = {"_p_TagLib__File", "TagLib::File *", 0, 0, (void*)0, 0};
|
@@ -10709,7 +10755,7 @@ static swig_type_info _swigt__p_TagLib__ListT_TagLib__ID3v2__Frame_p_t = {"_p_Ta
|
|
10709
10755
|
static swig_type_info _swigt__p_TagLib__Tag = {"_p_TagLib__Tag", "TagLib::Tag *", 0, 0, (void*)0, 0};
|
10710
10756
|
static swig_type_info _swigt__p_char = {"_p_char", "char *", 0, 0, (void*)0, 0};
|
10711
10757
|
static swig_type_info _swigt__p_unsigned_char = {"_p_unsigned_char", "TagLib::uchar *|unsigned char *", 0, 0, (void*)0, 0};
|
10712
|
-
static swig_type_info _swigt__p_unsigned_int = {"_p_unsigned_int", "unsigned int
|
10758
|
+
static swig_type_info _swigt__p_unsigned_int = {"_p_unsigned_int", "TagLib::uint *|unsigned int *", 0, 0, (void*)0, 0};
|
10713
10759
|
static swig_type_info _swigt__p_unsigned_long = {"_p_unsigned_long", "TagLib::ulong *|unsigned long *", 0, 0, (void*)0, 0};
|
10714
10760
|
static swig_type_info _swigt__p_wchar_t = {"_p_wchar_t", "TagLib::wchar *|wchar_t *", 0, 0, (void*)0, 0};
|
10715
10761
|
|
@@ -10760,7 +10806,7 @@ static swig_cast_info _swigc__p_TagLib__ID3v2__ChapterFrame[] = { {&_swigt__p_T
|
|
10760
10806
|
static swig_cast_info _swigc__p_TagLib__ID3v2__CommentsFrame[] = { {&_swigt__p_TagLib__ID3v2__CommentsFrame, 0, 0, 0},{0, 0, 0, 0}};
|
10761
10807
|
static swig_cast_info _swigc__p_TagLib__ID3v2__ExtendedHeader[] = { {&_swigt__p_TagLib__ID3v2__ExtendedHeader, 0, 0, 0},{0, 0, 0, 0}};
|
10762
10808
|
static swig_cast_info _swigc__p_TagLib__ID3v2__Footer[] = { {&_swigt__p_TagLib__ID3v2__Footer, 0, 0, 0},{0, 0, 0, 0}};
|
10763
|
-
static swig_cast_info _swigc__p_TagLib__ID3v2__Frame[] = { {&_swigt__p_TagLib__ID3v2__Frame, 0, 0, 0}, {&
|
10809
|
+
static swig_cast_info _swigc__p_TagLib__ID3v2__Frame[] = { {&_swigt__p_TagLib__ID3v2__Frame, 0, 0, 0}, {&_swigt__p_TagLib__ID3v2__AttachedPictureFrame, _p_TagLib__ID3v2__AttachedPictureFrameTo_p_TagLib__ID3v2__Frame, 0, 0}, {&_swigt__p_TagLib__ID3v2__AttachedPictureFrameV22, _p_TagLib__ID3v2__AttachedPictureFrameV22To_p_TagLib__ID3v2__Frame, 0, 0}, {&_swigt__p_TagLib__ID3v2__ChapterFrame, _p_TagLib__ID3v2__ChapterFrameTo_p_TagLib__ID3v2__Frame, 0, 0}, {&_swigt__p_TagLib__ID3v2__CommentsFrame, _p_TagLib__ID3v2__CommentsFrameTo_p_TagLib__ID3v2__Frame, 0, 0}, {&_swigt__p_TagLib__ID3v2__GeneralEncapsulatedObjectFrame, _p_TagLib__ID3v2__GeneralEncapsulatedObjectFrameTo_p_TagLib__ID3v2__Frame, 0, 0}, {&_swigt__p_TagLib__ID3v2__PopularimeterFrame, _p_TagLib__ID3v2__PopularimeterFrameTo_p_TagLib__ID3v2__Frame, 0, 0}, {&_swigt__p_TagLib__ID3v2__PrivateFrame, _p_TagLib__ID3v2__PrivateFrameTo_p_TagLib__ID3v2__Frame, 0, 0}, {&_swigt__p_TagLib__ID3v2__RelativeVolumeFrame, _p_TagLib__ID3v2__RelativeVolumeFrameTo_p_TagLib__ID3v2__Frame, 0, 0}, {&_swigt__p_TagLib__ID3v2__TableOfContentsFrame, _p_TagLib__ID3v2__TableOfContentsFrameTo_p_TagLib__ID3v2__Frame, 0, 0}, {&_swigt__p_TagLib__ID3v2__TextIdentificationFrame, _p_TagLib__ID3v2__TextIdentificationFrameTo_p_TagLib__ID3v2__Frame, 0, 0}, {&_swigt__p_TagLib__ID3v2__UniqueFileIdentifierFrame, _p_TagLib__ID3v2__UniqueFileIdentifierFrameTo_p_TagLib__ID3v2__Frame, 0, 0}, {&_swigt__p_TagLib__ID3v2__UnknownFrame, _p_TagLib__ID3v2__UnknownFrameTo_p_TagLib__ID3v2__Frame, 0, 0}, {&_swigt__p_TagLib__ID3v2__UnsynchronizedLyricsFrame, _p_TagLib__ID3v2__UnsynchronizedLyricsFrameTo_p_TagLib__ID3v2__Frame, 0, 0}, {&_swigt__p_TagLib__ID3v2__UrlLinkFrame, _p_TagLib__ID3v2__UrlLinkFrameTo_p_TagLib__ID3v2__Frame, 0, 0}, {&_swigt__p_TagLib__ID3v2__UserTextIdentificationFrame, _p_TagLib__ID3v2__UserTextIdentificationFrameTo_p_TagLib__ID3v2__Frame, 0, 0}, {&_swigt__p_TagLib__ID3v2__UserUrlLinkFrame, _p_TagLib__ID3v2__UserUrlLinkFrameTo_p_TagLib__ID3v2__Frame, 0, 0},{0, 0, 0, 0}};
|
10764
10810
|
static swig_cast_info _swigc__p_TagLib__ID3v2__FrameFactory[] = { {&_swigt__p_TagLib__ID3v2__FrameFactory, 0, 0, 0},{0, 0, 0, 0}};
|
10765
10811
|
static swig_cast_info _swigc__p_TagLib__ID3v2__GeneralEncapsulatedObjectFrame[] = { {&_swigt__p_TagLib__ID3v2__GeneralEncapsulatedObjectFrame, 0, 0, 0},{0, 0, 0, 0}};
|
10766
10812
|
static swig_cast_info _swigc__p_TagLib__ID3v2__Header[] = { {&_swigt__p_TagLib__ID3v2__Header, 0, 0, 0},{0, 0, 0, 0}};
|
@@ -10778,7 +10824,7 @@ static swig_cast_info _swigc__p_TagLib__ID3v2__UrlLinkFrame[] = { {&_swigt__p_T
|
|
10778
10824
|
static swig_cast_info _swigc__p_TagLib__ID3v2__UserTextIdentificationFrame[] = { {&_swigt__p_TagLib__ID3v2__UserTextIdentificationFrame, 0, 0, 0},{0, 0, 0, 0}};
|
10779
10825
|
static swig_cast_info _swigc__p_TagLib__ID3v2__UserUrlLinkFrame[] = { {&_swigt__p_TagLib__ID3v2__UserUrlLinkFrame, 0, 0, 0},{0, 0, 0, 0}};
|
10780
10826
|
static swig_cast_info _swigc__p_TagLib__ListT_TagLib__ID3v2__Frame_p_t[] = { {&_swigt__p_TagLib__ListT_TagLib__ID3v2__Frame_p_t, 0, 0, 0},{0, 0, 0, 0}};
|
10781
|
-
static swig_cast_info _swigc__p_TagLib__Tag[] = { {&
|
10827
|
+
static swig_cast_info _swigc__p_TagLib__Tag[] = { {&_swigt__p_TagLib__Tag, 0, 0, 0}, {&_swigt__p_TagLib__ID3v2__Tag, _p_TagLib__ID3v2__TagTo_p_TagLib__Tag, 0, 0},{0, 0, 0, 0}};
|
10782
10828
|
static swig_cast_info _swigc__p_char[] = { {&_swigt__p_char, 0, 0, 0},{0, 0, 0, 0}};
|
10783
10829
|
static swig_cast_info _swigc__p_unsigned_char[] = { {&_swigt__p_unsigned_char, 0, 0, 0},{0, 0, 0, 0}};
|
10784
10830
|
static swig_cast_info _swigc__p_unsigned_int[] = { {&_swigt__p_unsigned_int, 0, 0, 0},{0, 0, 0, 0}};
|
@@ -10877,9 +10923,12 @@ extern "C" {
|
|
10877
10923
|
#define SWIGRUNTIME_DEBUG
|
10878
10924
|
#endif
|
10879
10925
|
|
10926
|
+
#ifndef SWIG_INIT_CLIENT_DATA_TYPE
|
10927
|
+
#define SWIG_INIT_CLIENT_DATA_TYPE void *
|
10928
|
+
#endif
|
10880
10929
|
|
10881
10930
|
SWIGRUNTIME void
|
10882
|
-
SWIG_InitializeModule(
|
10931
|
+
SWIG_InitializeModule(SWIG_INIT_CLIENT_DATA_TYPE clientdata) {
|
10883
10932
|
size_t i;
|
10884
10933
|
swig_module_info *module_head, *iter;
|
10885
10934
|
int init;
|