1/*
2INTEL CONFIDENTIAL
3Copyright 2009 Intel Corporation All Rights Reserved.
4The 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
6No 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_VIDEOCONFIGPARAMSDEC_VC1_H__
10#define __MIX_VIDEOCONFIGPARAMSDEC_VC1_H__
11
12#include "mixvideoconfigparamsdec.h"
13#include "mixvideodef.h"
14
15/**
16* MIX_TYPE_VIDEOCONFIGPARAMSDEC_VC1:
17*
18* Get type of class.
19*/
20#define MIX_TYPE_VIDEOCONFIGPARAMSDEC_VC1 (mix_videoconfigparamsdec_vc1_get_type ())
21
22/**
23* MIX_VIDEOCONFIGPARAMSDEC_VC1:
24* @obj: object to be type-casted.
25*/
26#define MIX_VIDEOCONFIGPARAMSDEC_VC1(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), MIX_TYPE_VIDEOCONFIGPARAMSDEC_VC1, MixVideoConfigParamsDecVC1))
27
28/**
29* MIX_IS_VIDEOCONFIGPARAMSDEC_VC1:
30* @obj: an object.
31*
32* Checks if the given object is an instance of #MixVideoConfigParamsDecVC1
33*/
34#define MIX_IS_VIDEOCONFIGPARAMSDEC_VC1(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), MIX_TYPE_VIDEOCONFIGPARAMSDEC_VC1))
35
36/**
37* MIX_VIDEOCONFIGPARAMSDEC_VC1_CLASS:
38* @klass: class to be type-casted.
39*/
40#define MIX_VIDEOCONFIGPARAMSDEC_VC1_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), MIX_TYPE_VIDEOCONFIGPARAMSDEC_VC1, MixVideoConfigParamsDecVC1Class))
41
42/**
43* MIX_IS_VIDEOCONFIGPARAMSDEC_VC1_CLASS:
44* @klass: a class.
45*
46* Checks if the given class is #MixVideoConfigParamsDecVC1Class
47*/
48#define MIX_IS_VIDEOCONFIGPARAMSDEC_VC1_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), MIX_TYPE_VIDEOCONFIGPARAMSDEC_VC1))
49
50/**
51* MIX_VIDEOCONFIGPARAMSDEC_VC1_GET_CLASS:
52* @obj: a #MixParams object.
53*
54* Get the class instance of the object.
55*/
56#define MIX_VIDEOCONFIGPARAMSDEC_VC1_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), MIX_TYPE_VIDEOCONFIGPARAMSDEC_VC1, MixVideoConfigParamsDecVC1Class))
57
58typedef struct _MixVideoConfigParamsDecVC1 MixVideoConfigParamsDecVC1;
59typedef struct _MixVideoConfigParamsDecVC1Class MixVideoConfigParamsDecVC1Class;
60
61/**
62* MixVideoConfigParamsDecVC1:
63*
64* MI-X VideoConfig Parameter object
65*/
66struct _MixVideoConfigParamsDecVC1
67{
68  /*< public > */
69  MixVideoConfigParamsDec parent;
70
71  /*< public > */
72
73  /* TODO: Add VC1 configuration paramters */
74  /* TODO: wmv_version and fourcc type might be changed later */
75  guint wmv_version;
76  guint fourcc;
77
78  void *reserved1;
79  void *reserved2;
80  void *reserved3;
81  void *reserved4;
82};
83
84/**
85* MixVideoConfigParamsDecVC1Class:
86*
87* MI-X VideoConfig object class
88*/
89struct _MixVideoConfigParamsDecVC1Class
90{
91  /*< public > */
92  MixVideoConfigParamsDecClass parent_class;
93
94  /* class members */
95};
96
97/**
98* mix_videoconfigparamsdec_vc1_get_type:
99* @returns: type
100*
101* Get the type of object.
102*/
103GType mix_videoconfigparamsdec_vc1_get_type (void);
104
105/**
106* mix_videoconfigparamsdec_vc1_new:
107* @returns: A newly allocated instance of #MixVideoConfigParamsDecVC1
108*
109* Use this method to create new instance of #MixVideoConfigParamsDecVC1
110*/
111MixVideoConfigParamsDecVC1 *mix_videoconfigparamsdec_vc1_new (void);
112/**
113* mix_videoconfigparamsdec_vc1_ref:
114* @mix: object to add reference
115* @returns: the MixVideoConfigParamsDecVC1 instance where reference count has been increased.
116*
117* Add reference count.
118*/
119MixVideoConfigParamsDecVC1
120  * mix_videoconfigparamsdec_vc1_ref (MixVideoConfigParamsDecVC1 * mix);
121
122/**
123* mix_videoconfigparamsdec_vc1_unref:
124* @obj: object to unref.
125*
126* Decrement reference count of the object.
127*/
128#define mix_videoconfigparamsdec_vc1_unref(obj) mix_params_unref(MIX_PARAMS(obj))
129
130/* Class Methods */
131
132/* TODO: Add getters and setters for other properties */
133
134#endif /* __MIX_VIDEOCONFIGPARAMSDECDEC_VC1_H__ */
135