arturoc / gstreamer1.0-rs

Idiomatic bindings for Gstreamer on Rust.
MIT License
36 stars 14 forks source link

fix compilation on arm architecture #21

Closed herrernst closed 7 years ago

herrernst commented 7 years ago

gst_init has params (int *argc, char **argv[]). char is i8 on x86, but u8 on arm. Use the raw::c_char type which gets translated to the right char type on each architecture.

arturoc commented 7 years ago

thanks!