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

Side by Side Diff: webrtc/modules/video_coding/BUILD.gn

Issue 1772383002: Packet buffer for the new jitter buffer. (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Feedback fixes Created 4 years, 8 months 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 # Copyright (c) 2014 The WebRTC project authors. All Rights Reserved. 1 # Copyright (c) 2014 The WebRTC project authors. All Rights Reserved.
2 # 2 #
3 # Use of this source code is governed by a BSD-style license 3 # Use of this source code is governed by a BSD-style license
4 # that can be found in the LICENSE file in the root of the source 4 # that can be found in the LICENSE file in the root of the source
5 # tree. An additional intellectual property rights grant can be found 5 # tree. An additional intellectual property rights grant can be found
6 # in the file PATENTS. All contributing project authors may 6 # in the file PATENTS. All contributing project authors may
7 # be found in the AUTHORS file in the root of the source tree. 7 # be found in the AUTHORS file in the root of the source tree.
8 8
9 import("../../build/webrtc.gni") 9 import("../../build/webrtc.gni")
10 10
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after
43 "jitter_estimator.h", 43 "jitter_estimator.h",
44 "media_opt_util.cc", 44 "media_opt_util.cc",
45 "media_opt_util.h", 45 "media_opt_util.h",
46 "media_optimization.cc", 46 "media_optimization.cc",
47 "media_optimization.h", 47 "media_optimization.h",
48 "nack_fec_tables.h", 48 "nack_fec_tables.h",
49 "nack_module.cc", 49 "nack_module.cc",
50 "nack_module.h", 50 "nack_module.h",
51 "packet.cc", 51 "packet.cc",
52 "packet.h", 52 "packet.h",
53 "packet_buffer.cc",
54 "packet_buffer.h",
53 "qm_select.cc", 55 "qm_select.cc",
54 "qm_select.h", 56 "qm_select.h",
55 "qm_select_data.h", 57 "qm_select_data.h",
56 "receiver.cc", 58 "receiver.cc",
57 "receiver.h", 59 "receiver.h",
58 "rtt_filter.cc", 60 "rtt_filter.cc",
59 "rtt_filter.h", 61 "rtt_filter.h",
60 "session_info.cc", 62 "session_info.cc",
61 "session_info.h", 63 "session_info.h",
62 "timestamp_map.cc", 64 "timestamp_map.cc",
(...skipping 190 matching lines...) Expand 10 before | Expand all | Expand 10 after
253 255
254 deps = [ 256 deps = [
255 ":video_coding_utility", 257 ":video_coding_utility",
256 "../../common_video", 258 "../../common_video",
257 "../../system_wrappers", 259 "../../system_wrappers",
258 ] 260 ]
259 if (rtc_build_libvpx) { 261 if (rtc_build_libvpx) {
260 deps += [ rtc_libvpx_dir ] 262 deps += [ rtc_libvpx_dir ]
261 } 263 }
262 } 264 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698