[gnome-sound-recorder] record: removed _TENTH_SEC & _SEC_TIMEOUT
- From: Bilal Elmoussaoui <bilelmoussaoui src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gnome-sound-recorder] record: removed _TENTH_SEC & _SEC_TIMEOUT
- Date: Sat, 6 Jun 2020 07:04:21 +0000 (UTC)
commit fabccdf4f552872dcd6e6bfc93a4af9ab47257f5
Author: Kavan Mevada <kavanmevada gmail com>
Date: Fri Jun 5 22:48:39 2020 +0530
record: removed _TENTH_SEC & _SEC_TIMEOUT
src/record.js | 8 ++------
1 file changed, 2 insertions(+), 6 deletions(-)
---
diff --git a/src/record.js b/src/record.js
index 8b289f9..0dc7a31 100644
--- a/src/record.js
+++ b/src/record.js
@@ -27,10 +27,6 @@ const GObject = imports.gi.GObject;
const Application = imports.application;
-const _TENTH_SEC = 100000000;
-const _SEC_TIMEOUT = 100;
-
-
// All supported encoding profiles.
var EncodingProfiles = [
{ name: 'VORBIS',
@@ -130,7 +126,7 @@ var Record = new GObject.registerClass({
this.state = Gst.State.PLAYING;
- this.timeout = GLib.timeout_add(GLib.PRIORITY_DEFAULT, _SEC_TIMEOUT, () => {
+ this.timeout = GLib.timeout_add(GLib.PRIORITY_DEFAULT, 100, () => {
const pos = this.pipeline.query_position(Gst.Format.TIME)[1];
if (pos > 0)
this.duration = pos / Gst.SECOND;
@@ -191,7 +187,7 @@ var Record = new GObject.registerClass({
this.baseTime = this.absoluteTime;
this.runTime = this.absoluteTime - this.baseTime;
- let approxTime = Math.round(this.runTime / _TENTH_SEC);
+ let approxTime = Math.round(this.runTime / 100000000);
this.emit('waveform', approxTime, this.peak);
}
}
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]