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

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

Issue 2342443005: Moved Opus-specific payload splitting into AudioDecoderOpus. (Closed)
Patch Set: Some small fixes. Created 4 years, 2 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 import("audio_coding.gni") 10 import("audio_coding.gni")
(...skipping 768 matching lines...) Expand 10 before | Expand all | Expand 10 after
779 "neteq/nack_tracker.h", 779 "neteq/nack_tracker.h",
780 "neteq/neteq.cc", 780 "neteq/neteq.cc",
781 "neteq/neteq_impl.cc", 781 "neteq/neteq_impl.cc",
782 "neteq/neteq_impl.h", 782 "neteq/neteq_impl.h",
783 "neteq/normal.cc", 783 "neteq/normal.cc",
784 "neteq/normal.h", 784 "neteq/normal.h",
785 "neteq/packet.cc", 785 "neteq/packet.cc",
786 "neteq/packet.h", 786 "neteq/packet.h",
787 "neteq/packet_buffer.cc", 787 "neteq/packet_buffer.cc",
788 "neteq/packet_buffer.h", 788 "neteq/packet_buffer.h",
789 "neteq/payload_splitter.cc",
790 "neteq/payload_splitter.h",
791 "neteq/post_decode_vad.cc", 789 "neteq/post_decode_vad.cc",
792 "neteq/post_decode_vad.h", 790 "neteq/post_decode_vad.h",
793 "neteq/preemptive_expand.cc", 791 "neteq/preemptive_expand.cc",
794 "neteq/preemptive_expand.h", 792 "neteq/preemptive_expand.h",
795 "neteq/random_vector.cc", 793 "neteq/random_vector.cc",
796 "neteq/random_vector.h", 794 "neteq/random_vector.h",
795 "neteq/red_payload_splitter.cc",
796 "neteq/red_payload_splitter.h",
797 "neteq/rtcp.cc", 797 "neteq/rtcp.cc",
798 "neteq/rtcp.h", 798 "neteq/rtcp.h",
799 "neteq/statistics_calculator.cc", 799 "neteq/statistics_calculator.cc",
800 "neteq/statistics_calculator.h", 800 "neteq/statistics_calculator.h",
801 "neteq/sync_buffer.cc", 801 "neteq/sync_buffer.cc",
802 "neteq/sync_buffer.h", 802 "neteq/sync_buffer.h",
803 "neteq/tick_timer.cc", 803 "neteq/tick_timer.cc",
804 "neteq/tick_timer.h", 804 "neteq/tick_timer.h",
805 "neteq/time_stretch.cc", 805 "neteq/time_stretch.cc",
806 "neteq/time_stretch.h", 806 "neteq/time_stretch.h",
(...skipping 766 matching lines...) Expand 10 before | Expand all | Expand 10 after
1573 "//testing/gtest", 1573 "//testing/gtest",
1574 ] 1574 ]
1575 1575
1576 if (is_clang) { 1576 if (is_clang) {
1577 # Suppress warnings from Chrome's Clang plugins. 1577 # Suppress warnings from Chrome's Clang plugins.
1578 # See http://code.google.com/p/webrtc/issues/detail?id=163 for details. 1578 # See http://code.google.com/p/webrtc/issues/detail?id=163 for details.
1579 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] 1579 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ]
1580 } 1580 }
1581 } 1581 }
1582 } 1582 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698