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

Side by Side Diff: webrtc/media/engine/videoencodersoftwarefallbackwrapper.h

Issue 2398963003: Move usage of QualityScaler to ViEEncoder. (Closed)
Patch Set: rebase Created 4 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 unified diff | Download patch
OLDNEW
1 /* 1 /*
2 * Copyright (c) 2016 The WebRTC project authors. All Rights Reserved. 2 * Copyright (c) 2016 The WebRTC project authors. All Rights Reserved.
3 * 3 *
4 * Use of this source code is governed by a BSD-style license 4 * Use of this source code is governed by a BSD-style license
5 * that can be found in the LICENSE file in the root of the source 5 * that can be found in the LICENSE file in the root of the source
6 * tree. An additional intellectual property rights grant can be found 6 * tree. An additional intellectual property rights grant can be found
7 * in the file PATENTS. All contributing project authors may 7 * in the file PATENTS. All contributing project authors may
8 * be found in the AUTHORS file in the root of the source tree. 8 * be found in the AUTHORS file in the root of the source tree.
9 */ 9 */
10 10
(...skipping 24 matching lines...) Expand all
35 int32_t RegisterEncodeCompleteCallback( 35 int32_t RegisterEncodeCompleteCallback(
36 EncodedImageCallback* callback) override; 36 EncodedImageCallback* callback) override;
37 37
38 int32_t Release() override; 38 int32_t Release() override;
39 int32_t Encode(const VideoFrame& frame, 39 int32_t Encode(const VideoFrame& frame,
40 const CodecSpecificInfo* codec_specific_info, 40 const CodecSpecificInfo* codec_specific_info,
41 const std::vector<FrameType>* frame_types) override; 41 const std::vector<FrameType>* frame_types) override;
42 int32_t SetChannelParameters(uint32_t packet_loss, int64_t rtt) override; 42 int32_t SetChannelParameters(uint32_t packet_loss, int64_t rtt) override;
43 int32_t SetRateAllocation(const BitrateAllocation& bitrate_allocation, 43 int32_t SetRateAllocation(const BitrateAllocation& bitrate_allocation,
44 uint32_t framerate) override; 44 uint32_t framerate) override;
45 void OnDroppedFrame() override;
46 bool SupportsNativeHandle() const override; 45 bool SupportsNativeHandle() const override;
46 ScalingSettings GetScalingSettings() const override;
47 47
48 private: 48 private:
49 bool InitFallbackEncoder(); 49 bool InitFallbackEncoder();
50 50
51 // Settings used in the last InitEncode call and used if a dynamic fallback to 51 // Settings used in the last InitEncode call and used if a dynamic fallback to
52 // software is required. 52 // software is required.
53 VideoCodec codec_settings_; 53 VideoCodec codec_settings_;
54 int32_t number_of_cores_; 54 int32_t number_of_cores_;
55 size_t max_payload_size_; 55 size_t max_payload_size_;
56 56
(...skipping 11 matching lines...) Expand all
68 webrtc::VideoEncoder* const encoder_; 68 webrtc::VideoEncoder* const encoder_;
69 69
70 std::unique_ptr<webrtc::VideoEncoder> fallback_encoder_; 70 std::unique_ptr<webrtc::VideoEncoder> fallback_encoder_;
71 std::string fallback_implementation_name_; 71 std::string fallback_implementation_name_;
72 EncodedImageCallback* callback_; 72 EncodedImageCallback* callback_;
73 }; 73 };
74 74
75 } // namespace webrtc 75 } // namespace webrtc
76 76
77 #endif // WEBRTC_MEDIA_ENGINE_VIDEOENCODERSOFTWAREFALLBACKWRAPPER_H_ 77 #endif // WEBRTC_MEDIA_ENGINE_VIDEOENCODERSOFTWAREFALLBACKWRAPPER_H_
OLDNEW
« no previous file with comments | « webrtc/api/peerconnection_unittest.cc ('k') | webrtc/media/engine/videoencodersoftwarefallbackwrapper.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698