Skip to content

Commit 267792b

Browse files
fixup theora support
1 parent c2f3ee5 commit 267792b

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

js/media.js

+3-4
Original file line numberDiff line numberDiff line change
@@ -183,9 +183,8 @@ function get_media(type) {
183183
v+'x-m4v',
184184
v+'x-matroska',
185185
]
186-
// theora this still shows up in TB14
187-
//if (isVer < 126) {
188-
// 1860492: theora support removed
186+
if (isVer < 130) {
187+
// theora support: FF126 1860492 prep + FF130 1890370 remove
189188
videolist.push(
190189
v+'ogg',
191190
v+'ogg; codecs="flac"',
@@ -196,7 +195,7 @@ function get_media(type) {
196195
v+'ogg; codecs="theora, vorbis"',
197196
)
198197
videolist.sort()
199-
//}
198+
}
200199
if (gRun && type == "audio") {
201200
addDetail("audio_mimes", audiolist, "lists")
202201
addDetail("video_mimes", videolist, "lists")

0 commit comments

Comments
 (0)