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 860 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
871 } | 871 } |
872 PopulateCodecSpecific(&codec_specific, *pkt, stream_idx, | 872 PopulateCodecSpecific(&codec_specific, *pkt, stream_idx, |
873 input_image.timestamp()); | 873 input_image.timestamp()); |
874 break; | 874 break; |
875 } | 875 } |
876 } | 876 } |
877 encoded_images_[encoder_idx]._timeStamp = input_image.timestamp(); | 877 encoded_images_[encoder_idx]._timeStamp = input_image.timestamp(); |
878 encoded_images_[encoder_idx].capture_time_ms_ = | 878 encoded_images_[encoder_idx].capture_time_ms_ = |
879 input_image.render_time_ms(); | 879 input_image.render_time_ms(); |
880 encoded_images_[encoder_idx].rotation_ = input_image.rotation(); | 880 encoded_images_[encoder_idx].rotation_ = input_image.rotation(); |
| 881 if (codec_.mode == kScreensharing) { |
| 882 encoded_images_[encoder_idx].content_type_ = |
| 883 VideoContentType::kScreenshare; |
| 884 } else { |
| 885 encoded_images_[encoder_idx].content_type_ = |
| 886 VideoContentType::kUnspecified; |
| 887 } |
881 | 888 |
882 int qp = -1; | 889 int qp = -1; |
883 vpx_codec_control(&encoders_[encoder_idx], VP8E_GET_LAST_QUANTIZER_64, &qp); | 890 vpx_codec_control(&encoders_[encoder_idx], VP8E_GET_LAST_QUANTIZER_64, &qp); |
884 temporal_layers_[stream_idx]->FrameEncoded( | 891 temporal_layers_[stream_idx]->FrameEncoded( |
885 encoded_images_[encoder_idx]._length, qp); | 892 encoded_images_[encoder_idx]._length, qp); |
886 if (send_stream_[stream_idx]) { | 893 if (send_stream_[stream_idx]) { |
887 if (encoded_images_[encoder_idx]._length > 0) { | 894 if (encoded_images_[encoder_idx]._length > 0) { |
888 TRACE_COUNTER_ID1("webrtc", "EncodedFrameSize", encoder_idx, | 895 TRACE_COUNTER_ID1("webrtc", "EncodedFrameSize", encoder_idx, |
889 encoded_images_[encoder_idx]._length); | 896 encoded_images_[encoder_idx]._length); |
890 encoded_images_[encoder_idx]._encodedHeight = | 897 encoded_images_[encoder_idx]._encodedHeight = |
(...skipping 258 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1149 buffer_pool_.Release(); | 1156 buffer_pool_.Release(); |
1150 inited_ = false; | 1157 inited_ = false; |
1151 return WEBRTC_VIDEO_CODEC_OK; | 1158 return WEBRTC_VIDEO_CODEC_OK; |
1152 } | 1159 } |
1153 | 1160 |
1154 const char* VP8DecoderImpl::ImplementationName() const { | 1161 const char* VP8DecoderImpl::ImplementationName() const { |
1155 return "libvpx"; | 1162 return "libvpx"; |
1156 } | 1163 } |
1157 | 1164 |
1158 } // namespace webrtc | 1165 } // namespace webrtc |
OLD | NEW |