@@ -3365,19 +3365,48 @@ void ctr_media_ffi_destructor(ctr_resource* resource_value) {
3365
3365
ffi_type * ctr_internal_media_ffi_map_type (char * description ) {
3366
3366
if (strcmp (description , "void" )== 0 ) {
3367
3367
return & ffi_type_void ;
3368
+ } else if (strcmp (description , "uint" )== 0 ) {
3369
+ return & ffi_type_uint ;
3368
3370
} else if (strcmp (description , "int" )== 0 ) {
3369
3371
return & ffi_type_sint ;
3372
+ } else if (strcmp (description ,"uint8_t" )== 0 ) {
3373
+ return & ffi_type_uint8 ;
3374
+ } else if (strcmp (description ,"int8_t" )== 0 ) {
3375
+ return & ffi_type_sint8 ;
3376
+ } else if (strcmp (description ,"uint16_t" )== 0 ) {
3377
+ return & ffi_type_uint16 ;
3378
+ } else if (strcmp (description ,"int16_t" )== 0 ) {
3379
+ return & ffi_type_sint16 ;
3370
3380
} else if (strcmp (description ,"uint32_t" )== 0 ) {
3371
3381
return & ffi_type_uint32 ;
3382
+ } else if (strcmp (description ,"int32_t" )== 0 ) {
3383
+ return & ffi_type_sint32 ;
3384
+ } else if (strcmp (description ,"uint64_t" )== 0 ) {
3385
+ return & ffi_type_uint64 ;
3386
+ } else if (strcmp (description ,"int64_t" )== 0 ) {
3387
+ return & ffi_type_sint64 ;
3388
+ } else if (strcmp (description ,"float" )== 0 ) {
3389
+ return & ffi_type_float ;
3390
+ } else if (strcmp (description ,"double" )== 0 ) {
3391
+ return & ffi_type_double ;
3392
+ } else if (strcmp (description ,"ushort" )== 0 ) {
3393
+ return & ffi_type_ushort ;
3394
+ } else if (strcmp (description ,"short" )== 0 ) {
3395
+ return & ffi_type_sshort ;
3396
+ } else if (strcmp (description ,"uchar" )== 0 ) {
3397
+ return & ffi_type_uchar ;
3398
+ } else if (strcmp (description ,"char" )== 0 ) {
3399
+ return & ffi_type_schar ;
3372
3400
} else if (strcmp (description ,"pointer" )== 0 ) {
3373
3401
return & ffi_type_pointer ;
3374
3402
} else if (strcmp (description ,"ulong" )== 0 ) {
3375
3403
return & ffi_type_ulong ;
3404
+ } else if (strcmp (description ,"long" )== 0 ) {
3405
+ return & ffi_type_slong ;
3376
3406
}
3377
3407
return NULL ;
3378
3408
}
3379
3409
3380
-
3381
3410
ffi_type * ctr_internal_media_ffi_map_type_obj (ctr_object * obj ) {
3382
3411
ffi_type * result ;
3383
3412
if (obj -> info .type == CTR_OBJECT_TYPE_OTSTRING ) {
0 commit comments