1 /* 2 INTEL CONFIDENTIAL 3 Copyright 2009 Intel Corporation All Rights Reserved. 4 The source code contained or described herein and all documents related to the source code ("Material") are owned by Intel Corporation or its suppliers or licensors. Title to the Material remains with Intel Corporation or its suppliers and licensors. The Material contains trade secrets and proprietary and confidential information of Intel or its suppliers and licensors. The Material is protected by worldwide copyright and trade secret laws and treaty provisions. No part of the Material may be used, copied, reproduced, modified, published, uploaded, posted, transmitted, distributed, or disclosed in any way without Intel’s prior express written permission. 5 6 No license under any patent, copyright, trade secret or other intellectual property right is granted to or conferred upon you by disclosure or delivery of the Materials, either expressly, by implication, inducement, estoppel or otherwise. Any license under such intellectual property rights must be express and approved by Intel in writing. 7 */ 8 9 #ifndef __MIX_VIDEOCAPS_H__ 10 #define __MIX_VIDEOCAPS_H__ 11 12 #include <mixparams.h> 13 #include "mixvideodef.h" 14 15 /** 16 * MIX_TYPE_VIDEOCAPS: 17 * 18 * Get type of class. 19 */ 20 #define MIX_TYPE_VIDEOCAPS (mix_videocaps_get_type ()) 21 22 /** 23 * MIX_VIDEOCAPS: 24 * @obj: object to be type-casted. 25 */ 26 #define MIX_VIDEOCAPS(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), MIX_TYPE_VIDEOCAPS, MixVideoCaps)) 27 28 /** 29 * MIX_IS_VIDEOCAPS: 30 * @obj: an object. 31 * 32 * Checks if the given object is an instance of #MixParams 33 */ 34 #define MIX_IS_VIDEOCAPS(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), MIX_TYPE_VIDEOCAPS)) 35 36 /** 37 * MIX_VIDEOCAPS_CLASS: 38 * @klass: class to be type-casted. 39 */ 40 #define MIX_VIDEOCAPS_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), MIX_TYPE_VIDEOCAPS, MixVideoCapsClass)) 41 42 /** 43 * MIX_IS_VIDEOCAPS_CLASS: 44 * @klass: a class. 45 * 46 * Checks if the given class is #MixParamsClass 47 */ 48 #define MIX_IS_VIDEOCAPS_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), MIX_TYPE_VIDEOCAPS)) 49 50 /** 51 * MIX_VIDEOCAPS_GET_CLASS: 52 * @obj: a #MixParams object. 53 * 54 * Get the class instance of the object. 55 */ 56 #define MIX_VIDEOCAPS_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), MIX_TYPE_VIDEOCAPS, MixVideoCapsClass)) 57 58 typedef struct _MixVideoCaps MixVideoCaps; 59 typedef struct _MixVideoCapsClass MixVideoCapsClass; 60 61 /** 62 * MixVideoCaps: 63 * 64 * MI-X VideoConfig Parameter object 65 */ 66 struct _MixVideoCaps 67 { 68 /*< public > */ 69 MixParams parent; 70 71 /*< public > */ 72 gchar *mix_caps; 73 gchar *video_hw_caps; 74 75 void *reserved1; 76 void *reserved2; 77 void *reserved3; 78 void *reserved4; 79 }; 80 81 /** 82 * MixVideoCapsClass: 83 * 84 * MI-X VideoConfig object class 85 */ 86 struct _MixVideoCapsClass 87 { 88 /*< public > */ 89 MixParamsClass parent_class; 90 91 /* class members */ 92 }; 93 94 /** 95 * mix_videocaps_get_type: 96 * @returns: type 97 * 98 * Get the type of object. 99 */ 100 GType mix_videocaps_get_type (void); 101 102 /** 103 * mix_videocaps_new: 104 * @returns: A newly allocated instance of #MixVideoCaps 105 * 106 * Use this method to create new instance of #MixVideoCaps 107 */ 108 MixVideoCaps *mix_videocaps_new (void); 109 /** 110 * mix_videocaps_ref: 111 * @mix: object to add reference 112 * @returns: the MixVideoCaps instance where reference count has been increased. 113 * 114 * Add reference count. 115 */ 116 MixVideoCaps *mix_videocaps_ref (MixVideoCaps * mix); 117 118 /** 119 * mix_videocaps_unref: 120 * @obj: object to unref. 121 * 122 * Decrement reference count of the object. 123 */ 124 #define mix_videocaps_unref(obj) mix_params_unref(MIX_PARAMS(obj)) 125 126 /* Class Methods */ 127 128 MIX_RESULT mix_videocaps_set_mix_caps (MixVideoCaps * obj, gchar * mix_caps); 129 MIX_RESULT mix_videocaps_get_mix_caps (MixVideoCaps * obj, 130 gchar ** mix_caps); 131 132 MIX_RESULT mix_videocaps_set_video_hw_caps (MixVideoCaps * obj, 133 gchar * video_hw_caps); 134 MIX_RESULT mix_videocaps_get_video_hw_caps (MixVideoCaps * obj, 135 gchar ** video_hw_caps); 136 137 #endif /* __MIX_VIDEOCAPS_H__ */ 138