2021-02-25 14:22:15 +00:00
|
|
|
|
|
|
|
/* GStreamer
|
|
|
|
* Copyright (C) <2008> Sebastian Dröge <sebastian.droege@collabora.co.uk>
|
|
|
|
*
|
|
|
|
* 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
|
|
|
|
* Free Software Foundation, Inc., 51 Franklin St, Fifth Floor,
|
|
|
|
* Boston, MA 02110-1301, USA.
|
|
|
|
*/
|
|
|
|
#ifdef HAVE_CONFIG_H
|
|
|
|
#include <config.h>
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#include <gst/gst.h>
|
|
|
|
|
|
|
|
#include "gstmxfelements.h"
|
|
|
|
#include "mxfquark.h"
|
|
|
|
#include "mxfdemux.h"
|
|
|
|
#include "mxfmux.h"
|
|
|
|
/*#include "mxfdms1.h"*/
|
|
|
|
#include "mxfaes-bwf.h"
|
|
|
|
#include "mxfalaw.h"
|
|
|
|
#include "mxfd10.h"
|
|
|
|
#include "mxfdv-dif.h"
|
2023-02-06 16:47:11 +00:00
|
|
|
#include "mxfffv1.h"
|
2021-02-25 14:22:15 +00:00
|
|
|
#include "mxfjpeg2000.h"
|
|
|
|
#include "mxfmpeg.h"
|
|
|
|
#include "mxfup.h"
|
|
|
|
#include "mxfvc3.h"
|
|
|
|
#include "mxfprores.h"
|
|
|
|
#include "mxfvanc.h"
|
2022-10-12 09:12:50 +00:00
|
|
|
#include "mxfcustom.h"
|
2021-02-25 14:22:15 +00:00
|
|
|
|
|
|
|
GST_DEBUG_CATEGORY (mxf_debug);
|
|
|
|
#define GST_CAT_DEFAULT mxf_debug
|
|
|
|
|
|
|
|
static void
|
|
|
|
mxf_init (void)
|
|
|
|
{
|
|
|
|
gst_tag_register (GST_TAG_MXF_UMID, GST_TAG_FLAG_META,
|
|
|
|
G_TYPE_STRING, "UMID", "Unique Material Identifier", NULL);
|
|
|
|
gst_tag_register (GST_TAG_MXF_STRUCTURE, GST_TAG_FLAG_META,
|
|
|
|
GST_TYPE_STRUCTURE, "Structure", "Structural metadata of "
|
|
|
|
"the MXF file", NULL);
|
|
|
|
gst_tag_register (GST_TAG_MXF_DESCRIPTIVE_METADATA_FRAMEWORK,
|
|
|
|
GST_TAG_FLAG_META, GST_TYPE_STRUCTURE, "DM Framework",
|
|
|
|
"Descriptive metadata framework", NULL);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
mxf_element_init (GstPlugin * plugin)
|
|
|
|
{
|
|
|
|
static gsize res = FALSE;
|
|
|
|
|
|
|
|
if (g_once_init_enter (&res)) {
|
|
|
|
GST_DEBUG_CATEGORY_INIT (mxf_debug, "mxf", 0, "MXF");
|
|
|
|
|
|
|
|
mxf_init ();
|
|
|
|
mxf_quark_initialize ();
|
|
|
|
mxf_metadata_init_types ();
|
|
|
|
/* mxf_dms1_initialize (); */
|
|
|
|
mxf_aes_bwf_init ();
|
|
|
|
mxf_alaw_init ();
|
|
|
|
mxf_d10_init ();
|
|
|
|
mxf_dv_dif_init ();
|
2023-02-06 16:47:11 +00:00
|
|
|
mxf_ffv1_init ();
|
2021-02-25 14:22:15 +00:00
|
|
|
mxf_jpeg2000_init ();
|
|
|
|
mxf_mpeg_init ();
|
|
|
|
mxf_up_init ();
|
|
|
|
mxf_vc3_init ();
|
|
|
|
mxf_prores_init ();
|
|
|
|
mxf_vanc_init ();
|
2022-10-12 09:12:50 +00:00
|
|
|
mxf_custom_init ();
|
2021-02-25 14:22:15 +00:00
|
|
|
g_once_init_leave (&res, TRUE);
|
|
|
|
}
|
|
|
|
}
|