mirror of
https://github.com/badaix/snapcast.git
synced 2025-06-25 14:07:05 +02:00
Add documentation
This commit is contained in:
parent
fcaa2994af
commit
efd050a716
25 changed files with 140 additions and 80 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
|
||||
|
@ -37,11 +37,13 @@ namespace encoder
|
|||
class NullEncoder : public Encoder
|
||||
{
|
||||
public:
|
||||
NullEncoder(const std::string& codecOptions = "");
|
||||
/// c'tor
|
||||
explicit NullEncoder(std::string codecOptions);
|
||||
|
||||
void encode(const msg::PcmChunk& chunk) override;
|
||||
std::string name() const override;
|
||||
|
||||
protected:
|
||||
private:
|
||||
void initEncoder() override;
|
||||
};
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue