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
diff --git a/webrtc/modules/audio_coding/main/test/PCMFile.h b/webrtc/modules/audio_coding/main/test/PCMFile.h
index bd2ce21..e3fdcd8 100644
--- a/webrtc/modules/audio_coding/main/test/PCMFile.h
+++ b/webrtc/modules/audio_coding/main/test/PCMFile.h
@@ -30,13 +30,12 @@
}
}
- void Open(const std::string& filename, uint16_t frequency,
- const char* mode, bool auto_rewind = false);
+ void Open(const std::string& filename, uint16_t frequency, const char* mode,
+ bool auto_rewind = false);
int32_t Read10MsData(AudioFrame& audio_frame);
- void Write10MsData(int16_t *playout_buffer,
- uint16_t length_smpls);
+ void Write10MsData(int16_t *playout_buffer, uint16_t length_smpls);
void Write10MsData(AudioFrame& audio_frame);
uint16_t PayloadLength10Ms() const;
@@ -46,11 +45,9 @@
return end_of_file_;
}
void Rewind();
- static int16_t ChooseFile(std::string* file_name,
- int16_t max_len,
+ static int16_t ChooseFile(std::string* file_name, int16_t max_len,
uint16_t* frequency_hz);
- static int16_t ChooseFile(std::string* file_name,
- int16_t max_len);
+ static int16_t ChooseFile(std::string* file_name, int16_t max_len);
bool Rewinded();
void SaveStereo(bool is_stereo = true);
void ReadStereo(bool is_stereo = true);