This file is indexed.

/usr/share/kdenlive/effects/update/frei0r.curves.js is in kdenlive-data 16.12.2-1.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
var update = new Object();

update["Graph position"] = new Array(new Array(0.3, function(v, d) { return this.upd1(v, d); }));
update["Curve point number"] = new Array(new Array(0.2, function(v, d) { return this.upd1(v, d); }));

function upd1(value, isDowngrade) {
    if (isDowngrade)
        return value * 10;
    else
        return value / 10.;
}