mirror of
https://github.com/badaix/snapcast.git
synced 2025-05-14 01:26:42 +02:00
Replace some pointers with references
This commit is contained in:
parent
dde63f9dd8
commit
dec7306a84
17 changed files with 77 additions and 67 deletions
|
@ -16,8 +16,8 @@
|
|||
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
***/
|
||||
|
||||
#ifndef PCM_ENCODER_H
|
||||
#define PCM_ENCODER_H
|
||||
#ifndef PCM_ENCODER_HPP
|
||||
#define PCM_ENCODER_HPP
|
||||
#include "encoder.hpp"
|
||||
|
||||
namespace encoder
|
||||
|
@ -27,7 +27,7 @@ class PcmEncoder : public Encoder
|
|||
{
|
||||
public:
|
||||
PcmEncoder(const std::string& codecOptions = "");
|
||||
void encode(const msg::PcmChunk* chunk) override;
|
||||
void encode(const msg::PcmChunk& chunk) override;
|
||||
std::string name() const override;
|
||||
|
||||
protected:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue