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

Side by Side Diff: media/cast/video_sender/mock_video_encoder_controller.h

Issue 116623002: Cast: Adding support for GPU accelerated encode (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fixed merge nits Created 6 years, 11 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
OLDNEW
(Empty)
1 // Copyright 2013 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #ifndef MEDIA_CAST_VIDEO_SENDER_MOCK_VIDEO_ENCODER_CONTROLLER_H_
6 #define MEDIA_CAST_VIDEO_SENDER_MOCK_VIDEO_ENCODER_CONTROLLER_H_
7
8 #include "media/cast/cast_config.h"
9 #include "testing/gmock/include/gmock/gmock.h"
10
11 namespace media {
12 namespace cast {
13
14 class MockVideoEncoderController : public VideoEncoderController {
15 public:
16 MockVideoEncoderController();
17 virtual ~MockVideoEncoderController();
18
19 MOCK_METHOD1(SetBitRate, void(int new_bit_rate));
20
21 MOCK_METHOD1(SkipNextFrame, void(bool skip_next_frame));
22
23 MOCK_METHOD0(GenerateKeyFrame, void());
24
25 MOCK_METHOD1(LatestFrameIdToReference, void(uint32 frame_id));
26
27 MOCK_CONST_METHOD0(NumberOfSkippedFrames, int());
28 };
29
30 } // namespace cast
31 } // namespace media
32
33 #endif // MEDIA_CAST_VIDEO_SENDER_MOCK_VIDEO_ENCODER_CONTROLLER_H_
34
OLDNEW
« no previous file with comments | « media/cast/video_sender/external_video_encoder_unittest.cc ('k') | media/cast/video_sender/mock_video_encoder_controller.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698