2010-10-27 17:30:11 +00:00
|
|
|
/*
|
2013-02-16 01:44:19 +00:00
|
|
|
* Copyright (C) 2009-2010 Ole André Vadla Ravnås <oleavr@soundrop.com>
|
2010-10-27 17:30:11 +00:00
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Library General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 2 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
|
|
|
|
* Library General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Library General Public
|
|
|
|
* License along with this library; if not, write to the
|
2012-11-03 20:38:00 +00:00
|
|
|
* Free Software Foundation, Inc., 51 Franklin St, Fifth Floor,
|
|
|
|
* Boston, MA 02110-1301, USA.
|
2010-10-27 17:30:11 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifdef HAVE_CONFIG_H
|
|
|
|
# include <config.h>
|
|
|
|
#endif
|
|
|
|
|
2013-12-14 12:30:01 +00:00
|
|
|
#include <Foundation/Foundation.h>
|
2010-10-27 17:30:11 +00:00
|
|
|
#ifdef HAVE_IOS
|
2013-09-26 11:21:59 +00:00
|
|
|
#include "iosassetsrc.h"
|
2010-10-27 17:30:11 +00:00
|
|
|
#else
|
|
|
|
#include "qtkitvideosrc.h"
|
2013-10-30 12:40:01 +00:00
|
|
|
#endif
|
|
|
|
#ifdef HAVE_AVFOUNDATION
|
|
|
|
#include "avfvideosrc.h"
|
2014-04-14 18:08:01 +00:00
|
|
|
#include "avfassetsrc.h"
|
2010-10-27 17:30:11 +00:00
|
|
|
#endif
|
2014-07-02 10:54:45 +00:00
|
|
|
#ifdef HAVE_VIDEOTOOLBOX
|
|
|
|
#include "vtdec.h"
|
|
|
|
#endif
|
2014-01-20 09:34:57 +00:00
|
|
|
#ifndef HAVE_IOS
|
2014-04-18 18:04:25 +00:00
|
|
|
#define AV_RANK GST_RANK_SECONDARY
|
|
|
|
#else
|
|
|
|
#define AV_RANK GST_RANK_PRIMARY
|
2014-01-20 09:34:57 +00:00
|
|
|
#endif
|
2013-07-23 08:30:39 +00:00
|
|
|
#include "atdec.h"
|
2010-10-27 17:30:11 +00:00
|
|
|
|
2014-07-02 10:54:45 +00:00
|
|
|
#ifdef HAVE_VIDEOTOOLBOX
|
2013-12-07 22:55:13 +00:00
|
|
|
void gst_vtenc_register_elements (GstPlugin * plugin);
|
2014-07-02 10:54:45 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef HAVE_IOS
|
2013-12-07 22:55:13 +00:00
|
|
|
|
2010-10-27 17:30:11 +00:00
|
|
|
static void
|
|
|
|
enable_mt_mode (void)
|
|
|
|
{
|
|
|
|
NSThread * th = [[NSThread alloc] init];
|
|
|
|
[th start];
|
|
|
|
[th release];
|
|
|
|
g_assert ([NSThread isMultiThreaded]);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
static gboolean
|
|
|
|
plugin_init (GstPlugin * plugin)
|
|
|
|
{
|
|
|
|
gboolean res = TRUE;
|
|
|
|
|
|
|
|
#ifdef HAVE_IOS
|
2013-09-26 11:21:59 +00:00
|
|
|
res &= gst_element_register (plugin, "iosassetsrc", GST_RANK_SECONDARY,
|
|
|
|
GST_TYPE_IOS_ASSET_SRC);
|
2010-10-27 17:30:11 +00:00
|
|
|
#else
|
|
|
|
enable_mt_mode ();
|
|
|
|
|
2013-11-07 14:26:22 +00:00
|
|
|
res = gst_element_register (plugin, "qtkitvideosrc", GST_RANK_SECONDARY,
|
2010-10-27 17:30:11 +00:00
|
|
|
GST_TYPE_QTKIT_VIDEO_SRC);
|
2012-02-28 07:13:04 +00:00
|
|
|
#endif
|
2010-10-27 17:30:11 +00:00
|
|
|
|
2013-10-30 12:40:01 +00:00
|
|
|
#ifdef HAVE_AVFOUNDATION
|
2014-04-18 18:04:25 +00:00
|
|
|
res &= gst_element_register (plugin, "avfvideosrc", AV_RANK,
|
2013-10-30 12:40:01 +00:00
|
|
|
GST_TYPE_AVF_VIDEO_SRC);
|
2014-04-18 18:04:25 +00:00
|
|
|
res &= gst_element_register (plugin, "avfassetsrc", AV_RANK,
|
2014-04-14 18:08:01 +00:00
|
|
|
GST_TYPE_AVF_ASSET_SRC);
|
2013-10-30 12:40:01 +00:00
|
|
|
#endif
|
|
|
|
|
2014-07-11 07:43:44 +00:00
|
|
|
res &= gst_element_register (plugin, "atdec", GST_RANK_MARGINAL, GST_TYPE_ATDEC);
|
2010-10-27 17:30:11 +00:00
|
|
|
|
2014-07-02 10:54:45 +00:00
|
|
|
#ifdef HAVE_VIDEOTOOLBOX
|
2014-09-17 07:38:20 +00:00
|
|
|
/* Check if the framework actually exists at runtime */
|
|
|
|
if (VTCompressionSessionCreate != NULL) {
|
|
|
|
res &= gst_element_register (plugin, "vtdec", GST_RANK_PRIMARY, GST_TYPE_VTDEC);
|
|
|
|
gst_vtenc_register_elements (plugin);
|
|
|
|
}
|
2013-09-23 09:35:56 +00:00
|
|
|
#endif
|
2010-10-27 17:30:11 +00:00
|
|
|
|
|
|
|
return res;
|
|
|
|
}
|
|
|
|
|
|
|
|
GST_PLUGIN_DEFINE (GST_VERSION_MAJOR,
|
|
|
|
GST_VERSION_MINOR,
|
2012-04-05 16:02:56 +00:00
|
|
|
applemedia,
|
2010-10-27 17:30:11 +00:00
|
|
|
"Elements for capture and codec access on Apple OS X and iOS",
|
|
|
|
plugin_init, VERSION, "LGPL", "GStreamer", "http://gstreamer.net/")
|