Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(250)

Unified Diff: ppapi/c/pp_video_frame.h

Issue 14192054: Rename PPAPI Video Stream APIs. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Straighten out naming confusion, improve comments. Created 7 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « ppapi/api/private/ppb_video_source_private.idl ('k') | ppapi/c/ppb_video_reader.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ppapi/c/pp_video_frame.h
diff --git a/ppapi/c/pp_video_frame.h b/ppapi/c/pp_video_frame.h
deleted file mode 100644
index ad5f8935e358cbf81774e3fbaed535984fa53261..0000000000000000000000000000000000000000
--- a/ppapi/c/pp_video_frame.h
+++ /dev/null
@@ -1,53 +0,0 @@
-/* Copyright (c) 2013 The Chromium Authors. All rights reserved.
- * Use of this source code is governed by a BSD-style license that can be
- * found in the LICENSE file.
- */
-
-/* From pp_video_frame.idl modified Tue Apr 2 10:07:49 2013. */
-
-#ifndef PPAPI_C_PP_VIDEO_FRAME_H_
-#define PPAPI_C_PP_VIDEO_FRAME_H_
-
-#include "ppapi/c/pp_macros.h"
-#include "ppapi/c/pp_resource.h"
-#include "ppapi/c/pp_stdint.h"
-#include "ppapi/c/pp_time.h"
-
-/**
- * @file
- * This file defines the struct used to hold a video frame.
- */
-
-
-/**
- * @addtogroup Structs
- * @{
- */
-/**
- * The <code>PP_Video_Frame</code> struct represents a video frame.
- */
-struct PP_VideoFrame {
- /**
- * A timestamp placing the frame in a video stream.
- */
- PP_TimeTicks timestamp;
- /**
- * An image data resource to hold the video frame.
- */
- PP_Resource image_data;
- /**
- * Ensure that this struct is 16-bytes wide by padding the end. In some
- * compilers, PP_TimeTicks is 8-byte aligned, so those compilers align this
- * struct on 8-byte boundaries as well and pad it to 8 bytes even without this
- * padding attribute. This padding makes its size consistent across
- * compilers.
- */
- int32_t padding;
-};
-PP_COMPILE_ASSERT_STRUCT_SIZE_IN_BYTES(PP_VideoFrame, 16);
-/**
- * @}
- */
-
-#endif /* PPAPI_C_PP_VIDEO_FRAME_H_ */
-
« no previous file with comments | « ppapi/api/private/ppb_video_source_private.idl ('k') | ppapi/c/ppb_video_reader.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698