larksuite / rsmpeg

A Rust crate that exposes FFmpeg's power as much as possible.
https://docs.rs/rsmpeg/latest/rsmpeg/
MIT License
677 stars 41 forks source link

use c_char instead of i8 #155

Closed vnghia closed 8 months ago

vnghia commented 8 months ago

On arm64, char is corresponding to u8. So I use std::ffi::c_char here to fix compiling on arm64.

ldm0 commented 8 months ago

Thanks for your contribution!