| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright 2015 The WebRTC project authors. All Rights Reserved. | 2 * Copyright 2015 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 24 matching lines...) Expand all Loading... |
| 35 #include "webrtc/common_video/h264/h264_common.h" | 35 #include "webrtc/common_video/h264/h264_common.h" |
| 36 #include "webrtc/common_video/h264/profile_level_id.h" | 36 #include "webrtc/common_video/h264/profile_level_id.h" |
| 37 #include "webrtc/media/engine/internalencoderfactory.h" | 37 #include "webrtc/media/engine/internalencoderfactory.h" |
| 38 #include "webrtc/modules/video_coding/include/video_codec_interface.h" | 38 #include "webrtc/modules/video_coding/include/video_codec_interface.h" |
| 39 #include "webrtc/modules/video_coding/utility/quality_scaler.h" | 39 #include "webrtc/modules/video_coding/utility/quality_scaler.h" |
| 40 #include "webrtc/modules/video_coding/utility/vp8_header_parser.h" | 40 #include "webrtc/modules/video_coding/utility/vp8_header_parser.h" |
| 41 #include "webrtc/sdk/android/src/jni/androidmediacodeccommon.h" | 41 #include "webrtc/sdk/android/src/jni/androidmediacodeccommon.h" |
| 42 #include "webrtc/sdk/android/src/jni/classreferenceholder.h" | 42 #include "webrtc/sdk/android/src/jni/classreferenceholder.h" |
| 43 #include "webrtc/sdk/android/src/jni/native_handle_impl.h" | 43 #include "webrtc/sdk/android/src/jni/native_handle_impl.h" |
| 44 #include "webrtc/system_wrappers/include/field_trial.h" | 44 #include "webrtc/system_wrappers/include/field_trial.h" |
| 45 #include "webrtc/system_wrappers/include/logcat_trace_context.h" | |
| 46 | 45 |
| 47 using rtc::Bind; | 46 using rtc::Bind; |
| 48 using rtc::Thread; | 47 using rtc::Thread; |
| 49 using rtc::ThreadManager; | 48 using rtc::ThreadManager; |
| 50 | 49 |
| 51 using webrtc::CodecSpecificInfo; | 50 using webrtc::CodecSpecificInfo; |
| 52 using webrtc::EncodedImage; | 51 using webrtc::EncodedImage; |
| 53 using webrtc::VideoFrame; | 52 using webrtc::VideoFrame; |
| 54 using webrtc::RTPFragmentationHeader; | 53 using webrtc::RTPFragmentationHeader; |
| 55 using webrtc::VideoCodec; | 54 using webrtc::VideoCodec; |
| (...skipping 1289 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1345 } | 1344 } |
| 1346 } | 1345 } |
| 1347 | 1346 |
| 1348 void MediaCodecVideoEncoderFactory::DestroyVideoEncoder( | 1347 void MediaCodecVideoEncoderFactory::DestroyVideoEncoder( |
| 1349 webrtc::VideoEncoder* encoder) { | 1348 webrtc::VideoEncoder* encoder) { |
| 1350 ALOGD << "Destroy video encoder."; | 1349 ALOGD << "Destroy video encoder."; |
| 1351 delete encoder; | 1350 delete encoder; |
| 1352 } | 1351 } |
| 1353 | 1352 |
| 1354 } // namespace webrtc_jni | 1353 } // namespace webrtc_jni |
| OLD | NEW |