- Nov 22, 2022
-
-
Steve Lhomme authored
Contribs used to be build in the source tree. Autotools sometimes complain when you configure outside of tree if you had configured inside the tree before. We just need to remove the file it uses for detection of older builds. Fixes #27521
-
- Nov 21, 2022
-
-
- Nov 20, 2022
-
-
This make sure every call to `es_format_Clean` are made on a valid decoder.
-
The input format must then only be cleared when a decoder is present. Decoder not being set is a perfectly valid scenario when only generating an image. This patch address a crash introduced by 08b24866
-
We don't need a specific CMAKE_PIC anymore
-
It's used for static libraries and only for some targets that need it. CMake takes care of picking the right configuration.
-
It was never necessary, but that brings consistency between the cmake calls.
-
It's only built for Windows, so it makes no difference, but it will bring some coherence between cmake calls.
-
I got a Linux x86-64 build complaining it was not built with PIC. /usr/bin/ld: /root/build/contrib/x86_64-linux-gnu/lib/libfluidsynth.a(fluid_sys.c.o): warning: relocation against `in6addr_any@@GLIBC_2.2.5' in read-only section `.text' /usr/bin/ld: /root/build/contrib/x86_64-linux-gnu/lib/libfluidsynth.a(fluid_sys.c.o): relocation R_X86_64_PC32 against symbol `stderr@@GLIBC_2.2.5' can not be used when making a shared object; recompile with -fPIC
-
It installs the static library in our <prefix>/lib rather than <prefix>/lib64 Requires cmake 3.13 (we require 3.17).
-
Now it's built with meson.
-
- Nov 19, 2022
-
-
Evgeny Pavlov authored
-
Evgeny Pavlov authored
-
Setup silent rules so that the mkdir/protoc calls are not exposed by default, and the generated files needed for the build are correctly signaled to the user.
-
- build only the .pb.cc file, the .pb.h file will be generated at the same time so will not need a build rule when it's time to build it, as long as it needs the .pb.cc to be build before. - don't use a dummy .chromecast_proto which was used to group the .pb.cc and .pb.h we just generate the .pb.cc. The .pb.h is just a by-product. Now the .pb.cc is directly tied to the cast_channel.proto files changes and the PROTOBUF_VERSION value changes.
-
Fixes #27529
-
-
- Nov 18, 2022
-
-
Signed-off-by:
Claudio Cambra <developer@claudiocambra.com>
-
Signed-off-by:
Claudio Cambra <developer@claudiocambra.com>
-
macosx: Record navigation state when moving through stream/filesystem hierarchy in mediasource views Signed-off-by:
Claudio Cambra <developer@claudiocambra.com>
-
Signed-off-by:
Claudio Cambra <developer@claudiocambra.com>
-
Steve Lhomme authored
It allows showing friendly names in the .msi for each file rather than some hash. For now we never keep the .pdb files.
-
Steve Lhomme authored
So we can show when we generate it.
-
Steve Lhomme authored
-
Steve Lhomme authored
wix has no problem with that
-
Steve Lhomme authored
Wix is OK with it and UNIX MSI tools will not handle the Windows path.
-
Steve Lhomme authored
We don't support versions lower than that on 4.0.
-
Steve Lhomme authored
-
Signed-off-by:
Claudio Cambra <developer@claudiocambra.com>
-
Signed-off-by:
Claudio Cambra <developer@claudiocambra.com>
-
Signed-off-by:
Claudio Cambra <developer@claudiocambra.com>
-
- Nov 17, 2022
-
-
Steve Lhomme authored
This trick worked to redraw/resize the VLC HWND when the parent changes. But not all apps can do that.
-
Steve Lhomme authored
Every time the parent receives a message, we check if the size has not changed. The window hook only works if we have a DLL. This is the case in regular windows builds. It won't work if it's very built statically. We do not use an internal HWND anymore that was not always getting the WM_SIZE events.
-
-
-
-
Steve Lhomme authored
Use the same priority as the wasapi module counterpart in non-UWP builds.
-
Steve Lhomme authored
-
Steve Lhomme authored
The code has been submitted upstream [1], but no feedback so far. [1] https://github.com/tiwai/salsa-lib/pull/2
-
The initialization of the placebo shader, and value used to select whether the GL ES variant was used and the language version of the generated shaders, were dependant on defines that are only providing whether the headers are GLES 2 or OpenGL. The API used at the end will be provided during runtime and a file compiled against OpenGL can be run against a GLES 2 or more pipeline.
-