avcodec: make FFTComplex fields public

This commit is contained in:
kryptan
2023-05-24 21:49:22 +02:00
committed by Till Höppner
parent c61540a55b
commit 4e917bbc8c
+2 -2
View File
@@ -5,8 +5,8 @@ pub type FFTSample = c_float;
#[derive(Debug)]
#[repr(C)]
pub struct FFTComplex {
re: FFTSample,
im: FFTSample,
pub re: FFTSample,
pub im: FFTSample,
}
pub type FFTContext = c_void;