mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-01-31 11:32:38 +00:00
small cleanups
Original commit message from CVS: small cleanups
This commit is contained in:
parent
bd3a91a8d4
commit
860289915e
2 changed files with 3 additions and 4 deletions
|
@ -56,6 +56,7 @@
|
||||||
#include "gstid3v2mux.h"
|
#include "gstid3v2mux.h"
|
||||||
|
|
||||||
#include <string.h>
|
#include <string.h>
|
||||||
|
|
||||||
#include <textidentificationframe.h>
|
#include <textidentificationframe.h>
|
||||||
#include <uniquefileidentifierframe.h>
|
#include <uniquefileidentifierframe.h>
|
||||||
#include <id3v2tag.h>
|
#include <id3v2tag.h>
|
||||||
|
@ -67,7 +68,7 @@ GST_DEBUG_CATEGORY_STATIC (gst_id3v2_mux_debug);
|
||||||
#define GST_CAT_DEFAULT gst_id3v2_mux_debug
|
#define GST_CAT_DEFAULT gst_id3v2_mux_debug
|
||||||
|
|
||||||
static const GstElementDetails gst_id3v2_mux_details =
|
static const GstElementDetails gst_id3v2_mux_details =
|
||||||
GST_ELEMENT_DETAILS ("TagLib ID3v2 Muxer",
|
GST_ELEMENT_DETAILS ("TagLib-based ID3v2 Muxer",
|
||||||
"Formatter/Metadata",
|
"Formatter/Metadata",
|
||||||
"Adds an ID3v2 header to the beginning of MP3 files using taglib",
|
"Adds an ID3v2 header to the beginning of MP3 files using taglib",
|
||||||
"Christophe Fergeau <teuf@gnome.org>");
|
"Christophe Fergeau <teuf@gnome.org>");
|
||||||
|
@ -359,5 +360,5 @@ plugin_init (GstPlugin * plugin)
|
||||||
GST_PLUGIN_DEFINE (GST_VERSION_MAJOR,
|
GST_PLUGIN_DEFINE (GST_VERSION_MAJOR,
|
||||||
GST_VERSION_MINOR,
|
GST_VERSION_MINOR,
|
||||||
"taglib",
|
"taglib",
|
||||||
"Tag-writing plug-in based on taglib",
|
"Tag writing plug-in based on taglib",
|
||||||
plugin_init, VERSION, "LGPL", GST_PACKAGE_NAME, GST_PACKAGE_ORIGIN);
|
plugin_init, VERSION, "LGPL", GST_PACKAGE_NAME, GST_PACKAGE_ORIGIN);
|
||||||
|
|
|
@ -26,7 +26,6 @@
|
||||||
#include <gst/gsttagsetter.h>
|
#include <gst/gsttagsetter.h>
|
||||||
#include <gst/tag/tag.h>
|
#include <gst/tag/tag.h>
|
||||||
#include "gsttaglib.h"
|
#include "gsttaglib.h"
|
||||||
#include "gstid3v2mux.h"
|
|
||||||
|
|
||||||
GST_DEBUG_CATEGORY_STATIC (gst_tag_lib_mux_debug);
|
GST_DEBUG_CATEGORY_STATIC (gst_tag_lib_mux_debug);
|
||||||
#define GST_CAT_DEFAULT gst_tag_lib_mux_debug
|
#define GST_CAT_DEFAULT gst_tag_lib_mux_debug
|
||||||
|
@ -37,7 +36,6 @@ GST_STATIC_PAD_TEMPLATE ("sink",
|
||||||
GST_PAD_ALWAYS,
|
GST_PAD_ALWAYS,
|
||||||
GST_STATIC_CAPS ("ANY"));
|
GST_STATIC_CAPS ("ANY"));
|
||||||
|
|
||||||
|
|
||||||
static void
|
static void
|
||||||
gst_tag_lib_mux_iface_init (GType taglib_type)
|
gst_tag_lib_mux_iface_init (GType taglib_type)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in a new issue