blob: fb5f5fc9c902c7fa283f1bcfb92baefc4dfb8eb3 [file] [log] [blame]
pbos@webrtc.org074eb202013-05-23 12:20:16 +00001/*
2 * Copyright (c) 2013 The WebRTC project authors. All Rights Reserved.
3 *
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
6 * tree. An additional intellectual property rights grant can be found
7 * in the file PATENTS. All contributing project authors may
8 * be found in the AUTHORS file in the root of the source tree.
9 */
10
11#ifndef WEBRTC_VIDEO_ENGINE_TEST_COMMON_FLAGS_H_
12#define WEBRTC_VIDEO_ENGINE_TEST_COMMON_FLAGS_H_
13
14#include <stddef.h>
15
16namespace webrtc {
17namespace test {
18namespace flags {
19
20void Init(int* argc, char ***argv);
21
22size_t Width();
23size_t Height();
pbos@webrtc.orge3e46152013-05-29 15:13:12 +000024int Fps();
pbos@webrtc.org074eb202013-05-23 12:20:16 +000025size_t MinBitrate();
26size_t StartBitrate();
27size_t MaxBitrate();
28} // flags
29} // test
30} // webrtc
31
32#endif // WEBRTC_VIDEO_ENGINE_TEST_COMMON_FLAGS_H_