Skip to content

Commit

Permalink
Merge branches 'bugfixes', 'bestsource' and 'vapoursynth' into feature
Browse files Browse the repository at this point in the history
  • Loading branch information
arch1t3cht committed Apr 18, 2024
4 parents 4b42664 + 2fdd7c7 + 3931407 + 9683959 commit 3d997d7
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 3 deletions.
2 changes: 1 addition & 1 deletion packages/win_installer/fragment_codecs.iss
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,6 @@ DestDir: {app}; Source: {#DEPS_DIR}\AvisynthPlus64\x64\Output\plugins\DirectShow
DestDir: {app}\csri; Source: {#DEPS_DIR}\VSFilter\x64\VSFilter.dll; Flags: ignoreversion; Components: main
; VapourSynth
DestDir: {app}\vapoursynth; Source: {#DEPS_DIR}\L-SMASH-Works\libvslsmashsource.dll; Flags: ignoreversion; Components: vapoursynth
DestDir: {app}\vapoursynth; Source: {#DEPS_DIR}\BestSource\x64\BestSource.dll; Flags: ignoreversion; Components: vapoursynth
DestDir: {app}\vapoursynth; Source: {#DEPS_DIR}\BestSource\BestSource.dll; Flags: ignoreversion; Components: vapoursynth
DestDir: {app}\vapoursynth; Source: {#DEPS_DIR}\SCXVid\libscxvid.dll; Flags: ignoreversion; Components: vapoursynth
DestDir: {app}\vapoursynth; Source: {#DEPS_DIR}\WWXD\libwwxd64.dll; Flags: ignoreversion; Components: vapoursynth
4 changes: 2 additions & 2 deletions src/bestsource_common.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -68,8 +68,8 @@ std::pair<TrackSelection, bool> SelectTrack(agi::fs::path const& filename, bool
result = static_cast<TrackSelection>(TrackNumbers[0]);
} else {
int Choice = wxGetSingleChoiceIndex(
audio ? _("Multiple video tracks detected, please choose the one you wish to load:") : _("Multiple audio tracks detected, please choose the one you wish to load:"),
audio ? _("Choose video track") : _("Choose audio track"),
audio ? _("Multiple audio tracks detected, please choose the one you wish to load:") : _("Multiple video tracks detected, please choose the one you wish to load:"),
audio ? _("Choose audio track") : _("Choose video track"),
Choices);

if (Choice >= 0)
Expand Down
8 changes: 8 additions & 0 deletions subprojects/freetype2.wrap
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
[wrap-git]
directory = freetype2
url = https://gitlab.freedesktop.org/freetype/freetype.git
revision = master

[provide]
freetype = freetype_dep
freetype2 = freetype_dep

0 comments on commit 3d997d7

Please sign in to comment.