From 5caa30653d1e2aecc6c976c31e2c529dd3280124 Mon Sep 17 00:00:00 2001 From: Paul Harrison Date: Sun, 11 Aug 2013 13:56:29 +0100 Subject: [PATCH] mytharchivehelper: comment out av_estimate_timings() in getFileInfo() Don't know what has changed but calling that function here is causing a segfault. Removing it doesn't seem to affect the result at all so just comment it out for now. --- mythplugins/mytharchive/mytharchivehelper/main.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mythplugins/mytharchive/mytharchivehelper/main.cpp b/mythplugins/mytharchive/mytharchivehelper/main.cpp index c5b8f24bf86..d44bc13afbe 100644 --- a/mythplugins/mytharchive/mytharchivehelper/main.cpp +++ b/mythplugins/mytharchive/mytharchivehelper/main.cpp @@ -1980,7 +1980,7 @@ static int getFileInfo(QString inFile, QString outFile, int lenMethod) return 1; } - av_estimate_timings(inputFC, 0); + // av_estimate_timings(inputFC, 0); // Dump stream information av_dump_format(inputFC, 0, inFileBA.constData(), 0);