Certificazione energetica fabbrica: come trovare elettricisti
Come Trovare Elettricisti per la Certificazione Energetica di una Fabbrica
Come Ottenere la Certificazione Energetica di una Fabbrica Utilizzando un Elettricista.
Scopri come trovare elettricisti esperti per garantire la certificazione energetica della tua fabbrica. Questo articolo offre preziosi consigli e strategie per selezionare professionisti qualificati, ottimizzando i costi e rispettando le normative vigenti. Non perdere l'opportunità di migliorare l'efficienza energetica!
Trova professionisti vicino a te
Trova professionisti
/*
* Copyright (c) 2016, NVIDIA CORPORATION. All rights reserved.
*
* Permission is hereby granted, free of charge, to any person obtaining a
* copy of this software and associated documentation files (the "Software"),
* to deal in the Software without restriction, including without limitation
* the rights to use, copy, modify, merge, publish, distribute, sublicense,
* and/or sell copies of the Software, and to permit persons to whom the
* Software is furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in
* all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
* THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
* DEALINGS IN THE SOFTWARE.
*/
#ifndef __GST_OMX_H264_DEC_H__
#define __GST_OMX_H264_DEC_H__
#include
#include "gstomxvideodec.h"
G_BEGIN_DECLS
#define GST_TYPE_OMX_H264_DEC \
(gst_omx_h264_dec_get_type())
#define GST_OMX_H264_DEC(obj) \
(G_TYPE_CHECK_INSTANCE_CAST((obj),GST_TYPE_OMX_H264_DEC,GstOMXH264Dec))
#define GST_OMX_H264_DEC_CLASS(klass) \
(G_TYPE_CHECK_CLASS_CAST((klass),GST_TYPE_OMX_H264_DEC,GstOMXH264DecClass))
#define GST_OMX_H264_DEC_GET_CLASS(obj) \
(G_TYPE_INSTANCE_GET_CLASS((obj),GST_TYPE_OMX_H264_DEC,GstOMXH264DecClass))
#define GST_IS_OMX_H264_DEC(obj) \
(G_TYPE_CHECK_INSTANCE_TYPE((obj),GST_TYPE_OMX_H264_DEC))
#define GST_IS_OMX_H264_DEC_CLASS(obj) \
(G_TYPE_CHECK_CLASS_TYPE((klass),GST_TYPE_OMX_H264_DEC))
typedef struct _GstOMXH264Dec GstOMXH264Dec;
typedef struct _GstOMXH264DecClass GstOMXH264DecClass;
struct _GstOMXH264Dec
{
GstOMXVideoDec parent;
};
struct _GstOMXH264DecClass
{
GstOMXVideoDecClass parent_class;
};
GType gst_omx_h264_dec_get_type (void);
G_END_DECLS
#endif /* __GST_OMX_H264_DEC_H__ */