rename files to snake_case

This commit is contained in:
badaix 2019-10-12 18:28:29 +02:00
parent ea3921d8b7
commit a30f548a31
87 changed files with 181 additions and 212 deletions

View file

@ -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"

View file

@ -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;

View file

@ -1,7 +1,7 @@
#ifndef ENCODER_FACTORY_H
#define ENCODER_FACTORY_H
#include "encoder.h"
#include "encoder.hpp"
#include <string>
class EncoderFactory

View file

@ -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;

View file

@ -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>

View file

@ -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;

View file

@ -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>

View file

@ -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>

View file

@ -18,7 +18,7 @@
#ifndef PCM_ENCODER_H
#define PCM_ENCODER_H
#include "encoder.h"
#include "encoder.hpp"
class PcmEncoder : public Encoder