2010-03-05 17:11:52 +00:00
|
|
|
/*
|
2012-11-20 13:32:40 +00:00
|
|
|
* gstvaapiupload.h - VA-API video upload element
|
2010-03-05 17:11:52 +00:00
|
|
|
*
|
2012-01-16 09:41:10 +00:00
|
|
|
* Copyright (C) 2010-2011 Splitted-Desktop Systems
|
2013-11-22 04:57:18 +00:00
|
|
|
* Author: Gwenole Beauchesne <gwenole.beauchesne@splitted-desktop.com>
|
2012-01-16 10:03:51 +00:00
|
|
|
* Copyright (C) 2011-2012 Intel Corporation
|
2013-11-22 04:57:18 +00:00
|
|
|
* Author: Gwenole Beauchesne <gwenole.beauchesne@intel.com>
|
2010-03-05 17:11:52 +00:00
|
|
|
*
|
2011-10-18 07:06:52 +00:00
|
|
|
* This program is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Lesser General Public License
|
|
|
|
* as published by the Free Software Foundation; either version 2.1
|
|
|
|
* of the License, or (at your option) any later version.
|
2010-03-05 17:11:52 +00:00
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
2011-10-18 07:06:52 +00:00
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Lesser General Public License for more details.
|
2010-03-05 17:11:52 +00:00
|
|
|
*
|
2011-10-18 07:06:52 +00:00
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
|
|
* License along with this program; if not, write to the Free
|
|
|
|
* Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
|
|
|
|
* Boston, MA 02110-1301 USA
|
|
|
|
*/
|
2010-03-05 17:11:52 +00:00
|
|
|
|
2012-01-03 13:34:09 +00:00
|
|
|
#ifndef GST_VAAPIUPLOAD_H
|
|
|
|
#define GST_VAAPIUPLOAD_H
|
2010-03-05 17:11:52 +00:00
|
|
|
|
2013-12-13 09:24:26 +00:00
|
|
|
#include "gstvaapipluginbase.h"
|
2012-11-20 13:32:40 +00:00
|
|
|
#include "gstvaapiuploader.h"
|
2010-03-05 17:11:52 +00:00
|
|
|
|
|
|
|
G_BEGIN_DECLS
|
|
|
|
|
2012-01-03 13:34:09 +00:00
|
|
|
#define GST_TYPE_VAAPIUPLOAD \
|
|
|
|
(gst_vaapiupload_get_type())
|
2010-03-05 17:11:52 +00:00
|
|
|
|
2012-01-03 13:34:09 +00:00
|
|
|
#define GST_VAAPIUPLOAD(obj) \
|
2010-03-05 17:11:52 +00:00
|
|
|
(G_TYPE_CHECK_INSTANCE_CAST((obj), \
|
2012-01-03 13:34:09 +00:00
|
|
|
GST_TYPE_VAAPIUPLOAD, \
|
|
|
|
GstVaapiUpload))
|
2010-03-05 17:11:52 +00:00
|
|
|
|
2012-01-03 13:34:09 +00:00
|
|
|
#define GST_VAAPIUPLOAD_CLASS(klass) \
|
2010-03-05 17:11:52 +00:00
|
|
|
(G_TYPE_CHECK_CLASS_CAST((klass), \
|
2012-01-03 13:34:09 +00:00
|
|
|
GST_TYPE_VAAPIUPLOAD, \
|
|
|
|
GstVaapiUploadClass))
|
2010-03-05 17:11:52 +00:00
|
|
|
|
2012-01-03 13:34:09 +00:00
|
|
|
#define GST_IS_VAAPIUPLOAD(obj) \
|
|
|
|
(G_TYPE_CHECK_INSTANCE_TYPE((obj), GST_TYPE_VAAPIUPLOAD))
|
2010-03-05 17:11:52 +00:00
|
|
|
|
2012-01-03 13:34:09 +00:00
|
|
|
#define GST_IS_VAAPIUPLOAD_CLASS(klass) \
|
|
|
|
(G_TYPE_CHECK_CLASS_TYPE((klass), GST_TYPE_VAAPIUPLOAD))
|
2010-03-05 17:11:52 +00:00
|
|
|
|
2012-01-03 13:34:09 +00:00
|
|
|
#define GST_VAAPIUPLOAD_GET_CLASS(obj) \
|
2010-03-05 17:11:52 +00:00
|
|
|
(G_TYPE_INSTANCE_GET_CLASS((obj), \
|
2012-01-03 13:34:09 +00:00
|
|
|
GST_TYPE_VAAPIUPLOAD, \
|
|
|
|
GstVaapiUploadClass))
|
2010-03-05 17:11:52 +00:00
|
|
|
|
2012-01-03 13:34:09 +00:00
|
|
|
typedef struct _GstVaapiUpload GstVaapiUpload;
|
|
|
|
typedef struct _GstVaapiUploadClass GstVaapiUploadClass;
|
2010-03-05 17:11:52 +00:00
|
|
|
|
2012-01-03 13:34:09 +00:00
|
|
|
struct _GstVaapiUpload {
|
2010-03-05 17:11:52 +00:00
|
|
|
/*< private >*/
|
2013-12-13 09:24:26 +00:00
|
|
|
GstVaapiPluginBase parent_instance;
|
2010-03-15 17:10:56 +00:00
|
|
|
|
2012-11-20 13:32:40 +00:00
|
|
|
GstVaapiUploader *uploader;
|
2010-03-05 17:11:52 +00:00
|
|
|
};
|
|
|
|
|
2012-01-03 13:34:09 +00:00
|
|
|
struct _GstVaapiUploadClass {
|
2010-03-05 17:11:52 +00:00
|
|
|
/*< private >*/
|
2013-12-13 09:24:26 +00:00
|
|
|
GstVaapiPluginBaseClass parent_class;
|
2010-03-05 17:11:52 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
GType
|
2012-06-28 23:45:47 +00:00
|
|
|
gst_vaapiupload_get_type(void) G_GNUC_CONST;
|
2010-03-05 17:11:52 +00:00
|
|
|
|
|
|
|
G_END_DECLS
|
|
|
|
|
2012-01-03 13:34:09 +00:00
|
|
|
#endif /* GST_VAAPIUPLOAD_H */
|