mkvextract: fix container name for MPEG 1/2 video elementary streams

This commit is contained in:
Tom Yan 2021-01-30 02:03:13 +08:00 committed by Moritz Bunkus
parent 985ecec01e
commit 1f3106515d
No known key found for this signature in database
GPG Key ID: 74AF00ADF2E32C85

View File

@ -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";
};
};