summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeremy White <jwhite@codeweavers.com>2016-12-20 10:39:26 -0600
committerFrediano Ziglio <fziglio@redhat.com>2020-04-07 10:08:44 +0100
commit8b238f0eeb15d1e3354be715633596e574eb92a4 (patch)
tree4b843b285acf7779feb90cc4f7e33d50ce1d4a19
parent4dc2401b75de81da72581143caaee0227faec133 (diff)
Make the audio and video uids different.
This does not appear to matter, but let's just be safe. Signed-off-by: Jeremy White <jwhite@codeweavers.com> Acked-by: Frediano Ziglio <fziglio@redhat.com>
-rw-r--r--src/webm.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/webm.js b/src/webm.js
index 643ccc3..970ac1b 100644
--- a/src/webm.js
+++ b/src/webm.js
@@ -401,7 +401,7 @@ function webm_AudioTrackEntry()
{
this.id = WEBM_TRACK_ENTRY;
this.number = 1;
- this.uid = 1;
+ this.uid = 2; // Arbitrary id; most likely makes no difference
this.type = 2; // Audio
this.flag_enabled = 1;
this.flag_default = 1;