]> git.sesse.net Git - ffmpeg/blobdiff - libavcodec/g722.c
lavc: Add option to encode MPEG-2 AAC with libfdk-aac
[ffmpeg] / libavcodec / g722.c
index 7b9ff7243a30ffd39edeaf41c771b2ba17456878..a911bc7b37dd575105a5bff3070feaf1d1d000e5 100644 (file)
@@ -129,7 +129,7 @@ static void do_adaptive_prediction(struct G722Band *band, const int cur_diff)
     band->prev_qtzd_reconst = cur_qtzd_reconst;
 }
 
-static int inline linear_scale_factor(const int log_factor)
+static inline int linear_scale_factor(const int log_factor)
 {
     const int wd1 = inv_log2_table[(log_factor >> 6) & 31];
     const int shift = log_factor >> 11;