OLD | NEW |
---|---|
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 #include "content/renderer/media/rtc_video_encoder.h" | 5 #include "content/renderer/media/rtc_video_encoder.h" |
6 | 6 |
7 #include <string.h> | 7 #include <string.h> |
8 | 8 |
9 #include "base/bind.h" | 9 #include "base/bind.h" |
10 #include "base/location.h" | 10 #include "base/location.h" |
11 #include "base/logging.h" | 11 #include "base/logging.h" |
12 #include "base/macros.h" | 12 #include "base/macros.h" |
13 #include "base/memory/scoped_vector.h" | 13 #include "base/memory/scoped_vector.h" |
14 #include "base/metrics/histogram.h" | 14 #include "base/metrics/histogram.h" |
15 #include "base/numerics/safe_conversions.h" | 15 #include "base/numerics/safe_conversions.h" |
16 #include "base/rand_util.h" | 16 #include "base/rand_util.h" |
17 #include "base/single_thread_task_runner.h" | 17 #include "base/single_thread_task_runner.h" |
18 #include "base/synchronization/waitable_event.h" | 18 #include "base/synchronization/waitable_event.h" |
19 #include "base/thread_task_runner_handle.h" | 19 #include "base/thread_task_runner_handle.h" |
20 #include "media/base/bind_to_current_loop.h" | 20 #include "media/base/bind_to_current_loop.h" |
21 #include "media/base/bitstream_buffer.h" | 21 #include "media/base/bitstream_buffer.h" |
22 #include "media/base/video_frame.h" | 22 #include "media/base/video_frame.h" |
23 #include "media/base/video_util.h" | 23 #include "media/base/video_util.h" |
24 #include "media/filters/h264_parser.h" | 24 #include "media/filters/h264_parser.h" |
25 #include "media/renderers/gpu_video_accelerator_factories.h" | 25 #include "media/renderers/gpu_video_accelerator_factories.h" |
26 #include "media/video/video_encode_accelerator.h" | 26 #include "media/video/video_encode_accelerator.h" |
27 #include "third_party/libyuv/include/libyuv.h" | 27 #include "third_party/libyuv/include/libyuv.h" |
28 #include "third_party/webrtc/system_wrappers/include/tick_util.h" | 28 #include "third_party/webrtc/base/timeutils.h" |
29 | 29 |
30 namespace content { | 30 namespace content { |
31 | 31 |
32 namespace { | 32 namespace { |
33 | 33 |
34 // Translate from webrtc::VideoCodecType and webrtc::VideoCodec to | 34 // Translate from webrtc::VideoCodecType and webrtc::VideoCodec to |
35 // media::VideoCodecProfile. | 35 // media::VideoCodecProfile. |
36 media::VideoCodecProfile WebRTCVideoCodecToVideoCodecProfile( | 36 media::VideoCodecProfile WebRTCVideoCodecToVideoCodecProfile( |
37 webrtc::VideoCodecType type, | 37 webrtc::VideoCodecType type, |
38 const webrtc::VideoCodec* codec_settings) { | 38 const webrtc::VideoCodec* codec_settings) { |
(...skipping 376 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
415 base::SharedMemory* output_buffer = output_buffers_[bitstream_buffer_id]; | 415 base::SharedMemory* output_buffer = output_buffers_[bitstream_buffer_id]; |
416 if (payload_size > output_buffer->mapped_size()) { | 416 if (payload_size > output_buffer->mapped_size()) { |
417 LogAndNotifyError(FROM_HERE, "invalid payload_size", | 417 LogAndNotifyError(FROM_HERE, "invalid payload_size", |
418 media::VideoEncodeAccelerator::kPlatformFailureError); | 418 media::VideoEncodeAccelerator::kPlatformFailureError); |
419 return; | 419 return; |
420 } | 420 } |
421 output_buffers_free_count_--; | 421 output_buffers_free_count_--; |
422 | 422 |
423 // Use webrtc timestamps to ensure correct RTP sender behavior. | 423 // Use webrtc timestamps to ensure correct RTP sender behavior. |
424 // TODO(hshi): obtain timestamp from the capturer, see crbug.com/350106. | 424 // TODO(hshi): obtain timestamp from the capturer, see crbug.com/350106. |
425 const int64_t capture_time_us = webrtc::TickTime::MicrosecondTimestamp(); | 425 const int64_t capture_time_us = rtc::TimeMicros(); |
perkj_webrtc
2016/04/14 13:46:23
IS the todo above easy to fix? This should come fr
nisse-webrtc
2016/04/19 11:12:41
No idea really, but I don't think this cl should d
| |
426 | 426 |
427 // Derive the capture time (in ms) and RTP timestamp (in 90KHz ticks). | 427 // Derive the capture time (in ms) and RTP timestamp (in 90KHz ticks). |
428 const int64_t capture_time_ms = capture_time_us / 1000; | 428 const int64_t capture_time_ms = capture_time_us / 1000; |
429 const uint32_t rtp_timestamp = | 429 const uint32_t rtp_timestamp = |
430 static_cast<uint32_t>(capture_time_us * 90 / 1000); | 430 static_cast<uint32_t>(capture_time_us * 90 / 1000); |
431 | 431 |
432 std::unique_ptr<webrtc::EncodedImage> image(new webrtc::EncodedImage( | 432 std::unique_ptr<webrtc::EncodedImage> image(new webrtc::EncodedImage( |
433 reinterpret_cast<uint8_t*>(output_buffer->memory()), payload_size, | 433 reinterpret_cast<uint8_t*>(output_buffer->memory()), payload_size, |
434 output_buffer->mapped_size())); | 434 output_buffer->mapped_size())); |
435 image->_encodedWidth = input_visible_size_.width(); | 435 image->_encodedWidth = input_visible_size_.width(); |
(...skipping 371 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
807 UMA_HISTOGRAM_BOOLEAN("Media.RTCVideoEncoderInitEncodeSuccess", | 807 UMA_HISTOGRAM_BOOLEAN("Media.RTCVideoEncoderInitEncodeSuccess", |
808 init_retval == WEBRTC_VIDEO_CODEC_OK); | 808 init_retval == WEBRTC_VIDEO_CODEC_OK); |
809 if (init_retval == WEBRTC_VIDEO_CODEC_OK) { | 809 if (init_retval == WEBRTC_VIDEO_CODEC_OK) { |
810 UMA_HISTOGRAM_ENUMERATION("Media.RTCVideoEncoderProfile", | 810 UMA_HISTOGRAM_ENUMERATION("Media.RTCVideoEncoderProfile", |
811 profile, | 811 profile, |
812 media::VIDEO_CODEC_PROFILE_MAX + 1); | 812 media::VIDEO_CODEC_PROFILE_MAX + 1); |
813 } | 813 } |
814 } | 814 } |
815 | 815 |
816 } // namespace content | 816 } // namespace content |
OLD | NEW |