mirror of
https://github.com/badaix/snapcast.git
synced 2025-07-19 17:37:45 +02:00
Fix warnings
This commit is contained in:
parent
92cc5d4e10
commit
70d7b97026
16 changed files with 33 additions and 23 deletions
|
@ -1,6 +1,6 @@
|
|||
/***
|
||||
This file is part of snapcast
|
||||
Copyright (C) 2014-2024 Johannes Pohl
|
||||
Copyright (C) 2014-2025 Johannes Pohl
|
||||
|
||||
This program is free software: you can redistribute it and/or modify
|
||||
it under the terms of the GNU General Public License as published by
|
||||
|
@ -146,6 +146,7 @@ void FlacEncoder::encode(const msg::PcmChunk& chunk)
|
|||
}
|
||||
|
||||
|
||||
// NOLINTNEXTLINE
|
||||
FLAC__StreamEncoderWriteStatus FlacEncoder::write_callback(const FLAC__StreamEncoder* /*encoder*/, const FLAC__byte buffer[], size_t bytes, unsigned samples,
|
||||
unsigned current_frame)
|
||||
{
|
||||
|
@ -168,6 +169,7 @@ FLAC__StreamEncoderWriteStatus FlacEncoder::write_callback(const FLAC__StreamEnc
|
|||
|
||||
namespace callback
|
||||
{
|
||||
// NOLINTNEXTLINE
|
||||
FLAC__StreamEncoderWriteStatus write_callback(const FLAC__StreamEncoder* encoder, const FLAC__byte buffer[], size_t bytes, unsigned samples,
|
||||
unsigned current_frame, void* client_data)
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue