Johannes Kauffmann
e7ec26be6f
qt: widgets: use override
4 years ago
Alexandre Janniaux
c697585943
wayland: xdg-shell: init wm_capabilities to NULL
It's available starting with xdg-toplevel version 5, and we use
xdg-wm-base version 1 or the version adding configure_bounds which is
version 4, so we don't need to set a handler for now.
4 years ago
Alexandre Janniaux
19bd8d2783
wayland: input: init axis_value120 to NULL
Fixes a missing initializer warning for axis_value120. We currently
enforce version = 5 for the wl_seat version, and it's available starting
with wl_pointer version 8, which means that we don't need to set a
function handler for now.
4 years ago
Johannes Kauffmann
d143d2654a
sout: don't log a NULL psz_name
When sout_StreamDelete is called from sout_StreamNew, p_stream->psz_name
is set to NULL, so don't pass it to msg_Dbg.
4 years ago
Prince Gupta
63ac5078a8
qt: remove drop filter from interface window handler
global drop events are already handled on qml side
no need to handle it twice
ref #27190
4 years ago
Prince Gupta
4e6123ca5b
qml: handle subtitle and text drops
4 years ago
Prince Gupta
eccdf9299e
qt: implement function to associate subtitle file from qml
4 years ago
Prince Gupta
937717c824
qt: resolve win symlinks when inserting into playlist
4 years ago
Prince Gupta
0db43fcfb7
qt: improve PlaylistController insertion implementation
4 years ago
Prince Gupta
012c7a930f
qt: fix variable name
4 years ago
Prince Gupta
262a15a552
qt, x11compositor: accept drops on mainwindows
otherwise the interface never receives global drop events
ref #27190
4 years ago
Claudio Cambra
390d51af9c
macosx: Add a year and duration label to the album supplementary view
Signed-off-by: Claudio Cambra <claudio.cambra@gmail.com>
4 years ago
Claudio Cambra
02ca3bedc9
macosx: Fix layout and text elide for library collection view item labels
Signed-off-by: Claudio Cambra <claudio.cambra@gmail.com>
4 years ago
David Fuhrmann
3a08825c8a
configure.ac: Use pkg-config to detect presence of libgme
Use the existing pkg-config file to detect presence of libgme. This file
is already shipped on all known libgme versions (checked back until
0.6.0, which is from 2015).
This fixes build with recent libgme versions, which added even more
dependencies which were missing in the old check.
Fixes #27262
4 years ago
David Fuhrmann
9946913fa0
contrib: gme: Prepare pkgconfig file and list lc++ on mac
On mac, we use libc++ instead of libstdc++. While the library is
actually build against libc++ already, the pkgconfig file still
hardcoded libstdc++ instead.
Refs #27262
4 years ago
David Fuhrmann
e5831665ea
contrib: gme: Add libm to pkg-config file
This library links against libm, so it should be added into its
pkg-config file for static builds.
Refs #27262
4 years ago
David Fuhrmann
adf27a0017
contrib: gme: Depend on zlib
The latest version of game-music-emu links against zlib if it is
available.
Refs #27262
4 years ago
Benjamin Arnaud
45de32bea8
qml/NavigationWidget: Fix the 'requestLock' signal
4 years ago
Benjamin Arnaud
b72d7b0466
qml/NavigationWidget: Fix syntax
4 years ago
Claudio Cambra
697cf07910
macosx: Improve library supplementary detail view backgrounds, indicate which item the detail view is supplementing
Signed-off-by: Claudio Cambra <claudio.cambra@gmail.com>
4 years ago
Johannes Kauffmann
fbd9bf7ccd
test: concatenate string literals outside array
src/video_output/video_output.c:302:44: warning: suspicious concatenation of string literals in an array initialization; did you mean to separate the elements with a comma? [-Wstring-concatenation]
"--no-auto-preparse", "--dec-dev=" MODULE_STRING,
^
,
modules/stream_out/transcode.c:370:44: warning: suspicious concatenation of string literals in an array initialization; did you mean to separate the elements with a comma? [-Wstring-concatenation]
"--no-auto-preparse", "--dec-dev=" MODULE_STRING,
^
,
4 years ago
Johannes Kauffmann
c76ffccb39
direct3d9/interop_dxva2: remove unused HRESULT
They were never checked anyway.
4 years ago
Johannes Kauffmann
ebd2f0caaa
aribcam: remove duplicate const
modules/stream_filter/aribcam.c:54:38: warning: duplicate 'const' declaration specifier [-Wduplicate-decl-specifier]
54 | static const struct error_messages_s const b25_errors[] =
| ^~~~~
modules/stream_filter/aribcam.c:75:38: warning: duplicate 'const' declaration specifier [-Wduplicate-decl-specifier]
75 | static const struct error_messages_s const bcas_errors[] =
| ^~~~~
modules/stream_filter/aribcam.c:99:62: warning: duplicate 'const' declaration specifier [-Wduplicate-decl-specifier]
99 | const struct error_messages_s const *p_errors_messages )
| ^~~~~
4 years ago
Johannes Kauffmann
d67387a0f9
packetizer: flac: don't shadow local variable
modules/packetizer/flac.c: In function 'Packetize':
modules/packetizer/flac.c:423:40: warning: declaration of 'streaminfo' shadows a previous local [-Wshadow=compatible-local]
423 | const struct flac_stream_info *streaminfo =
| ^~~~~~~~~~
modules/packetizer/flac.c:371:40: note: shadowed declaration is here
371 | const struct flac_stream_info *streaminfo =
| ^~~~~~~~~~
4 years ago
Johannes Kauffmann
a9d82155ed
demux: adaptive: remove dead stores
Found by clang-tidy.
4 years ago
Johannes Kauffmann
1c8c2850fb
qt: navigation_history: make assert consistent
Mirror NavigationHistory::addLeaf, by using size(), and moving the call
into the assert statement.
It also fixes an unused variable warning.
4 years ago
Johannes Kauffmann
3e23f5ddc9
demux: adaptive: use size_t format specifier
4 years ago
Prince Gupta
e0a1248f81
qml: fix network thumbnail shadows
4 years ago
Benjamin Arnaud
ee9f5f7b8d
qt/ListMenuHelper: Fix the 'onRowsRemoved' event
4 years ago
Benjamin Arnaud
9d90e8e9ee
qt/RecentMenu: Fix the 'onRowsRemoved' event
4 years ago
Prince Gupta
67d3c1ea22
qml: fix margin assignment
4 years ago
Prince Gupta
206994abc0
qml: avoid unnecessary text property changed
improve batch retention when mouse is moved in the UI
also eliminate repainting
4 years ago
Francois Cartegnie
6b8ef562c4
Qt: fix bogus relative SetTime
4 years ago
Francois Cartegnie
bb7a2036ac
Qt: fix SET_TIME calls
4 years ago
Claudio Cambra
bec320b81a
macosx: Fix the preferences' media library folders table
Signed-off-by: Claudio Cambra <claudio.cambra@gmail.com>
4 years ago
Alexandre Janniaux
9e19c47f9e
libplacebo: instance: handle log creation error
4 years ago
Alexandre Janniaux
f2dfd4b2a3
libplacebo: instance: remove write-only module
pl->module is only used to check whether a module has been loaded and is
not even used for release afterwards.
4 years ago
Alexandre Janniaux
e434d9a4df
placebo: display: reset vd->sys in case of error
4 years ago
Alexandre Janniaux
0fbaf6c248
placebo: display: fix typo
4 years ago
Tristan Matthews
1cc04dc41b
contrib: vpx: update to 1.12.0
Notable changes:
- This release adds optimizations for Loongarch, adds support for vp8 in the
real-time rate control library, upgrades GoogleTest to v1.11.0, updates
libwebm to libwebm-1.0.0.28-20-g206d268, and includes numerous bug fixes.
Bug fixes:
- Fix to a crash related to {vp8/vp9}_set_roi_map.
- Fix to compiling failure with -Wformat-nonliteral.
- Fix to integer overflow with vp9 with high resolution content.
- Fix to AddNoiseTest failure with ARMv7.
- Fix to libvpx Null-dereference READ in vp8.
4 years ago
Tristan Matthews
e1f033f901
contrib: cargo: update cargo-c to 0.9.12
4 years ago
Tristan Matthews
73a57e0193
contrib: cargo: update rust to 1.63.0
4 years ago
Tristan Matthews
42554751f2
contrib: cargo: update rustup to 1.25.1
4 years ago
Claudio Cambra
8d145c9753
macosx: Add ability to browse local filesystem
Signed-off-by: Claudio Cambra <claudio.cambra@gmail.com>
4 years ago
Leon Vitanos
e78e9f2f2e
delete KeyNavigableGridView
4 years ago
Prince Gupta
7b6de0902a
qml: add spacing between descriptions in videoexpandpanel
4 years ago
Prince Gupta
b6facac5e3
qml: simplify 'view more' delgate implementation in video expand panel
4 years ago
Prince Gupta
8aa0e596d5
qml: fix unnecessary column wrapping
4 years ago
Niklas Haas
bbf9918e57
libplacebo: opengl: forward get_proc_address
This fixes GL function loading on some platforms, since the libplacebo
built-in loader is rather rudimentary.
4 years ago
Prince Gupta
48b5179dce
qml: add comments on ScrollingText
4 years ago