| 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 "base/command_line.h" | 7 #include "base/command_line.h" |
| 8 #include "content/public/common/content_switches.h" | 8 #include "content/public/common/content_switches.h" |
| 9 #include "content/public/common/feature_h264_with_openh264_ffmpeg.h" | 9 #include "content/public/common/feature_h264_with_openh264_ffmpeg.h" |
| 10 #include "content/renderer/media/rtc_video_encoder.h" | 10 #include "content/renderer/media/rtc_video_encoder.h" |
| (...skipping 15 matching lines...) Expand all Loading... |
| 26 const int fps = profile.max_framerate_numerator; | 26 const int fps = profile.max_framerate_numerator; |
| 27 DCHECK_EQ(profile.max_framerate_denominator, 1U); | 27 DCHECK_EQ(profile.max_framerate_denominator, 1U); |
| 28 | 28 |
| 29 const base::CommandLine* cmd_line = base::CommandLine::ForCurrentProcess(); | 29 const base::CommandLine* cmd_line = base::CommandLine::ForCurrentProcess(); |
| 30 if (profile.profile >= media::VP8PROFILE_MIN && | 30 if (profile.profile >= media::VP8PROFILE_MIN && |
| 31 profile.profile <= media::VP8PROFILE_MAX) { | 31 profile.profile <= media::VP8PROFILE_MAX) { |
| 32 codecs->push_back(cricket::WebRtcVideoEncoderFactory::VideoCodec( | 32 codecs->push_back(cricket::WebRtcVideoEncoderFactory::VideoCodec( |
| 33 webrtc::kVideoCodecVP8, "VP8", width, height, fps)); | 33 webrtc::kVideoCodecVP8, "VP8", width, height, fps)); |
| 34 } else if (profile.profile >= media::H264PROFILE_MIN && | 34 } else if (profile.profile >= media::H264PROFILE_MIN && |
| 35 profile.profile <= media::H264PROFILE_MAX) { | 35 profile.profile <= media::H264PROFILE_MAX) { |
| 36 bool webrtc_h264_sw_enabled = false; | 36 bool webrtc_h264_enabled = false; |
| 37 #if BUILDFLAG(RTC_USE_H264) | 37 #if BUILDFLAG(RTC_USE_H264) && defined(OS_MACOSX) |
| 38 webrtc_h264_sw_enabled = | 38 webrtc_h264_enabled = |
| 39 base::FeatureList::IsEnabled(kWebRtcH264WithOpenH264FFmpeg); | 39 base::FeatureList::IsEnabled(kWebRtcH264WithOpenH264FFmpeg); |
| 40 #endif // BUILDFLAG(RTC_USE_H264) | 40 #endif // BUILDFLAG(RTC_USE_H264) && defined(OS_MACOSX) |
| 41 if (cmd_line->HasSwitch(switches::kEnableWebRtcHWH264Encoding) || | 41 if (cmd_line->HasSwitch(switches::kEnableWebRtcHWH264Encoding) || |
| 42 webrtc_h264_sw_enabled) { | 42 webrtc_h264_enabled) { |
| 43 codecs->push_back(cricket::WebRtcVideoEncoderFactory::VideoCodec( | 43 codecs->push_back(cricket::WebRtcVideoEncoderFactory::VideoCodec( |
| 44 webrtc::kVideoCodecH264, "H264", width, height, fps)); | 44 webrtc::kVideoCodecH264, "H264", width, height, fps)); |
| 45 } | 45 } |
| 46 } | 46 } |
| 47 } | 47 } |
| 48 | 48 |
| 49 } // anonymous namespace | 49 } // anonymous namespace |
| 50 | 50 |
| 51 RTCVideoEncoderFactory::RTCVideoEncoderFactory( | 51 RTCVideoEncoderFactory::RTCVideoEncoderFactory( |
| 52 media::GpuVideoAcceleratorFactories* gpu_factories) | 52 media::GpuVideoAcceleratorFactories* gpu_factories) |
| (...skipping 19 matching lines...) Expand all Loading... |
| 72 RTCVideoEncoderFactory::codecs() const { | 72 RTCVideoEncoderFactory::codecs() const { |
| 73 return codecs_; | 73 return codecs_; |
| 74 } | 74 } |
| 75 | 75 |
| 76 void RTCVideoEncoderFactory::DestroyVideoEncoder( | 76 void RTCVideoEncoderFactory::DestroyVideoEncoder( |
| 77 webrtc::VideoEncoder* encoder) { | 77 webrtc::VideoEncoder* encoder) { |
| 78 delete encoder; | 78 delete encoder; |
| 79 } | 79 } |
| 80 | 80 |
| 81 } // namespace content | 81 } // namespace content |
| OLD | NEW |