| 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_factory.h" | 5 #include "content/renderer/media/rtc_video_encoder_factory.h" |
| 6 | 6 |
| 7 #include "content/common/gpu/client/gpu_video_encode_accelerator_host.h" | 7 #include "content/common/gpu/client/gpu_video_encode_accelerator_host.h" |
| 8 #include "content/renderer/media/renderer_gpu_video_accelerator_factories.h" | 8 #include "content/renderer/media/renderer_gpu_video_accelerator_factories.h" |
| 9 #include "content/renderer/media/rtc_video_encoder.h" | 9 #include "content/renderer/media/rtc_video_encoder.h" |
| 10 #include "media/video/video_encode_accelerator.h" | 10 #include "media/video/video_encode_accelerator.h" |
| (...skipping 90 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 101 RTCVideoEncoderFactory::codecs() const { | 101 RTCVideoEncoderFactory::codecs() const { |
| 102 return codecs_; | 102 return codecs_; |
| 103 } | 103 } |
| 104 | 104 |
| 105 void RTCVideoEncoderFactory::DestroyVideoEncoder( | 105 void RTCVideoEncoderFactory::DestroyVideoEncoder( |
| 106 webrtc::VideoEncoder* encoder) { | 106 webrtc::VideoEncoder* encoder) { |
| 107 delete encoder; | 107 delete encoder; |
| 108 } | 108 } |
| 109 | 109 |
| 110 } // namespace content | 110 } // namespace content |
| OLD | NEW |