summaryrefslogtreecommitdiff
path: root/voice_engine/voe_file_impl.h
diff options
context:
space:
mode:
authorhenrika@webrtc.org <henrika@webrtc.org@4adac7df-926f-26a2-2b94-8c16560cd09d>2014-05-12 12:24:10 +0000
committerhenrika@webrtc.org <henrika@webrtc.org@4adac7df-926f-26a2-2b94-8c16560cd09d>2014-05-12 12:24:10 +0000
commit7f5e2973967c6ef5859334eb4ccac2c7c0020565 (patch)
tree5068c2576f3e4b180cde9617e4c893497ca04b87 /voice_engine/voe_file_impl.h
parentd2632a025025efa1e5b56ff54941a217547dfde8 (diff)
downloadwebrtc-7f5e2973967c6ef5859334eb4ccac2c7c0020565.tar.gz
Removes parts of the webrtc::VoEFile sub API as part of a clean-up operation where the goal is to remove unused APIs.
BUG=3206 R=niklas.enbom@webrtc.org Review URL: https://webrtc-codereview.appspot.com/14429004 git-svn-id: http://webrtc.googlecode.com/svn/trunk/webrtc@6103 4adac7df-926f-26a2-2b94-8c16560cd09d
Diffstat (limited to 'voice_engine/voe_file_impl.h')
-rw-r--r--voice_engine/voe_file_impl.h41
1 files changed, 0 insertions, 41 deletions
diff --git a/voice_engine/voe_file_impl.h b/voice_engine/voe_file_impl.h
index f43d4f14..584d0a17 100644
--- a/voice_engine/voe_file_impl.h
+++ b/voice_engine/voe_file_impl.h
@@ -41,8 +41,6 @@ public:
virtual int IsPlayingFileLocally(int channel);
- virtual int ScaleLocalFilePlayout(int channel, float scale);
-
// Use file as microphone input
virtual int StartPlayingFileAsMicrophone(
@@ -64,8 +62,6 @@ public:
virtual int IsPlayingFileAsMicrophone(int channel);
- virtual int ScaleFileAsMicrophonePlayout(int channel, float scale);
-
// Record speaker signal to file
virtual int StartRecordingPlayout(int channel,
@@ -90,43 +86,6 @@ public:
virtual int StopRecordingMicrophone();
- // Conversion between different file formats
-
- virtual int ConvertPCMToWAV(const char* fileNameInUTF8,
- const char* fileNameOutUTF8);
-
- virtual int ConvertPCMToWAV(InStream* streamIn,
- OutStream* streamOut);
-
- virtual int ConvertWAVToPCM(const char* fileNameInUTF8,
- const char* fileNameOutUTF8);
-
- virtual int ConvertWAVToPCM(InStream* streamIn,
- OutStream* streamOut);
-
- virtual int ConvertPCMToCompressed(const char* fileNameInUTF8,
- const char* fileNameOutUTF8,
- CodecInst* compression);
-
- virtual int ConvertPCMToCompressed(InStream* streamIn,
- OutStream* streamOut,
- CodecInst* compression);
-
- virtual int ConvertCompressedToPCM(const char* fileNameInUTF8,
- const char* fileNameOutUTF8);
-
- virtual int ConvertCompressedToPCM(InStream* streamIn,
- OutStream* streamOut);
-
- // Misc file functions
-
- virtual int GetFileDuration(
- const char* fileNameUTF8,
- int& durationMs,
- FileFormats format = kFileFormatPcm16kHzFile);
-
- virtual int GetPlaybackPosition(int channel, int& positionMs);
-
protected:
VoEFileImpl(voe::SharedData* shared);
virtual ~VoEFileImpl();