1e2a7a77646b23fb3704d267e6079e04bde493543pbos@webrtc.org/*
2e2a7a77646b23fb3704d267e6079e04bde493543pbos@webrtc.org *  Copyright (c) 2014 The WebRTC project authors. All Rights Reserved.
3e2a7a77646b23fb3704d267e6079e04bde493543pbos@webrtc.org *
4e2a7a77646b23fb3704d267e6079e04bde493543pbos@webrtc.org *  Use of this source code is governed by a BSD-style license
5e2a7a77646b23fb3704d267e6079e04bde493543pbos@webrtc.org *  that can be found in the LICENSE file in the root of the source
6e2a7a77646b23fb3704d267e6079e04bde493543pbos@webrtc.org *  tree. An additional intellectual property rights grant can be found
7e2a7a77646b23fb3704d267e6079e04bde493543pbos@webrtc.org *  in the file PATENTS.  All contributing project authors may
8e2a7a77646b23fb3704d267e6079e04bde493543pbos@webrtc.org *  be found in the AUTHORS file in the root of the source tree.
9e2a7a77646b23fb3704d267e6079e04bde493543pbos@webrtc.org */
10e2a7a77646b23fb3704d267e6079e04bde493543pbos@webrtc.org#ifndef WEBRTC_TEST_ENCODER_SETTINGS_H_
11e2a7a77646b23fb3704d267e6079e04bde493543pbos@webrtc.org#define WEBRTC_TEST_ENCODER_SETTINGS_H_
12e2a7a77646b23fb3704d267e6079e04bde493543pbos@webrtc.org
13e2a7a77646b23fb3704d267e6079e04bde493543pbos@webrtc.org#include "webrtc/video_send_stream.h"
14e2a7a77646b23fb3704d267e6079e04bde493543pbos@webrtc.org
15e2a7a77646b23fb3704d267e6079e04bde493543pbos@webrtc.orgnamespace webrtc {
16e2a7a77646b23fb3704d267e6079e04bde493543pbos@webrtc.orgnamespace test {
17bdfcddf7091e92134143e9a2d9ccce908e43979epbos@webrtc.orgstd::vector<VideoStream> CreateVideoStreams(size_t num_streams);
18e2a7a77646b23fb3704d267e6079e04bde493543pbos@webrtc.org
19e2a7a77646b23fb3704d267e6079e04bde493543pbos@webrtc.orgVideoCodec CreateDecoderVideoCodec(
20bdfcddf7091e92134143e9a2d9ccce908e43979epbos@webrtc.org    const VideoSendStream::Config::EncoderSettings& encoder_settings);
21e2a7a77646b23fb3704d267e6079e04bde493543pbos@webrtc.org}  // namespace test
22e2a7a77646b23fb3704d267e6079e04bde493543pbos@webrtc.org}  // namespace webrtc
23e2a7a77646b23fb3704d267e6079e04bde493543pbos@webrtc.org
24e2a7a77646b23fb3704d267e6079e04bde493543pbos@webrtc.org#endif  // WEBRTC_TEST_ENCODER_SETTINGS_H_
25