Search Criteria
Package Details: video2x-qt6-git 6.4.0.r0.g4793103-1
Package Actions
| Git Clone URL: | https://aur.archlinux.org/video2x-qt6-git.git (read-only, click to copy) |
|---|---|
| Package Base: | video2x-qt6-git |
| Description: | The Qt6 GUI for Video2X |
| Upstream URL: | https://github.com/k4yt3x/video2x-qt6 |
| Licenses: | ISC |
| Conflicts: | video2x-qt6 |
| Provides: | video2x-qt6 |
| Submitter: | k4yt3x |
| Maintainer: | k4yt3x |
| Last Packager: | k4yt3x |
| Votes: | 1 |
| Popularity: | 0.000038 |
| First Submitted: | 2024-12-23 03:13 (UTC) |
| Last Updated: | 2025-01-25 05:37 (UTC) |
Dependencies (8)
- qt6-base (qt6-base-gitAUR, qt6-base-hifpsAUR, qt6-base-headlessAUR)
- qt6-svg
- spdlog (spdlog-gitAUR)
- video2xAUR (video2xAUR, video2x-gitAUR)
- clang (llvm-gitAUR, clang-minimal-gitAUR, clang17-binAUR) (make)
- cmake (cmake3AUR, cmake-gitAUR) (make)
- git (git-gitAUR, git-glAUR, git-wd40AUR) (make)
- qt6-tools (make)
Latest Comments
laichiaheng commented on 2026-04-15 08:16 (UTC) (edited on 2026-04-15 08:17 (UTC) by laichiaheng)
/home/laichiaheng/.cache/yay/video2x-qt6-git/src/video2x-qt6/src/taskconfigdialog.cpp:553:67: warning: implicit conversion changes signedness: 'const uint32_t' (aka 'const unsigned int') to 'int' [-Wsign-conversion] 553 | ui->vulkanDeviceSelectionComboBox->setCurrentIndex(taskConfig.vkDeviceIndex); |
~~^/home/laichiaheng/.cache/yay/video2x-qt6-git/src/video2x-qt6/src/taskconfigdialog.cpp:684:59: error: no member named 'copy_streams' in 'video2x::encoder::EncoderConfig' 684 | ui->copyStreamsCheckBox->setChecked(taskConfig.encCfg.copy_streams); |~ ^ /home/laichiaheng/.cache/yay/video2x-qt6-git/src/video2x-qt6/src/taskconfigdialog.cpp:694:52: warning: implicit conversion loses integer precision: 'const int64_t' (aka 'const long') to 'int' [-Wshorten-64-to-32] 694 | ui->bitRateSpinBox->setValue(taskConfig.encCfg.bit_rate); |^~ /home/laichiaheng/.cache/yay/video2x-qt6-git/src/video2x-qt6/src/mainwindow.cpp:711:78: warning: implicit conversion loses integer precision: 'qsizetype' (aka 'long long') to 'int' [-Wshorten-64-to-32] 711 | ui->overallProgressBar->setMaximum(ui->overallProgressBar->maximum() + fileNames.count()); |^2 warnings generated. /home/laichiaheng/.cache/yay/video2x-qt6-git/src/video2x-qt6/src/mainwindow.cpp:940:37: warning: implicit conversion loses integer precision: 'int64_t' (aka 'long') to 'int' [-Wshorten-64-to-32] 940 | int hours = elapsedMilliseconds / (1000 * 60 * 60); |~^~~~carlosnewmusic commented on 2026-02-21 17:39 (UTC)
build error https://pastes.io/video2x-qt
Archanfel80HUN commented on 2026-02-16 12:24 (UTC)
src/taskprocessor.cpp
Fixed implicit conversions for frame counts (int64_t → int) when emitting progress signals.
Archanfel80HUN commented on 2026-02-16 12:24 (UTC)
src/taskconfigdialog.cpp
Commented out
copy_streamsreferences (removed from libvideo2x API) and fixed implicit conversions for Vulkan device index (int ↔ uint32_t), scene detection threshold (double → float), and bit rate (int64_t → int).Archanfel80HUN commented on 2026-02-16 12:24 (UTC)
copy_streamsmember was removed fromEncoderConfigin libvideo2x, so all references have been commented out.static_castconversions to resolve compiler warnings for type mismatches (int64_t → int, int → uint32_t, uint32_t → int, double → float, qsizetype → int).src/mainwindow.cpp
Fixed implicit conversions in progress tracking: qsizetype to int for progress bar maximum, and int64_t to int for elapsed time calculation.
YaSha256 commented on 2025-12-06 11:29 (UTC) (edited on 2025-12-06 11:34 (UTC) by YaSha256)
Fix: Edit
src/video2x-qt6/src/taskconfigdialog.cppLine 478 - replace:
with:
Line 684 - replace:
with:
Then:
makepkg -si --noextractsamdavid6 commented on 2025-12-04 02:42 (UTC) (edited on 2025-12-04 02:44 (UTC) by samdavid6)
First gave me one error:
Installed vulkan-headers
Now install fails in another location
Maybe vulkan-headers as a dependency?