Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(451)

Side by Side Diff: talk/app/webrtc/java/jni/androidmediaencoder_jni.cc

Issue 1413333002: system_wrappers: rename interface -> include (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Rebased again! Created 5 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 /* 1 /*
2 * libjingle 2 * libjingle
3 * Copyright 2015 Google Inc. 3 * Copyright 2015 Google Inc.
4 * 4 *
5 * Redistribution and use in source and binary forms, with or without 5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions are met: 6 * modification, are permitted provided that the following conditions are met:
7 * 7 *
8 * 1. Redistributions of source code must retain the above copyright notice, 8 * 1. Redistributions of source code must retain the above copyright notice,
9 * this list of conditions and the following disclaimer. 9 * this list of conditions and the following disclaimer.
10 * 2. Redistributions in binary form must reproduce the above copyright notice, 10 * 2. Redistributions in binary form must reproduce the above copyright notice,
(...skipping 19 matching lines...) Expand all
30 #include "talk/app/webrtc/java/jni/classreferenceholder.h" 30 #include "talk/app/webrtc/java/jni/classreferenceholder.h"
31 #include "talk/app/webrtc/java/jni/androidmediacodeccommon.h" 31 #include "talk/app/webrtc/java/jni/androidmediacodeccommon.h"
32 #include "webrtc/base/bind.h" 32 #include "webrtc/base/bind.h"
33 #include "webrtc/base/checks.h" 33 #include "webrtc/base/checks.h"
34 #include "webrtc/base/logging.h" 34 #include "webrtc/base/logging.h"
35 #include "webrtc/base/thread.h" 35 #include "webrtc/base/thread.h"
36 #include "webrtc/modules/rtp_rtcp/source/h264_bitstream_parser.h" 36 #include "webrtc/modules/rtp_rtcp/source/h264_bitstream_parser.h"
37 #include "webrtc/modules/video_coding/codecs/interface/video_codec_interface.h" 37 #include "webrtc/modules/video_coding/codecs/interface/video_codec_interface.h"
38 #include "webrtc/modules/video_coding/utility/include/quality_scaler.h" 38 #include "webrtc/modules/video_coding/utility/include/quality_scaler.h"
39 #include "webrtc/modules/video_coding/utility/include/vp8_header_parser.h" 39 #include "webrtc/modules/video_coding/utility/include/vp8_header_parser.h"
40 #include "webrtc/system_wrappers/interface/field_trial.h" 40 #include "webrtc/system_wrappers/include/field_trial.h"
41 #include "webrtc/system_wrappers/interface/logcat_trace_context.h" 41 #include "webrtc/system_wrappers/include/logcat_trace_context.h"
42 #include "third_party/libyuv/include/libyuv/convert.h" 42 #include "third_party/libyuv/include/libyuv/convert.h"
43 #include "third_party/libyuv/include/libyuv/convert_from.h" 43 #include "third_party/libyuv/include/libyuv/convert_from.h"
44 #include "third_party/libyuv/include/libyuv/video_common.h" 44 #include "third_party/libyuv/include/libyuv/video_common.h"
45 45
46 using rtc::Bind; 46 using rtc::Bind;
47 using rtc::Thread; 47 using rtc::Thread;
48 using rtc::ThreadManager; 48 using rtc::ThreadManager;
49 using rtc::scoped_ptr; 49 using rtc::scoped_ptr;
50 50
51 using webrtc::CodecSpecificInfo; 51 using webrtc::CodecSpecificInfo;
(...skipping 904 matching lines...) Expand 10 before | Expand all | Expand 10 after
956 } 956 }
957 957
958 void MediaCodecVideoEncoderFactory::DestroyVideoEncoder( 958 void MediaCodecVideoEncoderFactory::DestroyVideoEncoder(
959 webrtc::VideoEncoder* encoder) { 959 webrtc::VideoEncoder* encoder) {
960 ALOGD << "Destroy video encoder."; 960 ALOGD << "Destroy video encoder.";
961 delete encoder; 961 delete encoder;
962 } 962 }
963 963
964 } // namespace webrtc_jni 964 } // namespace webrtc_jni
965 965
OLDNEW
« no previous file with comments | « talk/app/webrtc/java/jni/androidmediadecoder_jni.cc ('k') | talk/app/webrtc/java/jni/peerconnection_jni.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698