From f98030b029edad449a75309546d7bf4803dfa750 Mon Sep 17 00:00:00 2001 From: "magjed@webrtc.org" Date: Fri, 6 Mar 2015 11:18:23 +0000 Subject: [PATCH] Add intermediate TextureVideoFrame typedef for Chromium BUG=1128 R=perkj@webrtc.org TBR=stefan Review URL: https://webrtc-codereview.appspot.com/42239004 Cr-Commit-Position: refs/heads/master@{#8630} git-svn-id: http://webrtc.googlecode.com/svn/trunk@8630 4adac7df-926f-26a2-2b94-8c16560cd09d --- .../interface/texture_video_frame.h | 23 +++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 webrtc/common_video/interface/texture_video_frame.h 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