Chromium Code Reviews| Index: webrtc/modules/video_coding/codecs/h264/h264_encoder_impl.h |
| diff --git a/webrtc/modules/video_coding/codecs/h264/h264_encoder_impl.h b/webrtc/modules/video_coding/codecs/h264/h264_encoder_impl.h |
| index 3713896a8baca83a15a4b95ee71b279d1d559508..b0f785c8a391d98ddf826176b7c5a5b1c09876fd 100644 |
| --- a/webrtc/modules/video_coding/codecs/h264/h264_encoder_impl.h |
| +++ b/webrtc/modules/video_coding/codecs/h264/h264_encoder_impl.h |
| @@ -70,7 +70,17 @@ class H264EncoderImpl : public H264Encoder { |
| void ReportError(); |
| ISVCEncoder* openh264_encoder_; |
| - VideoCodec codec_settings_; |
| + // Settings that are used by this encoder. |
| + int width_; |
| + int height_; |
| + unsigned char maxFramerate_; |
| + unsigned int targetBitrate_; // kilobits/sec. |
| + unsigned int maxBitrate_; |
| + VideoCodecMode mode_; |
| + // H.264 specifc parameters |
| + bool frameDroppingOn_; |
| + int keyFrameInterval_; |
|
stefan-webrtc
2016/11/02 11:14:21
I would prefer to get rid of the camelCase while y
hta-webrtc
2016/11/02 12:35:43
Done.
While I was at it I changed the types to ma
|
| + |
| int32_t number_of_cores_; |
| EncodedImage encoded_image_; |