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:
authorHendrik Leppkes <h.leppkes@gmail.com>2011-09-29 19:42:23 +0400
committerHendrik Leppkes <h.leppkes@gmail.com>2011-09-29 19:42:23 +0400
commitd075859e3f6d3a6307184790fe5729c8f7250a39 (patch)
tree0d0d8fa239c7b1731f6d5ca1626e9de97a50b4fc
parent7ab1c27ae33ddacaf81b97b8474366ec35cffb55 (diff)
Add "VideoHandler" to the list of useless mp4 track names.
-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;
}