Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(41)

Unified Diff: webrtc/modules/video_processing/spatial_resampler.h

Issue 1508793002: Clang format of video_processing folder. (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: pbos review Created 5 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: webrtc/modules/video_processing/spatial_resampler.h
diff --git a/webrtc/modules/video_processing/spatial_resampler.h b/webrtc/modules/video_processing/spatial_resampler.h
index 064aeb774c47223ed1c714a69ba984a526893ea2..51820e24e5ed8fd00f060d6523cc297a5e912d18 100644
--- a/webrtc/modules/video_processing/spatial_resampler.h
+++ b/webrtc/modules/video_processing/spatial_resampler.h
@@ -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

Powered by Google App Engine
This is Rietveld 408576698