OLD | NEW |
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 |
(...skipping 16 matching lines...) Expand all Loading... |
27 kSIF, // 352*240 = 84 480 | 27 kSIF, // 352*240 = 84 480 |
28 kWQVGA, // 400*240 = 96 000 | 28 kWQVGA, // 400*240 = 96 000 |
29 kCIF, // 352*288 = 101 376 | 29 kCIF, // 352*288 = 101 376 |
30 kW288p, // 512*288 = 147 456 (WCIF) | 30 kW288p, // 512*288 = 147 456 (WCIF) |
31 k448p, // 576*448 = 281 088 | 31 k448p, // 576*448 = 281 088 |
32 kVGA, // 640*480 = 307 200 | 32 kVGA, // 640*480 = 307 200 |
33 k432p, // 720*432 = 311 040 | 33 k432p, // 720*432 = 311 040 |
34 kW432p, // 768*432 = 331 776 | 34 kW432p, // 768*432 = 331 776 |
35 k4SIF, // 704*480 = 337 920 | 35 k4SIF, // 704*480 = 337 920 |
36 kW448p, // 768*448 = 344 064 | 36 kW448p, // 768*448 = 344 064 |
37 kNTSC,» » // 720*480 = 345 600 | 37 kNTSC, // 720*480 = 345 600 |
38 kFW448p, // 800*448 = 358 400 | 38 kFW448p, // 800*448 = 358 400 |
39 kWVGA, // 800*480 = 384 000 | 39 kWVGA, // 800*480 = 384 000 |
40 k4CIF, // 704*576 = 405 504 | 40 k4CIF, // 704*576 = 405 504 |
41 kSVGA, // 800*600 = 480 000 | 41 kSVGA, // 800*600 = 480 000 |
42 kW544p, // 960*544 = 522 240 | 42 kW544p, // 960*544 = 522 240 |
43 kW576p, // 1024*576 = 589 824 (W4CIF) | 43 kW576p, // 1024*576 = 589 824 (W4CIF) |
44 kHD, // 960*720 = 691 200 | 44 kHD, // 960*720 = 691 200 |
45 kXGA, // 1024*768 = 786 432 | 45 kXGA, // 1024*768 = 786 432 |
46 kWHD, // 1280*720 = 921 600 | 46 kWHD, // 1280*720 = 921 600 |
47 kFullHD, // 1440*1080 = 1 555 200 | 47 kFullHD, // 1440*1080 = 1 555 200 |
(...skipping 25 matching lines...) Expand all Loading... |
73 | 73 |
74 private: | 74 private: |
75 std::string _fileName; | 75 std::string _fileName; |
76 uint16_t _width; | 76 uint16_t _width; |
77 uint16_t _height; | 77 uint16_t _height; |
78 webrtc::VideoType _type; | 78 webrtc::VideoType _type; |
79 float _frameRate; | 79 float _frameRate; |
80 }; | 80 }; |
81 | 81 |
82 #endif // WEBRTC_MODULES_VIDEO_CODING_TEST_VIDEO_SOURCE_H_ | 82 #endif // WEBRTC_MODULES_VIDEO_CODING_TEST_VIDEO_SOURCE_H_ |
OLD | NEW |