mirror of
https://github.com/badaix/snapcast.git
synced 2025-06-03 03:11:43 +02:00
rename files to snake_case
This commit is contained in:
parent
ea3921d8b7
commit
a30f548a31
87 changed files with 181 additions and 212 deletions
|
@ -22,7 +22,7 @@
|
|||
#include <memory>
|
||||
#include <string>
|
||||
|
||||
#include "common/sampleFormat.h"
|
||||
#include "common/sample_format.hpp"
|
||||
#include "message/codecHeader.h"
|
||||
#include "message/pcmChunk.h"
|
||||
|
|
@ -16,17 +16,17 @@
|
|||
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
***/
|
||||
|
||||
#include "encoderFactory.h"
|
||||
#include "pcmEncoder.h"
|
||||
#include "encoder_factory.hpp"
|
||||
#include "pcm_encoder.hpp"
|
||||
#if defined(HAS_OGG) && defined(HAS_VORBIS) && defined(HAS_VORBISENC)
|
||||
#include "oggEncoder.h"
|
||||
#include "ogg_encoder.hpp"
|
||||
#endif
|
||||
#if defined(HAS_FLAC)
|
||||
#include "flacEncoder.h"
|
||||
#include "flac_encoder.hpp"
|
||||
#endif
|
||||
#include "common/aixlog.hpp"
|
||||
#include "common/snapException.h"
|
||||
#include "common/utils/string_utils.h"
|
||||
#include "common/snap_exception.hpp"
|
||||
#include "common/utils/string_utils.hpp"
|
||||
|
||||
|
||||
using namespace std;
|
|
@ -1,7 +1,7 @@
|
|||
#ifndef ENCODER_FACTORY_H
|
||||
#define ENCODER_FACTORY_H
|
||||
|
||||
#include "encoder.h"
|
||||
#include "encoder.hpp"
|
||||
#include <string>
|
||||
|
||||
class EncoderFactory
|
|
@ -19,9 +19,9 @@
|
|||
#include <iostream>
|
||||
|
||||
#include "common/aixlog.hpp"
|
||||
#include "common/snapException.h"
|
||||
#include "common/strCompat.h"
|
||||
#include "flacEncoder.h"
|
||||
#include "common/snap_exception.hpp"
|
||||
#include "common/str_compat.hpp"
|
||||
#include "flac_encoder.hpp"
|
||||
|
||||
using namespace std;
|
||||
|
|
@ -18,7 +18,7 @@
|
|||
|
||||
#ifndef FLAC_ENCODER_H
|
||||
#define FLAC_ENCODER_H
|
||||
#include "encoder.h"
|
||||
#include "encoder.hpp"
|
||||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
#include <string.h>
|
|
@ -20,11 +20,11 @@
|
|||
#include <iostream>
|
||||
|
||||
#include "common/aixlog.hpp"
|
||||
#include "common/snapException.h"
|
||||
#include "common/strCompat.h"
|
||||
#include "common/utils.h"
|
||||
#include "common/utils/string_utils.h"
|
||||
#include "oggEncoder.h"
|
||||
#include "common/snap_exception.hpp"
|
||||
#include "common/str_compat.hpp"
|
||||
#include "common/utils.hpp"
|
||||
#include "common/utils/string_utils.hpp"
|
||||
#include "ogg_encoder.hpp"
|
||||
|
||||
using namespace std;
|
||||
|
|
@ -18,7 +18,7 @@
|
|||
|
||||
#ifndef OGG_ENCODER_H
|
||||
#define OGG_ENCODER_H
|
||||
#include "encoder.h"
|
||||
#include "encoder.hpp"
|
||||
#include <ogg/ogg.h>
|
||||
#include <vorbis/vorbisenc.h>
|
||||
|
|
@ -16,7 +16,7 @@
|
|||
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
***/
|
||||
|
||||
#include "pcmEncoder.h"
|
||||
#include "pcm_encoder.hpp"
|
||||
#include "common/endian.hpp"
|
||||
#include <memory>
|
||||
|
|
@ -18,7 +18,7 @@
|
|||
|
||||
#ifndef PCM_ENCODER_H
|
||||
#define PCM_ENCODER_H
|
||||
#include "encoder.h"
|
||||
#include "encoder.hpp"
|
||||
|
||||
|
||||
class PcmEncoder : public Encoder
|
Loading…
Add table
Add a link
Reference in a new issue