2011-09-14 19:12:41 +00:00
|
|
|
/*
|
|
|
|
* gstvaapi.c - VA-API element registration
|
|
|
|
*
|
2013-11-22 05:37:12 +00:00
|
|
|
* Copyright (C) 2011-2013 Intel Corporation
|
2013-11-22 04:57:18 +00:00
|
|
|
* Author: Gwenole Beauchesne <gwenole.beauchesne@intel.com>
|
2011-09-14 19:12:41 +00:00
|
|
|
* Copyright (C) 2011 Collabora Ltd.
|
|
|
|
* Author: Nicolas Dufresne <nicolas.dufresne@collabora.co.uk>
|
|
|
|
*
|
|
|
|
* This library 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.
|
|
|
|
*
|
|
|
|
* This library is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Lesser General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
|
|
* License along with this library; if not, write to the Free
|
|
|
|
* Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
|
|
|
|
* Boston, MA 02110-1301 USA
|
|
|
|
*/
|
|
|
|
|
2015-04-03 14:08:30 +00:00
|
|
|
#include "gstcompat.h"
|
2011-09-14 19:12:41 +00:00
|
|
|
#include <gst/gst.h>
|
|
|
|
#include "gstvaapidecode.h"
|
2012-03-26 12:37:24 +00:00
|
|
|
#include "gstvaapipostproc.h"
|
2011-09-14 19:12:41 +00:00
|
|
|
#include "gstvaapisink.h"
|
2015-03-02 13:19:40 +00:00
|
|
|
#include "gstvaapidecodebin.h"
|
2011-09-14 19:12:41 +00:00
|
|
|
|
2013-07-29 08:02:56 +00:00
|
|
|
#if USE_ENCODERS
|
|
|
|
#include "gstvaapiencode_h264.h"
|
2013-11-20 08:21:32 +00:00
|
|
|
#include "gstvaapiencode_mpeg2.h"
|
2013-07-29 08:02:56 +00:00
|
|
|
#endif
|
|
|
|
|
2015-02-04 09:18:29 +00:00
|
|
|
#if USE_JPEG_ENCODER
|
|
|
|
#include "gstvaapiencode_jpeg.h"
|
|
|
|
#endif
|
|
|
|
|
2015-02-13 11:45:32 +00:00
|
|
|
#if USE_VP8_ENCODER
|
|
|
|
#include "gstvaapiencode_vp8.h"
|
|
|
|
#endif
|
|
|
|
|
2015-05-25 08:58:20 +00:00
|
|
|
#if USE_H265_ENCODER
|
|
|
|
#include "gstvaapiencode_h265.h"
|
|
|
|
#endif
|
|
|
|
|
2013-04-12 11:44:52 +00:00
|
|
|
#define PLUGIN_NAME "vaapi"
|
|
|
|
#define PLUGIN_DESC "VA-API based elements"
|
|
|
|
#define PLUGIN_LICENSE "LGPL"
|
|
|
|
|
2011-09-14 19:12:41 +00:00
|
|
|
static gboolean
|
2015-06-30 06:44:18 +00:00
|
|
|
plugin_init (GstPlugin * plugin)
|
2011-09-14 19:12:41 +00:00
|
|
|
{
|
2016-03-09 17:41:49 +00:00
|
|
|
gst_vaapidecode_register (plugin);
|
|
|
|
|
2015-06-30 06:44:18 +00:00
|
|
|
gst_element_register (plugin, "vaapipostproc",
|
|
|
|
GST_RANK_PRIMARY, GST_TYPE_VAAPIPOSTPROC);
|
|
|
|
gst_element_register (plugin, "vaapisink",
|
|
|
|
GST_RANK_PRIMARY, GST_TYPE_VAAPISINK);
|
2013-07-29 08:02:56 +00:00
|
|
|
#if USE_ENCODERS
|
2016-02-03 18:07:40 +00:00
|
|
|
gst_element_register (plugin, "vaapih264enc",
|
2015-06-30 06:44:18 +00:00
|
|
|
GST_RANK_PRIMARY, GST_TYPE_VAAPIENCODE_H264);
|
2016-02-03 18:07:40 +00:00
|
|
|
gst_element_register (plugin, "vaapimpeg2enc",
|
2015-06-30 06:44:18 +00:00
|
|
|
GST_RANK_PRIMARY, GST_TYPE_VAAPIENCODE_MPEG2);
|
2013-07-29 08:02:56 +00:00
|
|
|
#endif
|
2015-02-04 09:18:29 +00:00
|
|
|
#if USE_JPEG_ENCODER
|
2016-02-03 18:07:40 +00:00
|
|
|
gst_element_register (plugin, "vaapijpegenc",
|
2015-06-30 06:44:18 +00:00
|
|
|
GST_RANK_PRIMARY, GST_TYPE_VAAPIENCODE_JPEG);
|
2015-02-04 09:18:29 +00:00
|
|
|
#endif
|
2015-02-13 11:45:32 +00:00
|
|
|
#if USE_VP8_ENCODER
|
2016-02-03 18:07:40 +00:00
|
|
|
gst_element_register (plugin, "vaapivp8enc",
|
2015-06-30 06:44:18 +00:00
|
|
|
GST_RANK_PRIMARY, GST_TYPE_VAAPIENCODE_VP8);
|
2015-02-13 11:45:32 +00:00
|
|
|
#endif
|
2013-07-29 08:02:56 +00:00
|
|
|
|
2015-05-25 08:58:20 +00:00
|
|
|
#if USE_H265_ENCODER
|
2016-02-03 18:07:40 +00:00
|
|
|
gst_element_register (plugin, "vaapih265enc",
|
2015-06-30 06:44:18 +00:00
|
|
|
GST_RANK_PRIMARY, GST_TYPE_VAAPIENCODE_H265);
|
2015-05-25 08:58:20 +00:00
|
|
|
#endif
|
|
|
|
|
2015-06-30 06:44:18 +00:00
|
|
|
gst_element_register (plugin, "vaapidecodebin",
|
2015-08-06 10:28:51 +00:00
|
|
|
GST_RANK_PRIMARY + 2, GST_TYPE_VAAPI_DECODE_BIN);
|
2015-06-30 06:44:18 +00:00
|
|
|
return TRUE;
|
2011-09-14 19:12:41 +00:00
|
|
|
}
|
|
|
|
|
2015-06-30 06:44:18 +00:00
|
|
|
GST_PLUGIN_DEFINE (GST_VERSION_MAJOR, GST_VERSION_MINOR,
|
|
|
|
vaapi, PLUGIN_DESC, plugin_init,
|
|
|
|
PACKAGE_VERSION, PLUGIN_LICENSE, PACKAGE, PACKAGE_BUGREPORT)
|