CodecsComponent.cpp 38 KB

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