Blame gst/smpte/plugin.c

Packit Service 366521
/* GStreamer
Packit Service 366521
 * Copyright (C) <2008> Wim Taymans <wim.taymans@google.com>
Packit Service 366521
 *
Packit Service 366521
 * This library is free software; you can redistribute it and/or
Packit Service 366521
 * modify it under the terms of the GNU Library General Public
Packit Service 366521
 * License as published by the Free Software Foundation; either
Packit Service 366521
 * version 2 of the License, or (at your option) any later version.
Packit Service 366521
 *
Packit Service 366521
 * This library is distributed in the hope that it will be useful,
Packit Service 366521
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
Packit Service 366521
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
Packit Service 366521
 * Library General Public License for more details.
Packit Service 366521
 *
Packit Service 366521
 * You should have received a copy of the GNU Library General Public
Packit Service 366521
 * License along with this library; if not, write to the
Packit Service 366521
 * Free Software Foundation, Inc., 51 Franklin St, Fifth Floor,
Packit Service 366521
 * Boston, MA 02110-1301, USA.
Packit Service 366521
 */
Packit Service 366521
Packit Service 366521
#ifdef HAVE_CONFIG_H
Packit Service 366521
#include "config.h"
Packit Service 366521
#endif
Packit Service 366521
Packit Service 366521
#include "gstsmpte.h"
Packit Service 366521
#include "gstsmptealpha.h"
Packit Service 366521
Packit Service 366521
static gboolean
Packit Service 366521
plugin_init (GstPlugin * plugin)
Packit Service 366521
{
Packit Service 366521
  if (!gst_smpte_plugin_init (plugin))
Packit Service 366521
    return FALSE;
Packit Service 366521
Packit Service 366521
  if (!gst_smpte_alpha_plugin_init (plugin))
Packit Service 366521
    return FALSE;
Packit Service 366521
Packit Service 366521
  return TRUE;
Packit Service 366521
}
Packit Service 366521
Packit Service 366521
GST_PLUGIN_DEFINE (GST_VERSION_MAJOR,
Packit Service 366521
    GST_VERSION_MINOR,
Packit Service 366521
    smpte,
Packit Service 366521
    "Apply the standard SMPTE transitions on video images",
Packit Service 366521
    plugin_init, VERSION, "LGPL", GST_PACKAGE_NAME, GST_PACKAGE_ORIGIN)