| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (c) 2012 The WebRTC project authors. All Rights Reserved. | 2 * Copyright (c) 2012 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 44 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 55 vp9_settings.automaticResizeOn = true; | 55 vp9_settings.automaticResizeOn = true; |
| 56 vp9_settings.numberOfSpatialLayers = 1; | 56 vp9_settings.numberOfSpatialLayers = 1; |
| 57 vp9_settings.flexibleMode = false; | 57 vp9_settings.flexibleMode = false; |
| 58 return vp9_settings; | 58 return vp9_settings; |
| 59 } | 59 } |
| 60 | 60 |
| 61 VideoCodecH264 VideoEncoder::GetDefaultH264Settings() { | 61 VideoCodecH264 VideoEncoder::GetDefaultH264Settings() { |
| 62 VideoCodecH264 h264_settings; | 62 VideoCodecH264 h264_settings; |
| 63 memset(&h264_settings, 0, sizeof(h264_settings)); | 63 memset(&h264_settings, 0, sizeof(h264_settings)); |
| 64 | 64 |
| 65 h264_settings.profile = kProfileBase; | |
| 66 h264_settings.frameDroppingOn = true; | 65 h264_settings.frameDroppingOn = true; |
| 67 h264_settings.keyFrameInterval = 3000; | 66 h264_settings.keyFrameInterval = 3000; |
| 68 h264_settings.spsData = nullptr; | 67 h264_settings.spsData = nullptr; |
| 69 h264_settings.spsLen = 0; | 68 h264_settings.spsLen = 0; |
| 70 h264_settings.ppsData = nullptr; | 69 h264_settings.ppsData = nullptr; |
| 71 h264_settings.ppsLen = 0; | 70 h264_settings.ppsLen = 0; |
| 72 | 71 |
| 73 return h264_settings; | 72 return h264_settings; |
| 74 } | 73 } |
| 75 | 74 |
| (...skipping 523 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 599 | 598 |
| 600 const VCMExtDecoderMapItem* VCMCodecDataBase::FindExternalDecoderItem( | 599 const VCMExtDecoderMapItem* VCMCodecDataBase::FindExternalDecoderItem( |
| 601 uint8_t payload_type) const { | 600 uint8_t payload_type) const { |
| 602 ExternalDecoderMap::const_iterator it = dec_external_map_.find(payload_type); | 601 ExternalDecoderMap::const_iterator it = dec_external_map_.find(payload_type); |
| 603 if (it != dec_external_map_.end()) { | 602 if (it != dec_external_map_.end()) { |
| 604 return (*it).second; | 603 return (*it).second; |
| 605 } | 604 } |
| 606 return nullptr; | 605 return nullptr; |
| 607 } | 606 } |
| 608 } // namespace webrtc | 607 } // namespace webrtc |
| OLD | NEW |