OLD | NEW |
1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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/pepper/pepper_media_stream_video_track_host.h" | 5 #include "content/renderer/pepper/pepper_media_stream_video_track_host.h" |
6 | 6 |
7 #include "base/base64.h" | 7 #include "base/base64.h" |
8 #include "base/logging.h" | 8 #include "base/logging.h" |
9 #include "base/rand_util.h" | 9 #include "base/rand_util.h" |
10 #include "base/strings/utf_string_conversions.h" | 10 #include "base/strings/utf_string_conversions.h" |
11 #include "content/renderer/media/media_stream_video_track.h" | 11 #include "content/renderer/media/media_stream_video_track.h" |
12 #include "media/base/bind_to_current_loop.h" | 12 #include "media/base/bind_to_current_loop.h" |
13 #include "media/base/yuv_convert.h" | 13 #include "media/base/yuv_convert.h" |
14 #include "ppapi/c/pp_errors.h" | 14 #include "ppapi/c/pp_errors.h" |
15 #include "ppapi/c/ppb_media_stream_video_track.h" | 15 #include "ppapi/c/ppb_media_stream_video_track.h" |
16 #include "ppapi/c/ppb_video_frame.h" | 16 #include "ppapi/c/ppb_video_frame.h" |
17 #include "ppapi/host/dispatch_host_message.h" | 17 #include "ppapi/host/dispatch_host_message.h" |
18 #include "ppapi/host/host_message_context.h" | 18 #include "ppapi/host/host_message_context.h" |
19 #include "ppapi/proxy/ppapi_messages.h" | 19 #include "ppapi/proxy/ppapi_messages.h" |
20 #include "ppapi/shared_impl/media_stream_buffer.h" | 20 #include "ppapi/shared_impl/media_stream_buffer.h" |
21 | |
22 // IS_ALIGNED is also defined in | |
23 // third_party/webrtc/overrides/webrtc/base/basictypes.h | |
24 // TODO(ronghuawu): Avoid undef. | |
25 #undef IS_ALIGNED | |
26 #include "third_party/libyuv/include/libyuv.h" | 21 #include "third_party/libyuv/include/libyuv.h" |
27 | 22 |
28 using media::VideoFrame; | 23 using media::VideoFrame; |
29 using ppapi::host::HostMessageContext; | 24 using ppapi::host::HostMessageContext; |
30 using ppapi::MediaStreamVideoTrackShared; | 25 using ppapi::MediaStreamVideoTrackShared; |
31 | 26 |
32 namespace { | 27 namespace { |
33 | 28 |
34 const int32_t kDefaultNumberOfBuffers = 4; | 29 const int32_t kDefaultNumberOfBuffers = 4; |
35 const int32_t kMaxNumberOfBuffers = 8; | 30 const int32_t kMaxNumberOfBuffers = 8; |
(...skipping 491 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
527 } | 522 } |
528 | 523 |
529 void PepperMediaStreamVideoTrackHost::OnTrackStarted( | 524 void PepperMediaStreamVideoTrackHost::OnTrackStarted( |
530 MediaStreamSource* source, | 525 MediaStreamSource* source, |
531 MediaStreamRequestResult result, | 526 MediaStreamRequestResult result, |
532 const blink::WebString& result_name) { | 527 const blink::WebString& result_name) { |
533 DVLOG(3) << "OnTrackStarted result: " << result; | 528 DVLOG(3) << "OnTrackStarted result: " << result; |
534 } | 529 } |
535 | 530 |
536 } // namespace content | 531 } // namespace content |
OLD | NEW |