24 lines
887 B
C
24 lines
887 B
C
|
|
/*
|
||
|
|
* 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_
|
||
|
|
|
||
|
|
// 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.
|
||
|
|
|
||
|
|
#include "common_types.h" // NOLINT(build/include)
|
||
|
|
|
||
|
|
// The VideoCodec class represents an old defacto-api, which we're migrating
|
||
|
|
// away from slowly.
|
||
|
|
|
||
|
|
#endif // API_VIDEO_CODECS_VIDEO_CODEC_H_
|