| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (c) 2015 The WebRTC project authors. All Rights Reserved. | 2 * Copyright (c) 2015 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 26 matching lines...) Expand all Loading... |
| 37 // - maxFramerate | 37 // - maxFramerate |
| 38 // - width | 38 // - width |
| 39 // - height | 39 // - height |
| 40 int32_t InitEncode(const VideoCodec* codec_settings, | 40 int32_t InitEncode(const VideoCodec* codec_settings, |
| 41 int32_t number_of_cores, | 41 int32_t number_of_cores, |
| 42 size_t /*max_payload_size*/) override; | 42 size_t /*max_payload_size*/) override; |
| 43 int32_t Release() override; | 43 int32_t Release() override; |
| 44 | 44 |
| 45 int32_t RegisterEncodeCompleteCallback( | 45 int32_t RegisterEncodeCompleteCallback( |
| 46 EncodedImageCallback* callback) override; | 46 EncodedImageCallback* callback) override; |
| 47 int32_t SetRateAllocation(const BitrateAllocation& bitrate_allocation, | 47 int32_t SetRates(uint32_t bitrate, uint32_t framerate) override; |
| 48 uint32_t framerate) override; | |
| 49 | 48 |
| 50 // The result of encoding - an EncodedImage and RTPFragmentationHeader - are | 49 // The result of encoding - an EncodedImage and RTPFragmentationHeader - are |
| 51 // passed to the encode complete callback. | 50 // passed to the encode complete callback. |
| 52 int32_t Encode(const VideoFrame& frame, | 51 int32_t Encode(const VideoFrame& frame, |
| 53 const CodecSpecificInfo* codec_specific_info, | 52 const CodecSpecificInfo* codec_specific_info, |
| 54 const std::vector<FrameType>* frame_types) override; | 53 const std::vector<FrameType>* frame_types) override; |
| 55 | 54 |
| 56 const char* ImplementationName() const override; | 55 const char* ImplementationName() const override; |
| 57 | 56 |
| 58 // Unsupported / Do nothing. | 57 // Unsupported / Do nothing. |
| 59 int32_t SetChannelParameters(uint32_t packet_loss, int64_t rtt) override; | 58 int32_t SetChannelParameters(uint32_t packet_loss, int64_t rtt) override; |
| 60 int32_t SetPeriodicKeyFrames(bool enable) override; | 59 int32_t SetPeriodicKeyFrames(bool enable) override; |
| 61 void OnDroppedFrame() override; | 60 void OnDroppedFrame() override; |
| 62 | 61 |
| 63 private: | 62 private: |
| 64 bool IsInitialized() const; | 63 bool IsInitialized() const; |
| 65 SEncParamExt CreateEncoderParams() const; | 64 SEncParamExt CreateEncoderParams() const; |
| 66 | 65 |
| 67 webrtc::H264BitstreamParser h264_bitstream_parser_; | 66 webrtc::H264BitstreamParser h264_bitstream_parser_; |
| 68 QualityScaler quality_scaler_; | 67 QualityScaler quality_scaler_; |
| 69 // Reports statistics with histograms. | 68 // Reports statistics with histograms. |
| 70 void ReportInit(); | 69 void ReportInit(); |
| 71 void ReportError(); | 70 void ReportError(); |
| 72 | 71 |
| 73 ISVCEncoder* openh264_encoder_; | 72 ISVCEncoder* openh264_encoder_; |
| 74 // Settings that are used by this encoder. | 73 // Settings that are used by this encoder. |
| 75 int width_; | 74 int width_; |
| 76 int height_; | 75 int height_; |
| 77 float max_frame_rate_; | 76 float max_frame_rate_; |
| 78 uint32_t target_bps_; | 77 unsigned int target_bps_; |
| 79 uint32_t max_bps_; | 78 unsigned int max_bps_; |
| 80 VideoCodecMode mode_; | 79 VideoCodecMode mode_; |
| 81 // H.264 specifc parameters | 80 // H.264 specifc parameters |
| 82 bool frame_dropping_on_; | 81 bool frame_dropping_on_; |
| 83 int key_frame_interval_; | 82 int key_frame_interval_; |
| 84 | 83 |
| 85 int32_t number_of_cores_; | 84 int32_t number_of_cores_; |
| 86 | 85 |
| 87 EncodedImage encoded_image_; | 86 EncodedImage encoded_image_; |
| 88 std::unique_ptr<uint8_t[]> encoded_image_buffer_; | 87 std::unique_ptr<uint8_t[]> encoded_image_buffer_; |
| 89 EncodedImageCallback* encoded_image_callback_; | 88 EncodedImageCallback* encoded_image_callback_; |
| 90 | 89 |
| 91 bool has_reported_init_; | 90 bool has_reported_init_; |
| 92 bool has_reported_error_; | 91 bool has_reported_error_; |
| 93 }; | 92 }; |
| 94 | 93 |
| 95 } // namespace webrtc | 94 } // namespace webrtc |
| 96 | 95 |
| 97 #endif // WEBRTC_MODULES_VIDEO_CODING_CODECS_H264_H264_ENCODER_IMPL_H_ | 96 #endif // WEBRTC_MODULES_VIDEO_CODING_CODECS_H264_H264_ENCODER_IMPL_H_ |
| OLD | NEW |