From d075859e3f6d3a6307184790fe5729c8f7250a39 Mon Sep 17 00:00:00 2001 From: Hendrik Leppkes Date: Thu, 29 Sep 2011 17:42:23 +0200 Subject: Add "VideoHandler" to the list of useless mp4 track names. --- demuxer/Demuxers/LAVFUtils.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; } -- cgit v1.2.3