2003-12-07 22:49:04 +00:00
|
|
|
/* GStreamer RIFF I/O
|
|
|
|
* Copyright (C) 2003 Ronald Bultje <rbultje@ronald.bitfreak.net>
|
|
|
|
*
|
2008-08-12 06:31:49 +00:00
|
|
|
* riff.c: library initialisation
|
2001-12-23 12:18:18 +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 23:05:09 +00:00
|
|
|
* Free Software Foundation, Inc., 51 Franklin St, Fifth Floor,
|
|
|
|
* Boston, MA 02110-1301, USA.
|
2001-12-23 12:18:18 +00:00
|
|
|
*/
|
2008-08-12 06:31:49 +00:00
|
|
|
/**
|
|
|
|
* SECTION:gstriff
|
2017-01-23 19:36:11 +00:00
|
|
|
* @title: Riff utilities
|
2008-08-12 06:31:49 +00:00
|
|
|
* @short_description: Riff fileformat utillity functions.
|
|
|
|
*
|
|
|
|
* A collection of functions to handle riff base files, such as avi, wav and
|
|
|
|
* asf.
|
|
|
|
*/
|
2001-12-23 12:18:18 +00:00
|
|
|
|
2003-10-31 20:03:29 +00:00
|
|
|
#ifdef HAVE_CONFIG_H
|
2003-12-07 22:49:04 +00:00
|
|
|
#include "config.h"
|
2003-10-31 20:03:29 +00:00
|
|
|
#endif
|
2001-12-23 12:18:18 +00:00
|
|
|
|
2003-12-07 22:49:04 +00:00
|
|
|
#include <gst/gst.h>
|
2001-12-23 12:18:18 +00:00
|
|
|
|
2010-03-11 12:32:14 +00:00
|
|
|
#include "riff-read.h"
|
|
|
|
|
2005-03-31 09:43:49 +00:00
|
|
|
GST_DEBUG_CATEGORY (riff_debug);
|
|
|
|
|
2008-08-12 06:31:49 +00:00
|
|
|
/**
|
|
|
|
* gst_riff_init:
|
|
|
|
*
|
|
|
|
* Initialize riff library.
|
|
|
|
*/
|
2005-06-30 08:59:30 +00:00
|
|
|
void
|
|
|
|
gst_riff_init (void)
|
2002-03-24 20:55:44 +00:00
|
|
|
{
|
2005-03-31 09:43:49 +00:00
|
|
|
GST_DEBUG_CATEGORY_INIT (riff_debug, "riff", 0, "RIFF I/O");
|
2002-03-24 20:55:44 +00:00
|
|
|
}
|