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

Side by Side Diff: webrtc/modules/rtp_rtcp/rtp_rtcp.gypi

Issue 1232023006: Add support for VP9 packetization/depacketization. (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Created 5 years, 5 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) 2011 The WebRTC project authors. All Rights Reserved. 1 # Copyright (c) 2011 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 { 9 {
10 'targets': [ 10 'targets': [
(...skipping 76 matching lines...) Expand 10 before | Expand all | Expand 10 after
87 'source/rtp_receiver_video.h', 87 'source/rtp_receiver_video.h',
88 'source/rtp_sender_video.cc', 88 'source/rtp_sender_video.cc',
89 'source/rtp_sender_video.h', 89 'source/rtp_sender_video.h',
90 'source/video_codec_information.h', 90 'source/video_codec_information.h',
91 'source/rtp_format.cc', 91 'source/rtp_format.cc',
92 'source/rtp_format.h', 92 'source/rtp_format.h',
93 'source/rtp_format_h264.cc', 93 'source/rtp_format_h264.cc',
94 'source/rtp_format_h264.h', 94 'source/rtp_format_h264.h',
95 'source/rtp_format_vp8.cc', 95 'source/rtp_format_vp8.cc',
96 'source/rtp_format_vp8.h', 96 'source/rtp_format_vp8.h',
97 'source/rtp_format_vp9.cc',
98 'source/rtp_format_vp9.h',
97 'source/rtp_format_video_generic.cc', 99 'source/rtp_format_video_generic.cc',
98 'source/rtp_format_video_generic.h', 100 'source/rtp_format_video_generic.h',
99 'source/vp8_partition_aggregator.cc', 101 'source/vp8_partition_aggregator.cc',
100 'source/vp8_partition_aggregator.h', 102 'source/vp8_partition_aggregator.h',
101 # Mocks 103 # Mocks
102 'mocks/mock_rtp_rtcp.h', 104 'mocks/mock_rtp_rtcp.h',
103 'source/mock/mock_rtp_payload_strategy.h', 105 'source/mock/mock_rtp_payload_strategy.h',
104 ], # source 106 ], # source
105 # TODO(jschuh): Bug 1348: fix size_t to int truncations. 107 # TODO(jschuh): Bug 1348: fix size_t to int truncations.
106 'msvs_disabled_warnings': [ 4267, ], 108 'msvs_disabled_warnings': [ 4267, ],
107 }, 109 },
108 ], 110 ],
109 } 111 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698