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:
@ -30,13 +30,12 @@ class PCMFile {
|
||||
}
|
||||
}
|
||||
|
||||
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 @@ class PCMFile {
|
||||
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);
|
||||
|
Reference in New Issue
Block a user