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 21 matching lines...) Expand all Loading... |
32 #include "webrtc/base/timeutils.h" | 32 #include "webrtc/base/timeutils.h" |
33 #include "webrtc/base/weak_ptr.h" | 33 #include "webrtc/base/weak_ptr.h" |
34 #include "webrtc/common_types.h" | 34 #include "webrtc/common_types.h" |
35 #include "webrtc/common_video/h264/h264_bitstream_parser.h" | 35 #include "webrtc/common_video/h264/h264_bitstream_parser.h" |
36 #include "webrtc/common_video/h264/h264_common.h" | 36 #include "webrtc/common_video/h264/h264_common.h" |
37 #include "webrtc/common_video/h264/profile_level_id.h" | 37 #include "webrtc/common_video/h264/profile_level_id.h" |
38 #include "webrtc/media/engine/internalencoderfactory.h" | 38 #include "webrtc/media/engine/internalencoderfactory.h" |
39 #include "webrtc/modules/video_coding/include/video_codec_interface.h" | 39 #include "webrtc/modules/video_coding/include/video_codec_interface.h" |
40 #include "webrtc/modules/video_coding/utility/quality_scaler.h" | 40 #include "webrtc/modules/video_coding/utility/quality_scaler.h" |
41 #include "webrtc/modules/video_coding/utility/vp8_header_parser.h" | 41 #include "webrtc/modules/video_coding/utility/vp8_header_parser.h" |
| 42 #include "webrtc/modules/video_coding/utility/vp9_uncomp_header_parser.h" |
42 #include "webrtc/sdk/android/src/jni/androidmediacodeccommon.h" | 43 #include "webrtc/sdk/android/src/jni/androidmediacodeccommon.h" |
43 #include "webrtc/sdk/android/src/jni/classreferenceholder.h" | 44 #include "webrtc/sdk/android/src/jni/classreferenceholder.h" |
44 #include "webrtc/sdk/android/src/jni/native_handle_impl.h" | 45 #include "webrtc/sdk/android/src/jni/native_handle_impl.h" |
45 #include "webrtc/system_wrappers/include/field_trial.h" | 46 #include "webrtc/system_wrappers/include/field_trial.h" |
46 | 47 |
47 using rtc::Bind; | 48 using rtc::Bind; |
48 using rtc::Thread; | 49 using rtc::Thread; |
49 using rtc::ThreadManager; | 50 using rtc::ThreadManager; |
50 | 51 |
51 using webrtc::CodecSpecificInfo; | 52 using webrtc::CodecSpecificInfo; |
(...skipping 1299 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1351 } | 1352 } |
1352 } | 1353 } |
1353 | 1354 |
1354 void MediaCodecVideoEncoderFactory::DestroyVideoEncoder( | 1355 void MediaCodecVideoEncoderFactory::DestroyVideoEncoder( |
1355 webrtc::VideoEncoder* encoder) { | 1356 webrtc::VideoEncoder* encoder) { |
1356 ALOGD << "Destroy video encoder."; | 1357 ALOGD << "Destroy video encoder."; |
1357 delete encoder; | 1358 delete encoder; |
1358 } | 1359 } |
1359 | 1360 |
1360 } // namespace webrtc_jni | 1361 } // namespace webrtc_jni |
OLD | NEW |