summaryrefslogtreecommitdiff
path: root/libavcodec/ffwavesynth.c
diff options
context:
space:
mode:
authorMichael Niedermayer <michael@niedermayer.cc>2019-06-21 22:08:27 +0200
committerMichael Niedermayer <michael@niedermayer.cc>2019-07-08 08:57:21 +0200
commitcf2bd3ce79b12256d7d129b2ada5ee649b9a27eb (patch)
tree5846cb2ff4255afaccb639473ac11537b4e16e22 /libavcodec/ffwavesynth.c
parent37708cbae8d6887b80f58a70a1dfa01af6ea2c85 (diff)
avcodec/ffwavesynth: Fix backward lcg_seek()
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
Diffstat (limited to 'libavcodec/ffwavesynth.c')
-rw-r--r--libavcodec/ffwavesynth.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/ffwavesynth.c b/libavcodec/ffwavesynth.c
index a66113972b..cf8c780f3e 100644
--- a/libavcodec/ffwavesynth.c
+++ b/libavcodec/ffwavesynth.c
@@ -122,7 +122,7 @@ static void lcg_seek(uint32_t *s, int64_t dt)
c = LCG_C;
} else { /* coefficients for a step backward */
a = LCG_AI;
- c = (uint32_t)(LCG_AI * LCG_C);
+ c = (uint32_t)(-LCG_AI * LCG_C);
dt = -dt;
}
while (dt) {