summary refs log tree commit diff
path: root/vendor/maunium.net/go/mautrix/event/audio.go
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/maunium.net/go/mautrix/event/audio.go')
-rw-r--r--vendor/maunium.net/go/mautrix/event/audio.go21
1 files changed, 21 insertions, 0 deletions
diff --git a/vendor/maunium.net/go/mautrix/event/audio.go b/vendor/maunium.net/go/mautrix/event/audio.go
new file mode 100644
index 0000000..9eeb8ed
--- /dev/null
+++ b/vendor/maunium.net/go/mautrix/event/audio.go
@@ -0,0 +1,21 @@
+package event
+
+import (
+	"encoding/json"
+)
+
+type MSC1767Audio struct {
+	Duration int   `json:"duration"`
+	Waveform []int `json:"waveform"`
+}
+
+type serializableMSC1767Audio MSC1767Audio
+
+func (ma *MSC1767Audio) MarshalJSON() ([]byte, error) {
+	if ma.Waveform == nil {
+		ma.Waveform = []int{}
+	}
+	return json.Marshal((*serializableMSC1767Audio)(ma))
+}
+
+type MSC3245Voice struct{}