aboutsummaryrefslogtreecommitdiff
path: root/stream/src/stream_info.rs
diff options
context:
space:
mode:
Diffstat (limited to 'stream/src/stream_info.rs')
-rw-r--r--stream/src/stream_info.rs3
1 files changed, 2 insertions, 1 deletions
diff --git a/stream/src/stream_info.rs b/stream/src/stream_info.rs
index 0d4350f..71ccb1f 100644
--- a/stream/src/stream_info.rs
+++ b/stream/src/stream_info.rs
@@ -184,7 +184,8 @@ fn containers_by_codec(codec: &str) -> Vec<StreamContainer> {
use StreamContainer::*;
match codec {
"V_VP8" | "V_VP9" | "V_AV1" | "A_OPUS" | "A_VORBIS" => vec![Matroska, WebM],
- "V_MPEG4/ISO/AVC" | "V_MPEGH/ISO/HEVC" | "A_AAC" => vec![Matroska, MP4],
+ "V_MPEG4/ISO/AVC" => vec![Matroska, MP4],
+ // "V_MPEG4/ISO/AVC" | "V_MPEGH/ISO/HEVC" | "A_AAC" => vec![Matroska, MP4], // TODO not supported yet
"S_TEXT/UTF8" | "S_TEXT/WEBVTT" => vec![Matroska, WebVTT, WebM, JVTT],
_ => vec![Matroska],
}