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 16 matching lines...) Expand all Loading... |
27 #include "webrtc/base/thread.h" | 27 #include "webrtc/base/thread.h" |
28 #include "webrtc/base/timeutils.h" | 28 #include "webrtc/base/timeutils.h" |
29 #include "webrtc/common_video/h264/h264_bitstream_parser.h" | 29 #include "webrtc/common_video/h264/h264_bitstream_parser.h" |
30 #include "webrtc/common_video/include/i420_buffer_pool.h" | 30 #include "webrtc/common_video/include/i420_buffer_pool.h" |
31 #include "webrtc/modules/video_coding/include/video_codec_interface.h" | 31 #include "webrtc/modules/video_coding/include/video_codec_interface.h" |
32 #include "webrtc/modules/video_coding/utility/vp8_header_parser.h" | 32 #include "webrtc/modules/video_coding/utility/vp8_header_parser.h" |
33 #include "webrtc/sdk/android/src/jni/androidmediacodeccommon.h" | 33 #include "webrtc/sdk/android/src/jni/androidmediacodeccommon.h" |
34 #include "webrtc/sdk/android/src/jni/classreferenceholder.h" | 34 #include "webrtc/sdk/android/src/jni/classreferenceholder.h" |
35 #include "webrtc/sdk/android/src/jni/native_handle_impl.h" | 35 #include "webrtc/sdk/android/src/jni/native_handle_impl.h" |
36 #include "webrtc/sdk/android/src/jni/surfacetexturehelper_jni.h" | 36 #include "webrtc/sdk/android/src/jni/surfacetexturehelper_jni.h" |
37 #include "webrtc/system_wrappers/include/logcat_trace_context.h" | |
38 | 37 |
39 using rtc::Bind; | 38 using rtc::Bind; |
40 using rtc::Thread; | 39 using rtc::Thread; |
41 using rtc::ThreadManager; | 40 using rtc::ThreadManager; |
42 | 41 |
43 using webrtc::CodecSpecificInfo; | 42 using webrtc::CodecSpecificInfo; |
44 using webrtc::DecodedImageCallback; | 43 using webrtc::DecodedImageCallback; |
45 using webrtc::EncodedImage; | 44 using webrtc::EncodedImage; |
46 using webrtc::VideoFrame; | 45 using webrtc::VideoFrame; |
47 using webrtc::RTPFragmentationHeader; | 46 using webrtc::RTPFragmentationHeader; |
(...skipping 978 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1026 webrtc::VideoDecoder* decoder) { | 1025 webrtc::VideoDecoder* decoder) { |
1027 ALOGD << "Destroy video decoder."; | 1026 ALOGD << "Destroy video decoder."; |
1028 delete decoder; | 1027 delete decoder; |
1029 } | 1028 } |
1030 | 1029 |
1031 const char* MediaCodecVideoDecoder::ImplementationName() const { | 1030 const char* MediaCodecVideoDecoder::ImplementationName() const { |
1032 return "MediaCodec"; | 1031 return "MediaCodec"; |
1033 } | 1032 } |
1034 | 1033 |
1035 } // namespace webrtc_jni | 1034 } // namespace webrtc_jni |
OLD | NEW |