2004-03-15 16:27:29 +00:00
|
|
|
/* GStreamer
|
2020-08-11 15:47:02 +00:00
|
|
|
* Copyright (C) 2020 Huawei Technologies Co., Ltd.
|
|
|
|
* @Author: Stéphane Cerveau <scerveau@collabora.com>
|
2004-03-15 16:27:29 +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.
|
2004-03-15 16:27:29 +00:00
|
|
|
*/
|
|
|
|
|
2020-08-11 15:47:02 +00:00
|
|
|
#ifndef __GST_OGG_ELEMENT_H__
|
|
|
|
#define __GST_OGG_ELEMENT_H__
|
2005-04-16 20:30:11 +00:00
|
|
|
|
2004-03-15 16:27:29 +00:00
|
|
|
#include <gst/gst.h>
|
2005-04-16 20:30:11 +00:00
|
|
|
|
2020-08-11 15:47:02 +00:00
|
|
|
GST_ELEMENT_REGISTER_DECLARE (oggdemux);
|
|
|
|
GST_ELEMENT_REGISTER_DECLARE (oggmux);
|
|
|
|
GST_ELEMENT_REGISTER_DECLARE (ogmaudioparse);
|
|
|
|
GST_ELEMENT_REGISTER_DECLARE (ogmvideoparse);
|
|
|
|
GST_ELEMENT_REGISTER_DECLARE (ogmtextparse);
|
|
|
|
GST_ELEMENT_REGISTER_DECLARE (oggparse);
|
|
|
|
GST_ELEMENT_REGISTER_DECLARE (oggaviparse);
|
2004-03-15 16:27:29 +00:00
|
|
|
|
2020-08-11 15:47:02 +00:00
|
|
|
#endif /* __GST_OGG_ELEMENT_H__ */
|