Formatting ACM tests
Pure formatting of all files located in /webrtc/modules/audio_coding/main/test/ Smaller manual modifications done after using Eclipse formatting tool, like wrapping long lines (mostly comments). BUG=issue1024 Review URL: https://webrtc-codereview.appspot.com/1342004 git-svn-id: http://webrtc.googlecode.com/svn/trunk@3946 4adac7df-926f-26a2-2b94-8c16560cd09d
This commit is contained in:
@ -21,27 +21,26 @@
|
||||
|
||||
namespace webrtc {
|
||||
|
||||
class SpatialAudio : public ACMTest
|
||||
{
|
||||
public:
|
||||
SpatialAudio(int testMode);
|
||||
~SpatialAudio();
|
||||
class SpatialAudio : public ACMTest {
|
||||
public:
|
||||
SpatialAudio(int testMode);
|
||||
~SpatialAudio();
|
||||
|
||||
void Perform();
|
||||
private:
|
||||
int16_t Setup();
|
||||
void EncodeDecode(double leftPanning, double rightPanning);
|
||||
void EncodeDecode();
|
||||
void Perform();
|
||||
private:
|
||||
int16_t Setup();
|
||||
void EncodeDecode(double leftPanning, double rightPanning);
|
||||
void EncodeDecode();
|
||||
|
||||
AudioCodingModule* _acmLeft;
|
||||
AudioCodingModule* _acmRight;
|
||||
AudioCodingModule* _acmReceiver;
|
||||
Channel* _channel;
|
||||
PCMFile _inFile;
|
||||
PCMFile _outFile;
|
||||
int _testMode;
|
||||
AudioCodingModule* _acmLeft;
|
||||
AudioCodingModule* _acmRight;
|
||||
AudioCodingModule* _acmReceiver;
|
||||
Channel* _channel;
|
||||
PCMFile _inFile;
|
||||
PCMFile _outFile;
|
||||
int _testMode;
|
||||
};
|
||||
|
||||
} // namespace webrtc
|
||||
} // namespace webrtc
|
||||
|
||||
#endif
|
||||
|
||||
Reference in New Issue
Block a user