Skip to content

Commit dac8396

Browse files
committed
Add other C-types to FFI.
1 parent 094aed3 commit dac8396

File tree

1 file changed

+30
-1
lines changed

1 file changed

+30
-1
lines changed

plugins/media/media.c

+30-1
Original file line numberDiff line numberDiff line change
@@ -3365,19 +3365,48 @@ void ctr_media_ffi_destructor(ctr_resource* resource_value) {
33653365
ffi_type* ctr_internal_media_ffi_map_type(char* description) {
33663366
if (strcmp(description, "void")==0) {
33673367
return &ffi_type_void;
3368+
} else if (strcmp(description, "uint")==0) {
3369+
return &ffi_type_uint;
33683370
} else if (strcmp(description, "int")==0) {
33693371
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;
33703380
} else if (strcmp(description,"uint32_t")==0) {
33713381
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;
33723400
} else if (strcmp(description,"pointer")==0) {
33733401
return &ffi_type_pointer;
33743402
} else if (strcmp(description,"ulong")==0) {
33753403
return &ffi_type_ulong;
3404+
} else if (strcmp(description,"long")==0) {
3405+
return &ffi_type_slong;
33763406
}
33773407
return NULL;
33783408
}
33793409

3380-
33813410
ffi_type* ctr_internal_media_ffi_map_type_obj(ctr_object* obj) {
33823411
ffi_type* result;
33833412
if (obj->info.type == CTR_OBJECT_TYPE_OTSTRING) {

0 commit comments

Comments
 (0)