1 /* GStreamer Intel MSDK plugin 2 * Copyright (c) 2018, Intel Corporation 3 * All rights reserved. 4 * 5 * Author: Sreerenj Balachandran <sreerenj.balachandran@intel.com> 6 * 7 * Redistribution and use in source and binary forms, with or without 8 * modification, are permitted provided that the following conditions are met: 9 * 10 * 1. Redistributions of source code must retain the above copyright notice, 11 * this list of conditions and the following disclaimer. 12 * 13 * 2. Redistributions in binary form must reproduce the above copyright notice, 14 * this list of conditions and the following disclaimer in the documentation 15 * and/or other materials provided with the distribution. 16 * 17 * 3. Neither the name of the copyright holder nor the names of its contributors 18 * may be used to endorse or promote products derived from this software 19 * without specific prior written permission. 20 * 21 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" 22 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, 23 * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR 24 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR 25 * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, 26 * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, 27 * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; 28 * OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, 29 * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGDECE 30 * OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, 31 * EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 32 */ 33 34 #ifndef __GST_MSDKVC1DEC_H__ 35 #define __GST_MSDKVC1DEC_H__ 36 37 #include "gstmsdkdec.h" 38 39 G_BEGIN_DECLS 40 41 #define GST_TYPE_MSDKVC1DEC \ 42 (gst_msdkvc1dec_get_type()) 43 #define GST_MSDKVC1DEC(obj) \ 44 (G_TYPE_CHECK_INSTANCE_CAST((obj),GST_TYPE_MSDKVC1DEC,GstMsdkVC1Dec)) 45 #define GST_MSDKVC1DEC_CLASS(klass) \ 46 (G_TYPE_CHECK_CLASS_CAST((klass),GST_TYPE_MSDKVC1DEC,GstMsdkVC1DecClass)) 47 #define GST_IS_MSDKVC1DEC(obj) \ 48 (G_TYPE_CHECK_INSTANCE_TYPE((obj),GST_TYPE_MSDKVC1DEC)) 49 #define GST_IS_MSDKVC1DEC_CLASS(klass) \ 50 (G_TYPE_CHECK_CLASS_TYPE((klass),GST_TYPE_MSDKVC1DEC)) 51 52 typedef struct _GstMsdkVC1Dec GstMsdkVC1Dec; 53 typedef struct _GstMsdkVC1DecClass GstMsdkVC1DecClass; 54 55 struct _GstMsdkVC1Dec 56 { 57 GstMsdkDec base; 58 guint output_order; 59 }; 60 61 struct _GstMsdkVC1DecClass 62 { 63 GstMsdkDecClass parent_class; 64 }; 65 66 GType gst_msdkvc1dec_get_type (void); 67 68 G_END_DECLS 69 70 #endif /* __GST_MSDKVC1DEC_H__ */ 71