CI-Build 2022-08-22
This commit is contained in:
commit
1d1a1d2ad7
6 changed files with 2366 additions and 6 deletions
2
.github/workflows/ci.yml
vendored
2
.github/workflows/ci.yml
vendored
|
@ -82,7 +82,7 @@ jobs:
|
|||
- name: Install dependencies (Windows)
|
||||
if: matrix.config.os == 'windows-latest'
|
||||
run: |
|
||||
choco install ninja innosetup
|
||||
choco install ninja innosetup yasm
|
||||
$url = "https://github.com/leafo/moonscript/releases/download/win32-v0.5.0/moonscript-187bac54ee5a7450013e9c38e005a0e671b76f45.zip"
|
||||
mkdir moonscript
|
||||
Invoke-WebRequest -Uri $url -OutFile ".\moonscript\moonscript.zip"
|
||||
|
|
|
@ -342,9 +342,7 @@ struct video_frame_copy_subs final : public validator_video_loaded {
|
|||
STR_HELP("Copy the currently displayed subtitles to the clipboard, with transparent background")
|
||||
|
||||
void operator()(agi::Context *c) override {
|
||||
wxBitmap img(get_image(c, false, true));
|
||||
img.UseAlpha();
|
||||
SetClipboard(img);
|
||||
SetClipboard(wxBitmap(get_image(c, false, true), 32));
|
||||
}
|
||||
};
|
||||
|
||||
|
|
|
@ -34,8 +34,8 @@ int GetSelectedChoices(wxWindow *parent, wxArrayInt& selections, wxString const&
|
|||
selNone->Bind(wxEVT_BUTTON, [&](wxCommandEvent&) { dialog.SetSelections(wxArrayInt()); });
|
||||
|
||||
auto buttonSizer = new wxBoxSizer(wxHORIZONTAL);
|
||||
buttonSizer->Add(selAll, wxSizerFlags(0).Left());
|
||||
buttonSizer->Add(selNone, wxSizerFlags(0).Right());
|
||||
buttonSizer->Add(selAll);
|
||||
buttonSizer->Add(selNone);
|
||||
|
||||
auto sizer = dialog.GetSizer();
|
||||
sizer->Insert(2, buttonSizer, wxSizerFlags(0).Center());
|
||||
|
|
|
@ -2,6 +2,7 @@
|
|||
directory = ffmpeg
|
||||
url = https://gitlab.freedesktop.org/gstreamer/meson-ports/ffmpeg.git
|
||||
revision = meson-4.4
|
||||
patch_directory = ffmpeg
|
||||
|
||||
[provide]
|
||||
libavformat = libavformat_dep
|
||||
|
|
31
subprojects/packagefiles/ffmpeg/libavutil/x86/meson.build
Normal file
31
subprojects/packagefiles/ffmpeg/libavutil/x86/meson.build
Normal file
|
@ -0,0 +1,31 @@
|
|||
libavutil_x86_sources = files(
|
||||
'cpu.c',
|
||||
'fixed_dsp_init.c',
|
||||
'float_dsp_init.c',
|
||||
'imgutils_init.c',
|
||||
'lls_init.c',
|
||||
)
|
||||
|
||||
libavutil_x86_optional_sources = {
|
||||
'pixelutils' : files('pixelutils_init.c'),
|
||||
}
|
||||
|
||||
libavutil_x86_x86asm_sources = files(
|
||||
'cpuid.asm',
|
||||
'emms.asm',
|
||||
'fixed_dsp.asm',
|
||||
'float_dsp.asm',
|
||||
'imgutils.asm',
|
||||
'lls.asm',
|
||||
)
|
||||
|
||||
libavutil_x86_x86asm_optional_sources = {
|
||||
'pixelutils' : files('pixelutils.asm'),
|
||||
}
|
||||
|
||||
libavutil_x86_mmx_optional_sources = {
|
||||
}
|
||||
|
||||
libavutil_x86_optional_tests = {
|
||||
}
|
||||
|
2330
subprojects/packagefiles/ffmpeg/meson.build
Normal file
2330
subprojects/packagefiles/ffmpeg/meson.build
Normal file
File diff suppressed because it is too large
Load diff
Loading…
Reference in a new issue