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

Side by Side Diff: webrtc/modules/video_coding/main/source/codec_database.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 * Copyright (c) 2012 The WebRTC project authors. All Rights Reserved. 2 * Copyright (c) 2012 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
11 #include "webrtc/modules/video_coding/main/source/codec_database.h" 11 #include "webrtc/modules/video_coding/main/source/codec_database.h"
12 12
13 #include <assert.h> 13 #include <assert.h>
14 14
15 #include "webrtc/base/checks.h" 15 #include "webrtc/base/checks.h"
16 #include "webrtc/engine_configurations.h" 16 #include "webrtc/engine_configurations.h"
17 #ifdef VIDEOCODEC_H264 17 #ifdef VIDEOCODEC_H264
18 #include "webrtc/modules/video_coding/codecs/h264/include/h264.h" 18 #include "webrtc/modules/video_coding/codecs/h264/include/h264.h"
19 #endif 19 #endif
20 #ifdef VIDEOCODEC_I420 20 #ifdef VIDEOCODEC_I420
21 #include "webrtc/modules/video_coding/codecs/i420/include/i420.h" 21 #include "webrtc/modules/video_coding/codecs/i420/include/i420.h"
22 #endif 22 #endif
23 #ifdef VIDEOCODEC_VP8 23 #ifdef VIDEOCODEC_VP8
24 #include "webrtc/modules/video_coding/codecs/vp8/include/vp8.h" 24 #include "webrtc/modules/video_coding/codecs/vp8/include/vp8.h"
25 #endif 25 #endif
26 #ifdef VIDEOCODEC_VP9 26 #ifdef VIDEOCODEC_VP9
27 #include "webrtc/modules/video_coding/codecs/vp9/include/vp9.h" 27 #include "webrtc/modules/video_coding/codecs/vp9/include/vp9.h"
28 #endif 28 #endif
29 #include "webrtc/modules/video_coding/main/source/internal_defines.h" 29 #include "webrtc/modules/video_coding/main/source/internal_defines.h"
30 #include "webrtc/system_wrappers/interface/logging.h" 30 #include "webrtc/system_wrappers/include/logging.h"
31 31
32 namespace { 32 namespace {
33 const size_t kDefaultPayloadSize = 1440; 33 const size_t kDefaultPayloadSize = 1440;
34 const uint8_t kDefaultPayloadType = 100; 34 const uint8_t kDefaultPayloadType = 100;
35 } 35 }
36 36
37 namespace webrtc { 37 namespace webrtc {
38 38
39 VideoCodecVP8 VideoEncoder::GetDefaultVp8Settings() { 39 VideoCodecVP8 VideoEncoder::GetDefaultVp8Settings() {
40 VideoCodecVP8 vp8_settings; 40 VideoCodecVP8 vp8_settings;
(...skipping 644 matching lines...) Expand 10 before | Expand all | Expand 10 after
685 685
686 const VCMExtDecoderMapItem* VCMCodecDataBase::FindExternalDecoderItem( 686 const VCMExtDecoderMapItem* VCMCodecDataBase::FindExternalDecoderItem(
687 uint8_t payload_type) const { 687 uint8_t payload_type) const {
688 ExternalDecoderMap::const_iterator it = dec_external_map_.find(payload_type); 688 ExternalDecoderMap::const_iterator it = dec_external_map_.find(payload_type);
689 if (it != dec_external_map_.end()) { 689 if (it != dec_external_map_.end()) {
690 return (*it).second; 690 return (*it).second;
691 } 691 }
692 return NULL; 692 return NULL;
693 } 693 }
694 } // namespace webrtc 694 } // namespace webrtc
OLDNEW
« no previous file with comments | « webrtc/modules/video_coding/main/interface/video_coding.h ('k') | webrtc/modules/video_coding/main/source/frame_buffer.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698