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

Side by Side Diff: talk/media/base/constants.h

Issue 1187573004: iOS HW H264 support. (Closed) Base URL: https://chromium.googlesource.com/external/webrtc@master
Patch Set: Move unittest file. 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 /* 1 /*
2 * libjingle 2 * libjingle
3 * Copyright 2012 Google Inc. 3 * Copyright 2012 Google Inc.
4 * 4 *
5 * Redistribution and use in source and binary forms, with or without 5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions are met: 6 * modification, are permitted provided that the following conditions are met:
7 * 7 *
8 * 1. Redistributions of source code must retain the above copyright notice, 8 * 1. Redistributions of source code must retain the above copyright notice,
9 * this list of conditions and the following disclaimer. 9 * this list of conditions and the following disclaimer.
10 * 2. Redistributions in binary form must reproduce the above copyright notice, 10 * 2. Redistributions in binary form must reproduce the above copyright notice,
(...skipping 140 matching lines...) Expand 10 before | Expand all | Expand 10 after
151 // ts_126114v120700p.pdf 151 // ts_126114v120700p.pdf
152 extern const int kRtpVideoRotationHeaderExtensionDefaultId; 152 extern const int kRtpVideoRotationHeaderExtensionDefaultId;
153 extern const char kRtpVideoRotationHeaderExtension[]; 153 extern const char kRtpVideoRotationHeaderExtension[];
154 // We don't support 6 bit CVO. Added here for testing purpose. 154 // We don't support 6 bit CVO. Added here for testing purpose.
155 extern const char kRtpVideoRotation6BitsHeaderExtensionForTesting[]; 155 extern const char kRtpVideoRotation6BitsHeaderExtensionForTesting[];
156 156
157 extern const int kNumDefaultUnsignalledVideoRecvStreams; 157 extern const int kNumDefaultUnsignalledVideoRecvStreams;
158 158
159 extern const char kVp8CodecName[]; 159 extern const char kVp8CodecName[];
160 extern const char kVp9CodecName[]; 160 extern const char kVp9CodecName[];
161 extern const char kH264CodecName[];
161 162
162 extern const int kDefaultVp8PlType; 163 extern const int kDefaultVp8PlType;
163 extern const int kDefaultVp9PlType; 164 extern const int kDefaultVp9PlType;
165 extern const int kDefaultH264PlType;
164 extern const int kDefaultRedPlType; 166 extern const int kDefaultRedPlType;
165 extern const int kDefaultUlpfecType; 167 extern const int kDefaultUlpfecType;
166 extern const int kDefaultRtxVp8PlType; 168 extern const int kDefaultRtxVp8PlType;
167 169
168 extern const int kDefaultVideoMaxWidth; 170 extern const int kDefaultVideoMaxWidth;
169 extern const int kDefaultVideoMaxHeight; 171 extern const int kDefaultVideoMaxHeight;
170 extern const int kDefaultVideoMaxFramerate; 172 extern const int kDefaultVideoMaxFramerate;
171 } // namespace cricket 173 } // namespace cricket
172 174
173 #endif // TALK_MEDIA_BASE_CONSTANTS_H_ 175 #endif // TALK_MEDIA_BASE_CONSTANTS_H_
174 176
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698