[FFmpeg-devel] [PATCH 1/6] avcodec/ffwavesynth: Fix backward lcg_seek()

Michael Niedermayer michael at niedermayer.cc
Sat Jun 22 02:29:31 EEST 2019


Signed-off-by: Michael Niedermayer <michael at niedermayer.cc>
---
 libavcodec/ffwavesynth.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

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) {
-- 
2.22.0



More information about the ffmpeg-devel mailing list