Clang format of video_processing folder.

BUG=webrtc:5259

Review URL: https://codereview.webrtc.org/1508793002

Cr-Commit-Position: refs/heads/master@{#10925}
This commit is contained in:
mflodman
2015-12-07 22:54:50 -08:00
committed by Commit bot
parent a440c6fa80
commit 99ab9447d1
27 changed files with 501 additions and 511 deletions

View File

@ -23,10 +23,10 @@ namespace webrtc {
class VPMSpatialResampler {
public:
virtual ~VPMSpatialResampler() {};
virtual ~VPMSpatialResampler() {}
virtual int32_t SetTargetFrameSize(int32_t width, int32_t height) = 0;
virtual void SetInputFrameResampleMode(VideoFrameResampling
resampling_mode) = 0;
virtual void SetInputFrameResampleMode(
VideoFrameResampling resampling_mode) = 0;
virtual void Reset() = 0;
virtual int32_t ResampleFrame(const VideoFrame& inFrame,
VideoFrame* outFrame) = 0;
@ -49,11 +49,10 @@ class VPMSimpleSpatialResampler : public VPMSpatialResampler {
virtual bool ApplyResample(int32_t width, int32_t height);
private:
VideoFrameResampling resampling_mode_;
int32_t target_width_;
int32_t target_height_;
Scaler scaler_;
VideoFrameResampling resampling_mode_;
int32_t target_width_;
int32_t target_height_;
Scaler scaler_;
};
} // namespace webrtc