CodecsComponent.cpp 37 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337
  1. #include "CodecsComponent.h"
  2. #include <QString>
  3. #include <Qt>
  4. #include <QDir>
  5. #include <QDomAttr>
  6. #include <QDomDocument>
  7. #include <QDomNode>
  8. #include <QCoreApplication>
  9. #include <QProcess>
  10. #include <QUuid>
  11. #include <QUrl>
  12. #include <QUrlQuery>
  13. #include <QResource>
  14. #include <QSaveFile>
  15. #include <QStandardPaths>
  16. #include <QSysInfo>
  17. #include <QCryptographicHash>
  18. #include <QTemporaryDir>
  19. #ifdef HAVE_MINIZIP
  20. #include <minizip/unzip.h>
  21. #include <minizip/ioapi.h>
  22. #endif
  23. #include "system/SystemComponent.h"
  24. #include "settings/SettingsComponent.h"
  25. #include "utils/Utils.h"
  26. #include "shared/Paths.h"
  27. #include "PlayerComponent.h"
  28. #include "QsLog.h"
  29. #define countof(x) (sizeof(x) / sizeof((x)[0]))
  30. // For QVariant. Mysteriously makes Qt happy.
  31. Q_DECLARE_METATYPE(CodecDriver);
  32. #ifdef HAVE_CODEC_MANIFEST
  33. #include "CodecManifest.h"
  34. #else
  35. #define CODEC_VERSION "dummy"
  36. #define SHLIB_PREFIX ""
  37. #define SHLIB_EXTENSION "dummy"
  38. // Codec.name is the name of the codec implementation, Codec.codecName the name of the codec
  39. struct Codec {const char* name; const char* codecName; const char* profiles; int external;};
  40. static const Codec Decoders[] = {
  41. {"dummy", "dummy", nullptr, 1},
  42. };
  43. static const Codec Encoders[] = {
  44. {"dummy", "dummy", nullptr, 1},
  45. };
  46. #endif
  47. #define STRINGIFY_(x) #x
  48. #define STRINGIFY(x) STRINGIFY_(x)
  49. #ifdef EAE_VERSION
  50. #define HAVE_EAE 1
  51. #else
  52. #define EAE_VERSION unavailable
  53. #define HAVE_EAE 0
  54. #endif
  55. // We might want to use Codec.quality to decide this one day.
  56. // But for now, it's better if we can quickly change these.
  57. static QSet<QString> g_systemVideoDecoderWhitelist = {
  58. // RPI
  59. "h264_mmal",
  60. "mpeg2_mmal",
  61. "mpeg4_mmal",
  62. "vc1_mmal",
  63. // Windows
  64. "h264_mf",
  65. "hevc_mf",
  66. "vc1_mf",
  67. "wmv1_mf",
  68. "wmv2_mf",
  69. "wmv3_mf",
  70. "mpeg2_mf",
  71. "mpeg4_mf",
  72. "msmpeg4v1_mf",
  73. "msmpeg4v2_mf",
  74. "msmpeg4v3_mf",
  75. };
  76. static QSet<QString> g_systemAudioDecoderWhitelist = {
  77. // OSX
  78. "aac_at",
  79. "ac3_at",
  80. "eac3_at",
  81. "mp1_at",
  82. "mp2_at",
  83. "mp3_at",
  84. // Windows
  85. "ac3_mf",
  86. "eac3_mf",
  87. "aac_mf",
  88. "mp1_mf",
  89. "mp2_mf",
  90. "mp3_mf",
  91. };
  92. static QSet<QString> g_systemAudioEncoderWhitelist = {
  93. };
  94. static QSize g_mediaFoundationH264MaxResolution;
  95. static QString g_codecVersion;
  96. static QList<CodecDriver> g_cachedCodecList;
  97. static QString g_deviceID;
  98. static QString g_eaeWatchFolder;
  99. static QProcess* g_eaeProcess;
  100. ///////////////////////////////////////////////////////////////////////////////////////////////////
  101. static QString getBuildType()
  102. {
  103. #ifdef Q_OS_MAC
  104. return "darwin-x86_64";
  105. #elif defined(TARGET_RPI)
  106. return "openelec-armv7";
  107. #else
  108. return SystemComponent::Get().getPlatformTypeString() + "-" +
  109. SystemComponent::Get().getPlatformArchString();
  110. #endif
  111. }
  112. ///////////////////////////////////////////////////////////////////////////////////////////////////
  113. static QString getEAEBuildType()
  114. {
  115. #if defined(Q_OS_MAC)
  116. return "darwin-x86_64";
  117. #elif defined(Q_OS_WIN)
  118. return sizeof(void *) > 4 ? "windows-x86_64" : "windows-i386";
  119. #elif defined(TARGET_RPI)
  120. return "linux-raspi2-arm7";
  121. #elif defined(Q_OS_LINUX)
  122. return sizeof(void *) > 4 ? "linux-ubuntu-x86_64" : "linux-ubuntu-i686";
  123. #else
  124. return "unknown";
  125. #endif
  126. }
  127. ///////////////////////////////////////////////////////////////////////////////////////////////////
  128. QString Codecs::plexNameToFF(QString plex)
  129. {
  130. if (plex == "dca")
  131. return "dts";
  132. return plex;
  133. }
  134. ///////////////////////////////////////////////////////////////////////////////////////////////////
  135. QString Codecs::plexNameFromFF(QString ffname)
  136. {
  137. if (ffname == "dts")
  138. return "dca";
  139. return ffname;
  140. }
  141. ///////////////////////////////////////////////////////////////////////////////////////////////////
  142. static QString codecsRootPath()
  143. {
  144. return Paths::dataDir("Codecs") + QDir::separator();
  145. }
  146. ///////////////////////////////////////////////////////////////////////////////////////////////////
  147. static QString codecsPath()
  148. {
  149. return codecsRootPath() + g_codecVersion + "-" + getBuildType() + QDir::separator();
  150. }
  151. ///////////////////////////////////////////////////////////////////////////////////////////////////
  152. static QString eaePrefixPath()
  153. {
  154. return codecsRootPath() + "EasyAudioEncoder-" + STRINGIFY(EAE_VERSION) + "-" + getBuildType();
  155. }
  156. static QString eaeBinaryPath()
  157. {
  158. QString exeSuffix = "";
  159. #ifdef Q_OS_WIN
  160. exeSuffix = ".exe";
  161. #endif
  162. return eaePrefixPath() + "/EasyAudioEncoder/EasyAudioEncoder" + exeSuffix;
  163. }
  164. ///////////////////////////////////////////////////////////////////////////////////////////////////
  165. static int indexOfCodecInList(const QList<CodecDriver>& list, const CodecDriver& codec)
  166. {
  167. for (int n = 0; n < list.size(); n++)
  168. {
  169. if (Codecs::sameCodec(list[n], codec))
  170. return n;
  171. }
  172. return -1;
  173. }
  174. ///////////////////////////////////////////////////////////////////////////////////////////////////
  175. void Codecs::updateCachedCodecList()
  176. {
  177. g_cachedCodecList.clear();
  178. for (CodecType type : {CodecType::Decoder, CodecType::Encoder})
  179. {
  180. const Codec* list = (type == CodecType::Decoder) ? Decoders : Encoders;
  181. size_t count = (type == CodecType::Decoder) ? countof(Decoders) : countof(Encoders);
  182. for (size_t i = 0; i < count; i++)
  183. {
  184. CodecDriver codec = {};
  185. codec.type = type;
  186. codec.format = Codecs::plexNameToFF(list[i].codecName);
  187. codec.driver = list[i].name;
  188. codec.external = list[i].external;
  189. if (!codec.isSystemCodec())
  190. g_cachedCodecList.append(codec);
  191. }
  192. }
  193. // Set present flag for the installed codecs. Also, there could be codecs not
  194. // on the CodecManifest.h list (system codecs, or when compiled without
  195. // codec loading).
  196. QList<CodecDriver> installed = PlayerComponent::Get().installedCodecDrivers();
  197. // Surely O(n^2) won't be causing trouble, right?
  198. for (const CodecDriver& installedCodec : installed)
  199. {
  200. int index = indexOfCodecInList(g_cachedCodecList, installedCodec);
  201. if (index >= 0)
  202. g_cachedCodecList[index].present = true;
  203. else
  204. g_cachedCodecList.append(installedCodec);
  205. }
  206. }
  207. ///////////////////////////////////////////////////////////////////////////////////////////////////
  208. const QList<CodecDriver>& Codecs::getCachedCodecList()
  209. {
  210. return g_cachedCodecList;
  211. }
  212. ///////////////////////////////////////////////////////////////////////////////////////////////////
  213. QList<CodecDriver> Codecs::findCodecsByFormat(const QList<CodecDriver>& list, CodecType type, const QString& format)
  214. {
  215. QList<CodecDriver> result;
  216. for (const CodecDriver& codec : list)
  217. {
  218. if (codec.type == type && codec.format == format)
  219. result.append(codec);
  220. }
  221. return result;
  222. }
  223. ///////////////////////////////////////////////////////////////////////////////////////////////////
  224. QString CodecDriver::getMangledName() const
  225. {
  226. return driver + (type == CodecType::Decoder ? "_decoder" : "_encoder");
  227. }
  228. ///////////////////////////////////////////////////////////////////////////////////////////////////
  229. QString CodecDriver::getFileName() const
  230. {
  231. return SHLIB_PREFIX + getMangledName() + "." + SHLIB_EXTENSION;
  232. }
  233. ///////////////////////////////////////////////////////////////////////////////////////////////////
  234. QString CodecDriver::getPath() const
  235. {
  236. return QDir(codecsPath()).absoluteFilePath(getFileName());
  237. }
  238. ///////////////////////////////////////////////////////////////////////////////////////////////////
  239. bool CodecDriver::isSystemCodec() const
  240. {
  241. // MS Windows
  242. if (driver.endsWith("_mf"))
  243. return true;
  244. // OSX
  245. if (driver.endsWith("_at"))
  246. return true;
  247. // Linux on RPI
  248. if (driver.endsWith("_mmal"))
  249. return true;
  250. // Not really a system codec, but treated as such for convenience
  251. if (driver.endsWith("_eae"))
  252. return true;
  253. return false;
  254. }
  255. ///////////////////////////////////////////////////////////////////////////////////////////////////
  256. QString CodecDriver::getSystemCodecType() const
  257. {
  258. if (!isSystemCodec())
  259. return "";
  260. int splitAt = driver.indexOf("_");
  261. if (splitAt < 0)
  262. return "";
  263. return driver.mid(splitAt + 1);
  264. }
  265. ///////////////////////////////////////////////////////////////////////////////////////////////////
  266. bool CodecDriver::isWhitelistedSystemAudioCodec() const
  267. {
  268. if (type == CodecType::Decoder)
  269. return g_systemAudioDecoderWhitelist.contains(driver);
  270. else
  271. return g_systemAudioEncoderWhitelist.contains(driver);
  272. }
  273. ///////////////////////////////////////////////////////////////////////////////////////////////////
  274. bool CodecDriver::isWhitelistedSystemVideoCodec() const
  275. {
  276. if (type == CodecType::Decoder)
  277. return g_systemVideoDecoderWhitelist.contains(driver);
  278. return false;
  279. }
  280. ///////////////////////////////////////////////////////////////////////////////////////////////////
  281. static bool useSystemAudioDecoders()
  282. {
  283. return true;
  284. }
  285. ///////////////////////////////////////////////////////////////////////////////////////////////////
  286. static bool useSystemVideoDecoders()
  287. {
  288. return SettingsComponent::Get().value(SETTINGS_SECTION_MAIN, "useSystemVideoCodecs").toBool();
  289. }
  290. /////////////////////////////////////////////////////////////////////////////////////////
  291. // Load the device ID, do some minimal verification, return "" on error.
  292. static QString loadDeviceID(QString filename)
  293. {
  294. QFile path(filename);
  295. if (!path.open(QFile::ReadOnly))
  296. return "";
  297. auto res = QString::fromLatin1(path.readAll());
  298. if (res.size() < 32 || res.size() > 512)
  299. res = ""; // mark as invalid
  300. return res;
  301. }
  302. /////////////////////////////////////////////////////////////////////////////////////////
  303. static QString findOldDeviceID()
  304. {
  305. // First we try to reuse the ID from other Plex products (i.e. PMS) or older paths.
  306. QStringList candidates = {
  307. #ifdef Q_OS_MAC
  308. QDir::home().path() + "/Library/Application Support/Plex/Codecs/.device-id",
  309. QDir::home().path() + "/Library/Application Support/Plex Media Server/Codecs/.device-id",
  310. #endif
  311. QStandardPaths::writableLocation(QStandardPaths::GenericDataLocation) + "/Plex/Codecs/.device-id",
  312. QStandardPaths::writableLocation(QStandardPaths::GenericDataLocation) + "/Plex/codecs/.device-id",
  313. QStandardPaths::writableLocation(QStandardPaths::GenericDataLocation) + "/Plex Media Server/Codecs/.device-id",
  314. Paths::dataDir() + "/codecs/.device-id",
  315. };
  316. for (auto candidate : candidates)
  317. {
  318. auto id = loadDeviceID(candidate);
  319. if (!id.isEmpty())
  320. return id;
  321. }
  322. return "";
  323. }
  324. ///////////////////////////////////////////////////////////////////////////////////////////////////
  325. // Returns "" on error.
  326. static QString loadDeviceID()
  327. {
  328. QString deviceIDFilename = QDir(codecsRootPath()).absoluteFilePath(".device-id");
  329. QString id = loadDeviceID(deviceIDFilename);
  330. if (id.isEmpty())
  331. {
  332. id = findOldDeviceID();
  333. if (id.isEmpty())
  334. {
  335. id = QUuid::createUuid().toString();
  336. // The UUID should be e.g. "8f6ad954-0cb9-4dbb-a5e5-e0b085f07cf8"
  337. if (id.startsWith("{"))
  338. id = id.mid(1);
  339. if (id.endsWith("}"))
  340. id = id.mid(0, id.size() - 1);
  341. }
  342. Utils::safelyWriteFile(deviceIDFilename, id.toLatin1());
  343. // We load it again to make sure writing it succeeded. If it doesn't, we'll
  344. // error out at a later point.
  345. id = loadDeviceID(deviceIDFilename);
  346. }
  347. return id;
  348. }
  349. ///////////////////////////////////////////////////////////////////////////////////////////////////
  350. static QString getFFmpegVersion()
  351. {
  352. auto mpv = mpv::qt::Handle::FromRawHandle(mpv_create());
  353. if (!mpv || mpv_initialize(mpv) < 0)
  354. return "";
  355. return mpv::qt::get_property(mpv, "ffmpeg-version").toString();
  356. }
  357. ///////////////////////////////////////////////////////////////////////////////////////////////////
  358. static void setEnv(QString var, QString val)
  359. {
  360. #ifdef Q_OS_WIN
  361. SetEnvironmentVariableW(var.toStdWString().c_str(), val.toStdWString().c_str());
  362. #else
  363. qputenv(var.toUtf8().data(), val.toUtf8().data());
  364. #endif
  365. }
  366. ///////////////////////////////////////////////////////////////////////////////////////////////////
  367. void Codecs::preinitCodecs()
  368. {
  369. // Extract the CI codecs version we set with --extra-version when compiling FFmpeg.
  370. QString ffmpegVersion = getFFmpegVersion();
  371. int sep = ffmpegVersion.indexOf(',');
  372. if (sep >= 0)
  373. g_codecVersion = ffmpegVersion.mid(sep + 1);
  374. else
  375. g_codecVersion = CODEC_VERSION;
  376. QString path = codecsPath();
  377. QDir("").mkpath(path);
  378. // Follows the convention used by av_get_token().
  379. QString escapedPath = path.replace("\\", "\\\\").replace(":", "\\:").replace("'", "\\'");
  380. // This must be run before any threads are started etc. (for safety).
  381. setEnv("FFMPEG_EXTERNAL_LIBS", escapedPath);
  382. QTemporaryDir d(QDir::tempPath() + "/pmp-eae-XXXXXX");
  383. d.setAutoRemove(false);
  384. g_eaeWatchFolder = d.path();
  385. setEnv("EAE_ROOT", g_eaeWatchFolder);
  386. g_deviceID = loadDeviceID();
  387. }
  388. #if 0
  389. ///////////////////////////////////////////////////////////////////////////////////////////////////
  390. static bool probeDecoder(QString decoder, QString resourceName)
  391. {
  392. QResource resource(resourceName);
  393. QLOG_DEBUG() << "Testing decoding of" << resource.fileName();
  394. if (!resource.isValid())
  395. return false;
  396. auto mpv = mpv::qt::Handle::FromRawHandle(mpv_create());
  397. if (!mpv || mpv_initialize(mpv) < 0)
  398. return false;
  399. // Disable any output.
  400. mpv::qt::set_property(mpv, "vo", "null");
  401. // Force the decoder. The ",-" means that if the first entry fails, the next codec in the global
  402. // codec list will not be tried, and decoding fails.
  403. mpv::qt::set_property(mpv, "vd", "lavc:" + decoder + ",-");
  404. // Attempt decoding, and return success.
  405. auto data = QByteArray::fromRawData((const char *)resource.data(), resource.size());
  406. if (resource.isCompressed())
  407. data = qUncompress(data);
  408. auto hex = data.toHex();
  409. mpv::qt::command(mpv, QVariantList{"loadfile", "hex://" + QString::fromLatin1(hex)});
  410. bool result = false;
  411. while (1) {
  412. mpv_event *event = mpv_wait_event(mpv, 0);
  413. if (event->event_id == MPV_EVENT_SHUTDOWN)
  414. break;
  415. if (event->event_id == MPV_EVENT_END_FILE)
  416. {
  417. mpv_event_end_file *endFile = (mpv_event_end_file *)event->data;
  418. result = endFile->reason == MPV_END_FILE_REASON_EOF;
  419. break;
  420. }
  421. }
  422. QLOG_DEBUG() << "Result:" << result;
  423. return result;
  424. }
  425. #endif
  426. ///////////////////////////////////////////////////////////////////////////////////////////////////
  427. static void probeCodecs()
  428. {
  429. #if 0
  430. if (useSystemVideoDecoders())
  431. {
  432. if (probeDecoder("h264_mf", ":/testmedia/high_4096x2304.h264"))
  433. g_mediaFoundationH264MaxResolution = QSize(4096, 2304);
  434. else if (probeDecoder("h264_mf", ":/testmedia/high_4096x2160.h264"))
  435. g_mediaFoundationH264MaxResolution = QSize(4096, 2160);
  436. else if (probeDecoder("h264_mf", ":/testmedia/high_4096x1080.h264"))
  437. g_mediaFoundationH264MaxResolution = QSize(4096, 1080);
  438. else
  439. g_systemVideoDecoderWhitelist.remove("h264_mf");
  440. QLOG_DEBUG() << "h264_mf max. resolution:" << g_mediaFoundationH264MaxResolution;
  441. }
  442. #endif
  443. #ifdef Q_OS_MAC
  444. // Unsupported, but avoid picking up broken Perian decoders.
  445. if (QSysInfo::MacintoshVersion <= QSysInfo::MV_10_10)
  446. g_systemAudioDecoderWhitelist.remove("ac3_at");
  447. #endif
  448. }
  449. ///////////////////////////////////////////////////////////////////////////////////////////////////
  450. static void updateCodecs()
  451. {
  452. QStringList candidates = {
  453. codecsRootPath(),
  454. #ifdef Q_OS_MAC
  455. QDir::home().path() + "/Library/Application Support/Plex/Codecs/",
  456. QDir::home().path() + "/Library/Application Support/Plex Media Server/Codecs/",
  457. #endif
  458. QStandardPaths::writableLocation(QStandardPaths::GenericDataLocation) + "/Plex/Codecs/",
  459. QStandardPaths::writableLocation(QStandardPaths::GenericDataLocation) + "/Plex/codecs/",
  460. QStandardPaths::writableLocation(QStandardPaths::GenericDataLocation) + "/Plex Media Server/Codecs/",
  461. Paths::dataDir() + "/codecs/",
  462. };
  463. QSet<QString> codecFiles;
  464. for (auto dir : candidates)
  465. {
  466. QDir qdir(dir);
  467. if (!qdir.exists())
  468. continue;
  469. for (auto entry : qdir.entryList(QDir::Dirs | QDir::NoDotAndDotDot))
  470. {
  471. QDir entryDir = qdir;
  472. if (!entryDir.cd(entry))
  473. continue;
  474. for (auto codecdirEntry : entryDir.entryList(QDir::Files))
  475. codecFiles.insert(codecdirEntry);
  476. }
  477. }
  478. QList<CodecDriver> install;
  479. for (CodecDriver& codec : g_cachedCodecList)
  480. {
  481. if (codecFiles.contains(codec.getFileName()))
  482. {
  483. if (codec.external && !codec.present)
  484. install.append(codec);
  485. }
  486. }
  487. if (!install.empty())
  488. {
  489. QLOG_INFO() << "Updating some codecs...";
  490. auto fetcher = new CodecsFetcher();
  491. QObject::connect(fetcher, &CodecsFetcher::done, [](CodecsFetcher* sender)
  492. {
  493. QLOG_INFO() << "Codec update finished.";
  494. sender->deleteLater();
  495. });
  496. fetcher->installCodecs(install);
  497. }
  498. }
  499. ///////////////////////////////////////////////////////////////////////////////////////////////////
  500. static void deleteOldCodecs()
  501. {
  502. QStringList neededPaths = {
  503. codecsPath(),
  504. };
  505. for (auto entry : QDir(codecsRootPath()).entryList(QDir::Dirs | QDir::NoDotAndDotDot))
  506. {
  507. QDir entryPath = codecsRootPath();
  508. if (!entryPath.cd(entry))
  509. continue;
  510. bool needed = false;
  511. for (auto neededPath : neededPaths)
  512. {
  513. if (entryPath.absolutePath() == QDir(neededPath).absolutePath())
  514. {
  515. needed = true;
  516. break;
  517. }
  518. }
  519. if (needed)
  520. continue;
  521. // Same version, but different platform -> just keep it.
  522. if (entry.startsWith(g_codecVersion + "-"))
  523. continue;
  524. QLOG_DEBUG() << "Deleting old directory: " << entryPath.absolutePath();
  525. entryPath.removeRecursively();
  526. }
  527. }
  528. ///////////////////////////////////////////////////////////////////////////////////////////////////
  529. void Codecs::initCodecs()
  530. {
  531. if (g_deviceID.isEmpty())
  532. throw FatalException("Could not read device-id.");
  533. if (g_eaeWatchFolder.isEmpty())
  534. throw FatalException("Could not create EAE working directory.");
  535. Codecs::updateCachedCodecList();
  536. updateCodecs();
  537. deleteOldCodecs();
  538. probeCodecs();
  539. }
  540. ///////////////////////////////////////////////////////////////////////////////////////////////////
  541. bool CodecsFetcher::codecNeedsDownload(const CodecDriver& codec)
  542. {
  543. if (codec.present)
  544. return false;
  545. if (!codec.external)
  546. {
  547. QLOG_ERROR() << "Codec" << codec.driver << "does not exist and is not downloadable.";
  548. return false;
  549. }
  550. for (int n = 0; n < m_Codecs.size(); n++)
  551. {
  552. if (Codecs::sameCodec(codec, m_Codecs[n]))
  553. return false;
  554. }
  555. QFile codecFile(codec.getPath());
  556. if (codecFile.exists())
  557. {
  558. QLOG_ERROR() << "Codec" << codec.driver << "exists on disk as" << codec.getPath()
  559. << "but is not known as installed - broken codec?";
  560. if (!codecFile.remove())
  561. return false;
  562. QLOG_ERROR() << "Retrying download.";
  563. }
  564. return true;
  565. }
  566. ///////////////////////////////////////////////////////////////////////////////////////////////////
  567. void CodecsFetcher::installCodecs(const QList<CodecDriver>& codecs)
  568. {
  569. foreach (CodecDriver codec, codecs)
  570. {
  571. if (codecNeedsDownload(codec))
  572. m_Codecs.enqueue(codec);
  573. if (codec.getSystemCodecType() == "eae")
  574. {
  575. m_eaeNeeded = true;
  576. if (!QFile(eaeBinaryPath()).exists())
  577. m_fetchEAE = true;
  578. }
  579. }
  580. startNext();
  581. }
  582. ///////////////////////////////////////////////////////////////////////////////////////////////////
  583. static Downloader::HeaderList getPlexHeaders()
  584. {
  585. Downloader::HeaderList headers;
  586. QString auth = SystemComponent::Get().authenticationToken();
  587. if (auth.size())
  588. headers.append({"X-Plex-Token", auth});
  589. headers.append({"X-Plex-Product", "Plex Media Player"});
  590. headers.append({"X-Plex-Platform", "Konvergo"});
  591. return headers;
  592. }
  593. static QUrl buildCodecQuery(QString version, QString name, QString build)
  594. {
  595. QString host = "https://plex.tv";
  596. QUrl url = QUrl(host + "/api/codecs/" + name);
  597. QUrlQuery query;
  598. query.addQueryItem("deviceId", g_deviceID);
  599. query.addQueryItem("version", version);
  600. query.addQueryItem("build", build);
  601. query.addQueryItem("oldestPreviousVersion", SettingsComponent::Get().oldestPreviousVersion());
  602. url.setQuery(query);
  603. return url;
  604. }
  605. ///////////////////////////////////////////////////////////////////////////////////////////////////
  606. void CodecsFetcher::startNext()
  607. {
  608. if (m_fetchEAE)
  609. {
  610. m_fetchEAE = false;
  611. QUrl url = buildCodecQuery(STRINGIFY(EAE_VERSION), "easyaudioencoder", getEAEBuildType());
  612. Downloader *downloader = new Downloader(QVariant("eae"), url, getPlexHeaders(), this);
  613. connect(downloader, &Downloader::done, this, &CodecsFetcher::codecInfoDownloadDone);
  614. return;
  615. }
  616. if (m_Codecs.isEmpty())
  617. {
  618. // Do final initializations.
  619. if (m_eaeNeeded)
  620. startEAE();
  621. emit done(this);
  622. return;
  623. }
  624. CodecDriver codec = m_Codecs.dequeue();
  625. QUrl url = buildCodecQuery(g_codecVersion, codec.getMangledName(), getBuildType());
  626. Downloader *downloader = new Downloader(QVariant::fromValue(codec), url, getPlexHeaders(), this);
  627. connect(downloader, &Downloader::done, this, &CodecsFetcher::codecInfoDownloadDone);
  628. }
  629. ///////////////////////////////////////////////////////////////////////////////////////////////////
  630. bool CodecsFetcher::processCodecInfoReply(const QVariant& context, const QByteArray& data)
  631. {
  632. QLOG_INFO() << "Got reply:" << QString::fromUtf8(data);
  633. QDomDocument dom;
  634. if (!dom.setContent(data))
  635. {
  636. QLOG_ERROR() << "XML parsing error.";
  637. return false;
  638. }
  639. QDomNodeList list = dom.elementsByTagName("MediaContainer");
  640. if (list.count() != 1)
  641. {
  642. QLOG_ERROR() << "MediaContainer XML element not found.";
  643. return false;
  644. }
  645. list = dom.elementsByTagName("Codec");
  646. if (list.count() != 1)
  647. {
  648. QLOG_ERROR() << "Codec XML element not found.";
  649. return false;
  650. }
  651. QDomNamedNodeMap attrs = list.at(0).attributes();
  652. QString url = attrs.namedItem("url").toAttr().value();
  653. if (!url.size())
  654. {
  655. QLOG_ERROR() << "No URL found.";
  656. return false;
  657. }
  658. QString hash = attrs.namedItem("fileSha").toAttr().value();
  659. m_currentHash = QByteArray::fromHex(hash.toUtf8());
  660. // it's hardcoded to SHA-1
  661. if (!m_currentHash.size()) {
  662. QLOG_ERROR() << "Hash value in unexpected format or missing:" << hash;
  663. return false;
  664. }
  665. Downloader *downloader = new Downloader(context, url, getPlexHeaders(), this);
  666. connect(downloader, &Downloader::done, this, &CodecsFetcher::codecDownloadDone);
  667. return true;
  668. }
  669. ///////////////////////////////////////////////////////////////////////////////////////////////////
  670. void CodecsFetcher::codecInfoDownloadDone(QVariant userData, bool success, const QByteArray& data)
  671. {
  672. if (!success || !processCodecInfoReply(userData, data))
  673. {
  674. QLOG_ERROR() << "Codec download failed.";
  675. startNext();
  676. }
  677. }
  678. #ifdef HAVE_MINIZIP
  679. static voidpf unz_open_file(voidpf opaque, const char* filename, int mode)
  680. {
  681. #ifdef Q_OS_WIN32
  682. return _wfopen(QString::fromUtf8(filename).toStdWString().c_str(), L"rb");
  683. #else
  684. return fopen(filename, "rb");
  685. #endif
  686. }
  687. static uLong unz_read_file(voidpf opaque, voidpf stream, void* buf, uLong size)
  688. {
  689. return fread(buf, 1, size, (FILE *)stream);
  690. }
  691. static uLong unz_write_file(voidpf opaque, voidpf stream, const void* buf, uLong size)
  692. {
  693. return 0;
  694. }
  695. static int unz_close_file(voidpf opaque, voidpf stream)
  696. {
  697. return fclose((FILE *)stream);
  698. }
  699. static int unz_error_file(voidpf opaque, voidpf stream)
  700. {
  701. return ferror((FILE *)stream);
  702. }
  703. static long unz_tell_file(voidpf opaque, voidpf stream)
  704. {
  705. return ftell((FILE *)stream);
  706. }
  707. long unz_seek_file(voidpf opaque, voidpf stream, uLong offset, int origin)
  708. {
  709. int whence = -1;
  710. switch (origin)
  711. {
  712. case ZLIB_FILEFUNC_SEEK_CUR:
  713. whence = SEEK_CUR;
  714. break;
  715. case ZLIB_FILEFUNC_SEEK_END:
  716. whence = SEEK_END;
  717. break;
  718. case ZLIB_FILEFUNC_SEEK_SET:
  719. whence = SEEK_SET;
  720. break;
  721. }
  722. return fseek((FILE *)stream, offset, whence);
  723. }
  724. ///////////////////////////////////////////////////////////////////////////////////////////////////
  725. static bool extractZip(QString zip, QString dest)
  726. {
  727. bool success = false;
  728. zlib_filefunc_def unzfilefuncs = {};
  729. unzfilefuncs.zopen_file = unz_open_file;
  730. unzfilefuncs.zread_file = unz_read_file;
  731. unzfilefuncs.zwrite_file = unz_write_file;
  732. unzfilefuncs.ztell_file = unz_tell_file;
  733. unzfilefuncs.zseek_file = unz_seek_file;
  734. unzfilefuncs.zclose_file = unz_close_file;
  735. unzfilefuncs.zerror_file = unz_error_file;
  736. unzFile file = unzOpen2(zip.toUtf8().data(), &unzfilefuncs);
  737. if (!file)
  738. {
  739. QLOG_ERROR() << "could not open .zip file.";
  740. goto fail;
  741. }
  742. unz_global_info info;
  743. int unzerr;
  744. if ((unzerr = unzGetGlobalInfo(file, &info)) != UNZ_OK)
  745. {
  746. QLOG_ERROR() << "unzGlobalInfo() failed with" << unzerr;
  747. goto fail;
  748. }
  749. if ((unzerr = unzGoToFirstFile(file)) != UNZ_OK)
  750. {
  751. QLOG_ERROR() << "unzGoToFirstFile() failed with" << unzerr;
  752. goto fail;
  753. }
  754. for (ZPOS64_T n = 0; n < info.number_entry; n++)
  755. {
  756. if (n > 0 && (unzerr = unzGoToNextFile(file)) != UNZ_OK)
  757. {
  758. QLOG_ERROR() << "unzGoToNextFile() failed with" << unzerr;
  759. goto fail;
  760. }
  761. char filename[256];
  762. unz_file_info finfo;
  763. if ((unzerr = unzGetCurrentFileInfo(file, &finfo, filename, sizeof(filename), 0, 0, 0, 0)) != UNZ_OK)
  764. {
  765. QLOG_ERROR() << "unzGetCurrentFileInfo() failed with" << unzerr;
  766. goto fail;
  767. }
  768. if ((unzerr = unzOpenCurrentFile(file)) != UNZ_OK)
  769. {
  770. QLOG_ERROR() << "unzOpenCurrentFile() failed with" << unzerr;
  771. goto fail;
  772. }
  773. char *pathpart = strrchr(filename, '/');
  774. if (pathpart)
  775. {
  776. // This part sucks especially: temporarily cut off the string.
  777. *pathpart = '\0';
  778. QDir dir(dest + "/" + filename);
  779. if (!dir.mkpath("."))
  780. {
  781. QLOG_ERROR() << "could not create zip sub directory";
  782. goto fail;
  783. }
  784. *pathpart = '/';
  785. }
  786. // Directory (probably)
  787. if (QString(filename).endsWith("/"))
  788. continue;
  789. QString writepath = dest + "/" + filename;
  790. QSaveFile out(writepath);
  791. if (!out.open(QIODevice::WriteOnly))
  792. {
  793. QLOG_ERROR() << "could not open output file" << filename;
  794. goto fail;
  795. }
  796. while (true)
  797. {
  798. char buf[4096];
  799. int read = unzReadCurrentFile(file, buf, sizeof(buf));
  800. if (read == 0)
  801. break;
  802. if (read < 0)
  803. {
  804. QLOG_ERROR() << "error decompressing zip entry" << filename;
  805. goto fail;
  806. }
  807. if (out.write(buf, read) != read)
  808. {
  809. QLOG_ERROR() << "error writing output file" << filename;
  810. goto fail;
  811. }
  812. }
  813. if (!out.commit())
  814. {
  815. QLOG_ERROR() << "error closing output file" << filename;
  816. goto fail;
  817. }
  818. #ifndef _WIN32
  819. // Set the executable bit.
  820. // We could try setting the full permissions as stored in the file, but why bother.
  821. if (finfo.external_fa & 0x400000)
  822. {
  823. if (!QFile::setPermissions(writepath, QFileDevice::Permissions(0x5145)))
  824. {
  825. QLOG_ERROR() << "could not set output executable bit on extracted file";
  826. goto fail;
  827. }
  828. }
  829. #endif
  830. }
  831. success = true;
  832. fail:
  833. unzClose(file);
  834. return success;
  835. }
  836. #else /* ifdef HAVE_MINIZIP */
  837. ///////////////////////////////////////////////////////////////////////////////////////////////////
  838. static bool extractZip(QString zip, QString dest)
  839. {
  840. return false;
  841. }
  842. #endif
  843. ///////////////////////////////////////////////////////////////////////////////////////////////////
  844. void CodecsFetcher::processCodecDownloadDone(const QVariant& context, const QByteArray& data)
  845. {
  846. QByteArray hash = QCryptographicHash::hash(data, QCryptographicHash::Sha1);
  847. if (hash != m_currentHash)
  848. {
  849. QLOG_ERROR() << "Checksum mismatch: got" << hash.toHex() << "expected" << m_currentHash.toHex();
  850. return;
  851. }
  852. if (context == QVariant("eae"))
  853. {
  854. QString dest = eaePrefixPath() + ".zip";
  855. QLOG_INFO() << "Storing EAE as" << dest;
  856. if (!Utils::safelyWriteFile(dest, data))
  857. {
  858. QLOG_ERROR() << "Writing codec file failed.";
  859. return;
  860. }
  861. QDir dir(dest);
  862. dir.removeRecursively();
  863. if (!extractZip(dest, eaePrefixPath()))
  864. {
  865. QLOG_ERROR() << "Could not extract zip.";
  866. dir.removeRecursively();
  867. return;
  868. }
  869. QFile::remove(dest);
  870. }
  871. else
  872. {
  873. CodecDriver codec = context.value<CodecDriver>();
  874. QLOG_INFO() << "Storing codec as" << codec.getPath();
  875. if (!Utils::safelyWriteFile(codec.getPath(), data))
  876. {
  877. QLOG_ERROR() << "Writing codec file failed.";
  878. return;
  879. }
  880. // This causes libmpv and eventually libavcodec to rescan and load new codecs.
  881. Codecs::updateCachedCodecList();
  882. for (const CodecDriver& item : Codecs::getCachedCodecList())
  883. {
  884. if (Codecs::sameCodec(item, codec) && !item.present)
  885. {
  886. QLOG_ERROR() << "Codec could not be loaded after installing it.";
  887. return;
  888. }
  889. }
  890. }
  891. QLOG_INFO() << "Codec download and installation succeeded.";
  892. }
  893. ///////////////////////////////////////////////////////////////////////////////////////////////////
  894. void CodecsFetcher::codecDownloadDone(QVariant userData, bool success, const QByteArray& data)
  895. {
  896. QLOG_INFO() << "Codec request finished.";
  897. if (success)
  898. {
  899. processCodecDownloadDone(userData, data);
  900. }
  901. else
  902. {
  903. QLOG_ERROR() << "Codec download HTTP request failed.";
  904. }
  905. startNext();
  906. }
  907. ///////////////////////////////////////////////////////////////////////////////////////////////////
  908. void CodecsFetcher::startEAE()
  909. {
  910. if (!g_eaeProcess)
  911. {
  912. g_eaeProcess = new QProcess();
  913. g_eaeProcess->setProcessChannelMode(QProcess::ForwardedChannels);
  914. connect(g_eaeProcess, &QProcess::stateChanged,
  915. [](QProcess::ProcessState s)
  916. {
  917. QLOG_INFO() << "EAE process state:" << s;
  918. }
  919. );
  920. connect(g_eaeProcess, &QProcess::errorOccurred,
  921. [](QProcess::ProcessError e)
  922. {
  923. QLOG_INFO() << "EAE process error:" << e;
  924. }
  925. );
  926. connect(g_eaeProcess, static_cast<void(QProcess::*)(int, QProcess::ExitStatus)>(&QProcess::finished),
  927. [](int exitCode, QProcess::ExitStatus exitStatus)
  928. {
  929. QLOG_INFO() << "EAE process finished:" << exitCode << exitStatus;
  930. }
  931. );
  932. }
  933. if (g_eaeProcess->state() == QProcess::NotRunning)
  934. {
  935. if (g_eaeProcess->program().size())
  936. {
  937. int exitCode = g_eaeProcess->exitStatus() == QProcess::NormalExit ? g_eaeProcess->exitCode() : -1;
  938. QLOG_ERROR() << "EAE died with exit code" << exitCode;
  939. }
  940. QLOG_INFO() << "Starting EAE.";
  941. g_eaeProcess->setProgram(eaeBinaryPath());
  942. g_eaeProcess->setWorkingDirectory(g_eaeWatchFolder);
  943. QDir dir(g_eaeWatchFolder);
  944. dir.removeRecursively();
  945. dir.mkpath(".");
  946. static const QStringList watchfolder_names =
  947. {
  948. "Convert to WAV (to 2ch or less)",
  949. "Convert to WAV (to 8ch or less)",
  950. "Convert to Dolby Digital (Low Quality - 384 kbps)",
  951. "Convert to Dolby Digital (High Quality - 640 kbps)",
  952. "Convert to Dolby Digital Plus (High Quality - 384 kbps)",
  953. "Convert to Dolby Digital Plus (Max Quality - 1024 kbps)",
  954. };
  955. for (auto folder : watchfolder_names)
  956. {
  957. if (!dir.mkpath(folder))
  958. {
  959. QLOG_ERROR() << "Could not create watch folder";
  960. }
  961. }
  962. g_eaeProcess->start();
  963. }
  964. }
  965. ///////////////////////////////////////////////////////////////////////////////////////////////////
  966. Downloader::Downloader(QVariant userData, const QUrl& url, const HeaderList& headers, QObject* parent)
  967. : QObject(parent), m_userData(userData), m_lastProgress(-1)
  968. {
  969. QLOG_INFO() << "HTTP request:" << url.toDisplayString();
  970. m_currentStartTime.start();
  971. connect(&m_WebCtrl, &QNetworkAccessManager::finished, this, &Downloader::networkFinished);
  972. QNetworkRequest request(url);
  973. for (int n = 0; n < headers.size(); n++)
  974. request.setRawHeader(headers[n].first.toUtf8(), headers[n].second.toUtf8());
  975. QNetworkReply *reply = m_WebCtrl.get(request);
  976. if (reply)
  977. {
  978. connect(reply, &QNetworkReply::downloadProgress, this, &Downloader::downloadProgress);
  979. }
  980. }
  981. ///////////////////////////////////////////////////////////////////////////////////////////////////
  982. void Downloader::downloadProgress(qint64 bytesReceived, qint64 bytesTotal)
  983. {
  984. if (bytesTotal > 0)
  985. {
  986. int progress = bytesReceived * 100 / bytesTotal;
  987. if (m_lastProgress < 0 || progress > m_lastProgress + 10)
  988. {
  989. m_lastProgress = progress;
  990. QLOG_INFO() << "HTTP request at" << progress << "% (" << bytesReceived << "/" << bytesTotal << ")";
  991. }
  992. }
  993. }
  994. ///////////////////////////////////////////////////////////////////////////////////////////////////
  995. void Downloader::networkFinished(QNetworkReply* pReply)
  996. {
  997. QLOG_INFO() << "HTTP finished after" << (m_currentStartTime.elapsed() + 500) / 1000
  998. << "seconds for a request of" << pReply->size() << "bytes.";
  999. if (pReply->error() == QNetworkReply::NoError)
  1000. {
  1001. emit done(m_userData, true, pReply->readAll());
  1002. }
  1003. else
  1004. {
  1005. QLOG_ERROR() << "HTTP download error:" << pReply->errorString();
  1006. emit done(m_userData, false, QByteArray());
  1007. }
  1008. pReply->deleteLater();
  1009. m_WebCtrl.clearAccessCache(); // make sure the TCP connection is closed
  1010. }
  1011. ///////////////////////////////////////////////////////////////////////////////////////////////////
  1012. static CodecDriver selectBestDecoder(const StreamInfo& stream)
  1013. {
  1014. QList<CodecDriver> codecs = Codecs::findCodecsByFormat(Codecs::getCachedCodecList(), CodecType::Decoder, stream.codec);
  1015. CodecDriver best = {};
  1016. int bestScore = -1;
  1017. for (auto codec : codecs)
  1018. {
  1019. int score = -1;
  1020. if (codec.isSystemCodec())
  1021. {
  1022. // we always want to avoid using non-whitelisted system codecs
  1023. // on the other hand, always prefer whitelisted system codecs
  1024. if ((codec.isWhitelistedSystemAudioCodec() && useSystemAudioDecoders()) ||
  1025. (codec.isWhitelistedSystemVideoCodec() && useSystemVideoDecoders()))
  1026. score = 10;
  1027. if (codec.format == "h264")
  1028. {
  1029. // Avoid using system video decoders for h264 profiles usually not supported.
  1030. if (stream.profile != "" && stream.profile != "main" && stream.profile != "baseline" && stream.profile != "high")
  1031. score = 1;
  1032. }
  1033. if (codec.driver == "h264_mf")
  1034. {
  1035. if (!stream.videoResolution.isEmpty())
  1036. {
  1037. QSize res = stream.videoResolution;
  1038. if (res.width() > g_mediaFoundationH264MaxResolution.width() ||
  1039. res.height() > g_mediaFoundationH264MaxResolution.height())
  1040. score = 1;
  1041. }
  1042. }
  1043. if (codec.driver == "aac_mf")
  1044. {
  1045. // Arbitrary but documented and enforced 6 channel limit by MS.
  1046. if (stream.audioChannels > 6)
  1047. score = 1;
  1048. // Another arbitrary limit.
  1049. if (stream.audioSampleRate > 0 && (stream.audioSampleRate < 8000 || stream.audioSampleRate > 48000))
  1050. score = 1;
  1051. }
  1052. if (codec.getSystemCodecType() == "eae")
  1053. score = HAVE_EAE ? 2 : -1;
  1054. }
  1055. else
  1056. {
  1057. // prefer codecs which do not have to be downloaded over others
  1058. if (codec.present)
  1059. score = 15;
  1060. else
  1061. score = 5;
  1062. }
  1063. if (score > bestScore && score >= 0)
  1064. {
  1065. best = codec;
  1066. bestScore = score;
  1067. }
  1068. }
  1069. return best;
  1070. }
  1071. ///////////////////////////////////////////////////////////////////////////////////////////////////
  1072. QList<CodecDriver> Codecs::determineRequiredCodecs(const PlaybackInfo& info)
  1073. {
  1074. QList<CodecDriver> result;
  1075. bool needAC3Encoder = false;
  1076. QLOG_INFO() << "Using system audio decoders:" << useSystemAudioDecoders();
  1077. QLOG_INFO() << "Using system video decoders:" << useSystemVideoDecoders();
  1078. #if !defined(HAVE_CODEC_MANIFEST)
  1079. QLOG_INFO() << "Not using on-demand codecs.";
  1080. #endif
  1081. for (auto stream : info.streams)
  1082. {
  1083. if (!stream.isVideo && !stream.isAudio)
  1084. continue;
  1085. if (!stream.codec.size())
  1086. {
  1087. QLOG_ERROR() << "unidentified codec";
  1088. continue;
  1089. }
  1090. // We could do this if we'd find a nice way to enable passthrough by default:
  1091. #if 0
  1092. // Can passthrough be used? If so, don't request a codec.
  1093. if (info.audioPassthroughCodecs.contains(stream.codec))
  1094. continue;
  1095. #endif
  1096. // (Would be nice to check audioChannels here to not request the encoder
  1097. // when playing stereo - but unfortunately, the ac3 encoder is loaded first,
  1098. // and only removed when detecting stereo input)
  1099. if (info.enableAC3Transcoding)
  1100. needAC3Encoder = true;
  1101. CodecDriver best = selectBestDecoder(stream);
  1102. if (best.valid())
  1103. {
  1104. result.append(best);
  1105. }
  1106. else
  1107. {
  1108. QLOG_ERROR() << "no decoder for" << stream.codec;
  1109. }
  1110. }
  1111. if (needAC3Encoder)
  1112. {
  1113. QList<CodecDriver> codecs = Codecs::findCodecsByFormat(Codecs::getCachedCodecList(), CodecType::Encoder, "ac3");
  1114. CodecDriver encoder = {};
  1115. for (auto codec : codecs)
  1116. {
  1117. if (codec.present && (!codec.isSystemCodec() || codec.isWhitelistedSystemAudioCodec()))
  1118. {
  1119. encoder = codec;
  1120. break;
  1121. }
  1122. if (codec.external)
  1123. encoder = codec; // fallback
  1124. }
  1125. if (encoder.valid())
  1126. {
  1127. result.append(encoder);
  1128. }
  1129. else
  1130. {
  1131. QLOG_ERROR() << "no AC3 encoder available";
  1132. }
  1133. }
  1134. return result;
  1135. }
  1136. void Codecs::Uninit()
  1137. {
  1138. if (g_eaeProcess)
  1139. {
  1140. delete g_eaeProcess;
  1141. g_eaeProcess = nullptr;
  1142. }
  1143. if (!g_eaeWatchFolder.isEmpty())
  1144. {
  1145. QDir dir(g_eaeWatchFolder);
  1146. dir.removeRecursively();
  1147. }
  1148. }