From 1f3106515d94bcab01a5ff19227d442f76e076f6 Mon Sep 17 00:00:00 2001 From: Tom Yan Date: Sat, 30 Jan 2021 02:03:13 +0800 Subject: [PATCH] mkvextract: fix container name for MPEG 1/2 video elementary streams --- src/extract/xtr_mpeg1_2.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/extract/xtr_mpeg1_2.h b/src/extract/xtr_mpeg1_2.h index dbd3e20b9..8feec9307 100644 --- a/src/extract/xtr_mpeg1_2.h +++ b/src/extract/xtr_mpeg1_2.h @@ -28,6 +28,6 @@ public: virtual void handle_codec_state(memory_cptr &codec_state); virtual const char *get_container_name() { - return "MPEG-1/-2 program stream"; + return "MPEG-1/-2 elementary stream"; }; };