xref: /OK3568_Linux_fs/external/gstreamer-rockchip/gst/rockchipmpp/gstmpph264enc.h (revision 4882a59341e53eb6f0b4789bf948001014eff981)
1 /*
2  * Copyright 2017 Rockchip Electronics Co., Ltd
3  *     Author: Randy Li <randy.li@rock-chips.com>
4  *
5  * Copyright 2021 Rockchip Electronics Co., Ltd
6  *     Author: Jeffy Chen <jeffy.chen@rock-chips.com>
7  *
8  * This library is free software; you can redistribute it and/or
9  * modify it under the terms of the GNU Library General Public
10  * License as published by the Free Software Foundation; either
11  * version 2 of the License, or (at your option) any later version.
12  *
13  * This library is distributed in the hope that it will be useful,
14  * but WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
16  * Library General Public License for more details.
17  *
18  * You should have received a copy of the GNU Library General Public
19  * License along with this library; if not, write to the
20  * Free Software Foundation, Inc., 51 Franklin St, Fifth Floor,
21  * Boston, MA 02110-1301, USA.
22  *
23  */
24 
25 #ifndef  __GST_MPP_H264_ENC_H__
26 #define  __GST_MPP_H264_ENC_H__
27 
28 #include "gstmppenc.h"
29 
30 G_BEGIN_DECLS;
31 
32 #define GST_TYPE_MPP_H264_ENC (gst_mpp_h264_enc_get_type())
33 G_DECLARE_FINAL_TYPE (GstMppH264Enc, gst_mpp_h264_enc, GST,
34     MPP_H264_ENC, GstMppEnc);
35 
36 gboolean gst_mpp_h264_enc_register (GstPlugin * plugin, guint rank);
37 
38 G_END_DECLS;
39 
40 #endif /* __GST_MPP_H264_ENC_H__ */
41