2018-05-31 10:44:51 +02:00
|
|
|
/*
|
|
|
|
|
* Copyright (c) 2018 The WebRTC project authors. All Rights Reserved.
|
|
|
|
|
*
|
|
|
|
|
* Use of this source code is governed by a BSD-style license
|
|
|
|
|
* that can be found in the LICENSE file in the root of the source
|
|
|
|
|
* tree. An additional intellectual property rights grant can be found
|
|
|
|
|
* in the file PATENTS. All contributing project authors may
|
|
|
|
|
* be found in the AUTHORS file in the root of the source tree.
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#ifndef API_VIDEO_CODECS_VIDEO_CODEC_H_
|
|
|
|
|
#define API_VIDEO_CODECS_VIDEO_CODEC_H_
|
|
|
|
|
|
2018-06-08 11:04:04 +00:00
|
|
|
// TODO(bugs.webrtc.org/7660): This is an initial place holder file. Downstream
|
|
|
|
|
// users of VideoCodec must be updated to include this file, before contents can
|
|
|
|
|
// be moved out of common_types.h.
|
2018-05-31 10:44:51 +02:00
|
|
|
|
|
|
|
|
#include "common_types.h" // NOLINT(build/include)
|
|
|
|
|
|
2018-06-08 11:04:04 +00:00
|
|
|
// The VideoCodec class represents an old defacto-api, which we're migrating
|
2018-05-31 10:44:51 +02:00
|
|
|
// away from slowly.
|
|
|
|
|
|
|
|
|
|
#endif // API_VIDEO_CODECS_VIDEO_CODEC_H_
|