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

Side by Side Diff: media/cast/sender/fake_software_video_encoder.h

Issue 655713003: Standardize usage of virtual/override/final in media/ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 2 months 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 unified diff | Download patch
« no previous file with comments | « media/cast/sender/external_video_encoder.cc ('k') | media/cast/sender/video_encoder_impl.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef MEDIA_CAST_SENDER_FAKE_SOFTWARE_VIDEO_ENCODER_H_ 5 #ifndef MEDIA_CAST_SENDER_FAKE_SOFTWARE_VIDEO_ENCODER_H_
6 #define MEDIA_CAST_SENDER_FAKE_SOFTWARE_VIDEO_ENCODER_H_ 6 #define MEDIA_CAST_SENDER_FAKE_SOFTWARE_VIDEO_ENCODER_H_
7 7
8 #include "media/cast/cast_config.h" 8 #include "media/cast/cast_config.h"
9 #include "media/cast/sender/software_video_encoder.h" 9 #include "media/cast/sender/software_video_encoder.h"
10 10
11 namespace media { 11 namespace media {
12 namespace cast { 12 namespace cast {
13 13
14 class FakeSoftwareVideoEncoder : public SoftwareVideoEncoder { 14 class FakeSoftwareVideoEncoder : public SoftwareVideoEncoder {
15 public: 15 public:
16 FakeSoftwareVideoEncoder(const VideoSenderConfig& video_config); 16 FakeSoftwareVideoEncoder(const VideoSenderConfig& video_config);
17 virtual ~FakeSoftwareVideoEncoder(); 17 ~FakeSoftwareVideoEncoder() override;
18 18
19 // SoftwareVideoEncoder implementations. 19 // SoftwareVideoEncoder implementations.
20 virtual void Initialize() override; 20 void Initialize() override;
21 virtual void Encode(const scoped_refptr<media::VideoFrame>& video_frame, 21 void Encode(const scoped_refptr<media::VideoFrame>& video_frame,
22 const base::TimeTicks& reference_time, 22 const base::TimeTicks& reference_time,
23 EncodedFrame* encoded_frame) override; 23 EncodedFrame* encoded_frame) override;
24 virtual void UpdateRates(uint32 new_bitrate) override; 24 void UpdateRates(uint32 new_bitrate) override;
25 virtual void GenerateKeyFrame() override; 25 void GenerateKeyFrame() override;
26 virtual void LatestFrameIdToReference(uint32 frame_id) override; 26 void LatestFrameIdToReference(uint32 frame_id) override;
27 27
28 private: 28 private:
29 VideoSenderConfig video_config_; 29 VideoSenderConfig video_config_;
30 bool next_frame_is_key_; 30 bool next_frame_is_key_;
31 uint32 frame_id_; 31 uint32 frame_id_;
32 uint32 frame_id_to_reference_; 32 uint32 frame_id_to_reference_;
33 int frame_size_; 33 int frame_size_;
34 }; 34 };
35 35
36 } // namespace cast 36 } // namespace cast
37 } // namespace media 37 } // namespace media
38 38
39 #endif // MEDIA_CAST_SENDER_FAKE_SOFTWARE_VIDEO_ENCODER_H_ 39 #endif // MEDIA_CAST_SENDER_FAKE_SOFTWARE_VIDEO_ENCODER_H_
OLDNEW
« no previous file with comments | « media/cast/sender/external_video_encoder.cc ('k') | media/cast/sender/video_encoder_impl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698