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

Side by Side Diff: webrtc/modules/video_coding/main/source/media_opt_util.h

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 #ifndef WEBRTC_MODULES_VIDEO_CODING_MEDIA_OPT_UTIL_H_ 11 #ifndef WEBRTC_MODULES_VIDEO_CODING_MEDIA_OPT_UTIL_H_
12 #define WEBRTC_MODULES_VIDEO_CODING_MEDIA_OPT_UTIL_H_ 12 #define WEBRTC_MODULES_VIDEO_CODING_MEDIA_OPT_UTIL_H_
13 13
14 #include <math.h> 14 #include <math.h>
15 #include <stdlib.h> 15 #include <stdlib.h>
16 16
17 #include "webrtc/base/exp_filter.h" 17 #include "webrtc/base/exp_filter.h"
18 #include "webrtc/base/scoped_ptr.h" 18 #include "webrtc/base/scoped_ptr.h"
19 #include "webrtc/modules/video_coding/main/source/internal_defines.h" 19 #include "webrtc/modules/video_coding/main/source/internal_defines.h"
20 #include "webrtc/modules/video_coding/main/source/qm_select.h" 20 #include "webrtc/modules/video_coding/main/source/qm_select.h"
21 #include "webrtc/system_wrappers/interface/trace.h" 21 #include "webrtc/system_wrappers/include/trace.h"
22 #include "webrtc/typedefs.h" 22 #include "webrtc/typedefs.h"
23 23
24 namespace webrtc { 24 namespace webrtc {
25 namespace media_optimization { 25 namespace media_optimization {
26 26
27 // Number of time periods used for (max) window filter for packet loss 27 // Number of time periods used for (max) window filter for packet loss
28 // TODO (marpan): set reasonable window size for filtered packet loss, 28 // TODO (marpan): set reasonable window size for filtered packet loss,
29 // adjustment should be based on logged/real data of loss stats/correlation. 29 // adjustment should be based on logged/real data of loss stats/correlation.
30 enum { kLossPrHistorySize = 10 }; 30 enum { kLossPrHistorySize = 10 };
31 31
(...skipping 323 matching lines...) Expand 10 before | Expand all | Expand 10 after
355 rtc::ExpFilter _packetsPerFrameKey; 355 rtc::ExpFilter _packetsPerFrameKey;
356 uint16_t _codecWidth; 356 uint16_t _codecWidth;
357 uint16_t _codecHeight; 357 uint16_t _codecHeight;
358 int _numLayers; 358 int _numLayers;
359 }; 359 };
360 360
361 } // namespace media_optimization 361 } // namespace media_optimization
362 } // namespace webrtc 362 } // namespace webrtc
363 363
364 #endif // WEBRTC_MODULES_VIDEO_CODING_MEDIA_OPT_UTIL_H_ 364 #endif // WEBRTC_MODULES_VIDEO_CODING_MEDIA_OPT_UTIL_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698