Revert "[xvimagesink] Fixed ifdef statement in gst_xvimagesink_xwindow_clear()"
[framework/multimedia/gst-plugins-base0.10.git] / sys / xvimage / xv_types.h
1 /**************************************************************************
2
3 Copyright 2010 - 2013 Samsung Electronics co., Ltd. All Rights Reserved.
4
5 Contact: Boram Park <boram1288.park@samsung.com>
6
7 Permission is hereby granted, free of charge, to any person obtaining a
8 copy of this software and associated documentation files (the
9 "Software"), to deal in the Software without restriction, including
10 without limitation the rights to use, copy, modify, merge, publish,
11 distribute, sub license, and/or sell copies of the Software, and to
12 permit persons to whom the Software is furnished to do so, subject to
13 the following conditions:
14
15 The above copyright notice and this permission notice (including the
16 next paragraph) shall be included in all copies or substantial portions
17 of the Software.
18
19 THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
20 OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
21 MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT.
22 IN NO EVENT SHALL PRECISION INSIGHT AND/OR ITS SUPPLIERS BE LIABLE FOR
23 ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
24 TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
25 SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
26
27 **************************************************************************/
28
29
30 #ifndef __XV_TYPES_H__
31 #define __XV_TYPES_H__
32
33 #define XV_PUTIMAGE_HEADER      0xDEADCD01
34 #define XV_PUTIMAGE_VERSION     0x00010001
35
36 /* Return Values */
37 #define XV_OK 0
38 #define XV_HEADER_ERROR -1
39 #define XV_VERSION_MISMATCH -2
40
41 /* Video Mode */
42 #define DISPLAY_MODE_DEFAULT                                      0
43 #define DISPLAY_MODE_PRI_VIDEO_ON_AND_SEC_VIDEO_FULL_SCREEN       1
44 #define DISPLAY_MODE_PRI_VIDEO_OFF_AND_SEC_VIDEO_FULL_SCREEN      2
45
46 /* Buffer Type */
47 #define XV_BUF_TYPE_DMABUF  0
48 #define XV_BUF_TYPE_LEGACY  1
49
50 /* Data structure for XvPutImage / XvShmPutImage */
51 typedef struct {
52         unsigned int _header; /* for internal use only */
53         unsigned int _version; /* for internal use only */
54
55         unsigned int YBuf;
56         unsigned int CbBuf;
57         unsigned int CrBuf;
58         unsigned int BufType;
59 } XV_PUTIMAGE_DATA, * XV_PUTIMAGE_DATA_PTR;
60
61 static void XV_PUTIMAGE_INIT_DATA(XV_PUTIMAGE_DATA_PTR data)
62 {
63         data->_header = XV_PUTIMAGE_HEADER;
64         data->_version = XV_PUTIMAGE_VERSION;
65 }
66
67 #endif /* __XV_TYPES_H__ */