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

Side by Side Diff: content/renderer/media/rtc_video_encoder.h

Issue 647613007: RtcVideoEncoder: determine video codec profile at InitEncode time. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Determine profile at InitEncode. 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
OLDNEW
1 // Copyright 2013 The Chromium Authors. All rights reserved. 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 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 CONTENT_RENDERER_MEDIA_RTC_VIDEO_ENCODER_H_ 5 #ifndef CONTENT_RENDERER_MEDIA_RTC_VIDEO_ENCODER_H_
6 #define CONTENT_RENDERER_MEDIA_RTC_VIDEO_ENCODER_H_ 6 #define CONTENT_RENDERER_MEDIA_RTC_VIDEO_ENCODER_H_
7 7
8 #include <vector> 8 #include <vector>
9 9
10 #include "base/memory/ref_counted.h" 10 #include "base/memory/ref_counted.h"
(...skipping 29 matching lines...) Expand all
40 // and destroyed on the thread it is constructed on, which is presently the 40 // and destroyed on the thread it is constructed on, which is presently the
41 // libjingle worker thread. Encode is run on ViECaptureThread. SetRates and 41 // libjingle worker thread. Encode is run on ViECaptureThread. SetRates and
42 // SetChannelParameters are run on ProcessThread or the libjingle worker thread. 42 // SetChannelParameters are run on ProcessThread or the libjingle worker thread.
43 // Callbacks from the Impl due to its VEA::Client notifications are posted back 43 // Callbacks from the Impl due to its VEA::Client notifications are posted back
44 // to RTCVideoEncoder on the libjingle worker thread. 44 // to RTCVideoEncoder on the libjingle worker thread.
45 class CONTENT_EXPORT RTCVideoEncoder 45 class CONTENT_EXPORT RTCVideoEncoder
46 : NON_EXPORTED_BASE(public webrtc::VideoEncoder) { 46 : NON_EXPORTED_BASE(public webrtc::VideoEncoder) {
47 public: 47 public:
48 RTCVideoEncoder( 48 RTCVideoEncoder(
49 webrtc::VideoCodecType type, 49 webrtc::VideoCodecType type,
50 media::VideoCodecProfile profile,
51 const scoped_refptr<media::GpuVideoAcceleratorFactories>& gpu_factories); 50 const scoped_refptr<media::GpuVideoAcceleratorFactories>& gpu_factories);
52 virtual ~RTCVideoEncoder(); 51 virtual ~RTCVideoEncoder();
53 52
54 // webrtc::VideoEncoder implementation. Tasks are posted to |impl_| using the 53 // webrtc::VideoEncoder implementation. Tasks are posted to |impl_| using the
55 // appropriate VEA methods. 54 // appropriate VEA methods.
56 virtual int32_t InitEncode(const webrtc::VideoCodec* codec_settings, 55 virtual int32_t InitEncode(const webrtc::VideoCodec* codec_settings,
57 int32_t number_of_cores, 56 int32_t number_of_cores,
58 uint32_t max_payload_size) override; 57 uint32_t max_payload_size) override;
59 virtual int32_t Encode( 58 virtual int32_t Encode(
60 const webrtc::I420VideoFrame& input_image, 59 const webrtc::I420VideoFrame& input_image,
(...skipping 17 matching lines...) Expand all
78 void NotifyError(int32_t error); 77 void NotifyError(int32_t error);
79 78
80 void RecordInitEncodeUMA(int32_t init_retval); 79 void RecordInitEncodeUMA(int32_t init_retval);
81 80
82 base::ThreadChecker thread_checker_; 81 base::ThreadChecker thread_checker_;
83 82
84 // The video codec type, as reported to WebRTC. 83 // The video codec type, as reported to WebRTC.
85 const webrtc::VideoCodecType video_codec_type_; 84 const webrtc::VideoCodecType video_codec_type_;
86 85
87 // The video codec profile, to configure the encoder to encode to. 86 // The video codec profile, to configure the encoder to encode to.
88 const media::VideoCodecProfile video_codec_profile_; 87 media::VideoCodecProfile video_codec_profile_;
89 88
90 // Factory for creating VEAs, shared memory buffers, etc. 89 // Factory for creating VEAs, shared memory buffers, etc.
91 scoped_refptr<media::GpuVideoAcceleratorFactories> gpu_factories_; 90 scoped_refptr<media::GpuVideoAcceleratorFactories> gpu_factories_;
92 91
93 // webrtc::VideoEncoder encode complete callback. 92 // webrtc::VideoEncoder encode complete callback.
94 webrtc::EncodedImageCallback* encoded_image_callback_; 93 webrtc::EncodedImageCallback* encoded_image_callback_;
95 94
96 // The RTCVideoEncoder::Impl that does all the work. 95 // The RTCVideoEncoder::Impl that does all the work.
97 scoped_refptr<Impl> impl_; 96 scoped_refptr<Impl> impl_;
98 97
99 // We cannot immediately return error conditions to the WebRTC user of this 98 // We cannot immediately return error conditions to the WebRTC user of this
100 // class, as there is no error callback in the webrtc::VideoEncoder interface. 99 // class, as there is no error callback in the webrtc::VideoEncoder interface.
101 // Instead, we cache an error status here and return it the next time an 100 // Instead, we cache an error status here and return it the next time an
102 // interface entry point is called. 101 // interface entry point is called.
103 int32_t impl_status_; 102 int32_t impl_status_;
104 103
105 // Weak pointer factory for posting back VEA::Client notifications to 104 // Weak pointer factory for posting back VEA::Client notifications to
106 // RTCVideoEncoder. 105 // RTCVideoEncoder.
107 // NOTE: Weak pointers must be invalidated before all other member variables. 106 // NOTE: Weak pointers must be invalidated before all other member variables.
108 base::WeakPtrFactory<RTCVideoEncoder> weak_factory_; 107 base::WeakPtrFactory<RTCVideoEncoder> weak_factory_;
109 108
110 DISALLOW_COPY_AND_ASSIGN(RTCVideoEncoder); 109 DISALLOW_COPY_AND_ASSIGN(RTCVideoEncoder);
111 }; 110 };
112 111
113 } // namespace content 112 } // namespace content
114 113
115 #endif // CONTENT_RENDERER_MEDIA_RTC_VIDEO_ENCODER_H_ 114 #endif // CONTENT_RENDERER_MEDIA_RTC_VIDEO_ENCODER_H_
OLDNEW
« no previous file with comments | « no previous file | content/renderer/media/rtc_video_encoder.cc » ('j') | content/renderer/media/rtc_video_encoder.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698