Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mpc-hc/LAVFilters.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'demuxer/Demuxers/LAVFUtils.cpp')
-rw-r--r--demuxer/Demuxers/LAVFUtils.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/demuxer/Demuxers/LAVFUtils.cpp b/demuxer/Demuxers/LAVFUtils.cpp
index 122ba663..acee8052 100644
--- a/demuxer/Demuxers/LAVFUtils.cpp
+++ b/demuxer/Demuxers/LAVFUtils.cpp
@@ -216,7 +216,7 @@ HRESULT lavf_describe_stream(AVStream *pStream, WCHAR **ppszName)
title = av_metadata_get(pStream->metadata, "title", NULL, 0)->value;
} else if (av_metadata_get(pStream->metadata, "handler_name", NULL, 0)) {
title = av_metadata_get(pStream->metadata, "handler_name", NULL, 0)->value;
- if (strcmp(title, "GPAC ISO Video Handler") == 0 || strcmp(title, "GPAC ISO Audio Handler") == 0 || strcmp(title, "GPAC Streaming Text Handler") == 0)
+ if (strcmp(title, "GPAC ISO Video Handler") == 0 || strcmp(title, "VideoHandler") == 0|| strcmp(title, "GPAC ISO Audio Handler") == 0 || strcmp(title, "GPAC Streaming Text Handler") == 0)
title = NULL;
}