mpd/src/decoder
Rosen Penev a859de6806 sndfile: fix compilation with clang's libc++
error: non-constant-expression cannot be narrowed from type 'sf_count_t'
(aka 'long long') to 'size_type' (aka 'unsigned int') in initializer list
 [-Wc++11-narrowing]
  215 |                      std::span{buffer, num_frames * frame_size},
      |                                        ^~~~~~~~~~~~~~~~~~~~~~~
note: insert an explicit cast to silence this issue
  215 |                      std::span{buffer, num_frames * frame_size},
      |                                        ^~~~~~~~~~~~~~~~~~~~~~~
      |                                        static_cast<size_type>()

Signed-off-by: Rosen Penev <rosenp@gmail.com>
2024-01-03 12:18:52 -08:00
..
plugins sndfile: fix compilation with clang's libc++ 2024-01-03 12:18:52 -08:00
Bridge.cxx use SPDX IDs, replacing the long copyright headers 2023-03-06 14:59:48 +01:00
Bridge.hxx use SPDX IDs, replacing the long copyright headers 2023-03-06 14:59:48 +01:00
Client.hxx use SPDX IDs, replacing the long copyright headers 2023-03-06 14:59:48 +01:00
Command.hxx use SPDX IDs, replacing the long copyright headers 2023-03-06 14:59:48 +01:00
Control.cxx use SPDX IDs, replacing the long copyright headers 2023-03-06 14:59:48 +01:00
Control.hxx use SPDX IDs, replacing the long copyright headers 2023-03-06 14:59:48 +01:00
DecoderAPI.cxx use SPDX IDs, replacing the long copyright headers 2023-03-06 14:59:48 +01:00
DecoderAPI.hxx use SPDX IDs, replacing the long copyright headers 2023-03-06 14:59:48 +01:00
DecoderBuffer.cxx use SPDX IDs, replacing the long copyright headers 2023-03-06 14:59:48 +01:00
DecoderBuffer.hxx use SPDX IDs, replacing the long copyright headers 2023-03-06 14:59:48 +01:00
DecoderList.cxx reorder ffmpeg to be lower priority than gme 2023-05-21 20:58:53 +02:00
DecoderList.hxx use SPDX IDs, replacing the long copyright headers 2023-03-06 14:59:48 +01:00
DecoderPlugin.cxx decoder/plugin: kludge for Android NDK r25c 2023-03-12 19:53:03 +01:00
DecoderPlugin.hxx decoder/Plugin: remove unused and broken wrapper method ContainerScan() 2023-09-26 10:13:42 +02:00
DecoderPrint.cxx decoder/plugin: add "suffixes" function 2023-03-12 09:17:38 +01:00
DecoderPrint.hxx use SPDX IDs, replacing the long copyright headers 2023-03-06 14:59:48 +01:00
Domain.cxx use SPDX IDs, replacing the long copyright headers 2023-03-06 14:59:48 +01:00
Domain.hxx use SPDX IDs, replacing the long copyright headers 2023-03-06 14:59:48 +01:00
meson.build Partition, ...: use libfmt for logging 2021-06-24 21:40:11 +02:00
Reader.cxx io/Reader: use std::span 2023-10-07 08:44:42 +02:00
Reader.hxx io/Reader: use std::span 2023-10-07 08:44:42 +02:00
Thread.cxx use more libfmt instead of sprintf() 2023-03-06 19:50:53 +01:00