additional TERMUX related mods from Andrew
[goodguy/cinelerra.git] / cinelerra-5.1 / cinelerra / virtualanode.C
index a1ad5235c65841c413e88d309034820a5e3d7395..55a79d356c91bb18fb17444f42f937d83c69e206 100644 (file)
@@ -475,11 +475,11 @@ int VirtualANode::render_pan(double *input, // start of input fragment
                        }
                }
                else if( EQUIV(intercept, 1) ) {
-                       for(int j = 0; j < slope_len; j++, i++)
+                       for(int64_t j = 0; j < slope_len; j++, i++)
                                output[i] += input[i];
                }
                else if( !EQUIV(intercept, 0) ) {
-                       for(int j = 0; j < slope_len; j++, i++)
+                       for(int64_t j = 0; j < slope_len; j++, i++)
                                output[i] += input[i] * intercept;
                }
                else