[FFmpeg-cvslog] avcodec/opusenc_psy: Fix mixed declaration and statement
Michael Niedermayer
git at videolan.org
Wed Oct 11 03:43:21 EEST 2017
ffmpeg | branch: master | Michael Niedermayer <michael at niedermayer.cc> | Wed Oct 11 02:13:16 2017 +0200| [74d2bbb70dbe4b05dfc4ce54a5e4f7bf1f765ee5] | committer: Michael Niedermayer
avcodec/opusenc_psy: Fix mixed declaration and statement
Signed-off-by: Michael Niedermayer <michael at niedermayer.cc>
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=74d2bbb70dbe4b05dfc4ce54a5e4f7bf1f765ee5
---
libavcodec/opusenc_psy.c | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/libavcodec/opusenc_psy.c b/libavcodec/opusenc_psy.c
index bb673bef68..b446d41f75 100644
--- a/libavcodec/opusenc_psy.c
+++ b/libavcodec/opusenc_psy.c
@@ -370,8 +370,9 @@ static int celt_search_for_tf(OpusPsyContext *s, OpusPsyStep **start, CeltFrame
for (cway = 0; cway < 2; cway++) {
int mag[2];
int base = f->transient ? 120 : 960;
+ int i;
- for (int i = 0; i < 2; i++) {
+ for (i = 0; i < 2; i++) {
int c = ff_celt_tf_select[f->size][f->transient][cway][i];
mag[i] = c < 0 ? base >> FFABS(c) : base << FFABS(c);
}
More information about the ffmpeg-cvslog
mailing list