From 4e917bbc8cf2131e74c2b12d2dc1b8b192da8e85 Mon Sep 17 00:00:00 2001 From: kryptan Date: Sun, 22 May 2016 12:52:20 +0300 Subject: [PATCH] avcodec: make FFTComplex fields public --- sys/src/avcodec/fft.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sys/src/avcodec/fft.rs b/sys/src/avcodec/fft.rs index 5c18fcd..841bac9 100644 --- a/sys/src/avcodec/fft.rs +++ b/sys/src/avcodec/fft.rs @@ -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;