diff --git a/webrtc/common_video/interface/texture_video_frame.h b/webrtc/common_video/interface/texture_video_frame.h new file mode 100644 index 0000000000..c41dcfbd89 --- /dev/null +++ b/webrtc/common_video/interface/texture_video_frame.h @@ -0,0 +1,23 @@ +/* + * Copyright (c) 2015 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 COMMON_VIDEO_INTERFACE_TEXTURE_VIDEO_FRAME_H +#define COMMON_VIDEO_INTERFACE_TEXTURE_VIDEO_FRAME_H + +#include "webrtc/common_video/interface/i420_video_frame.h" + +// TODO(magjed): Remove this when all external dependencies are updated. +namespace webrtc { + +typedef I420VideoFrame TextureVideoFrame; + +} // namespace webrtc + +#endif // COMMON_VIDEO_INTERFACE_TEXTURE_VIDEO_FRAME_H