Document the 'int' return value of Resampler methods.

Remove an obsolete TODO comment.

R=andrew@webrtc.org
BUG=none

Review URL: https://webrtc-codereview.appspot.com/48589004

Cr-Commit-Position: refs/heads/master@{#8814}
git-svn-id: http://webrtc.googlecode.com/svn/trunk@8814 4adac7df-926f-26a2-2b94-8c16560cd09d
This commit is contained in:
wtc@chromium.org 2015-03-20 23:28:07 +00:00
parent 3200a64b3c
commit 4553941d32

View File

@ -61,12 +61,12 @@ enum ResamplerMode
kResamplerMode11To8 kResamplerMode11To8
}; };
// All methods return 0 on success and -1 on failure.
class Resampler class Resampler
{ {
public: public:
Resampler(); Resampler();
// TODO(andrew): use an init function instead.
Resampler(int inFreq, int outFreq, ResamplerType type); Resampler(int inFreq, int outFreq, ResamplerType type);
~Resampler(); ~Resampler();