File: plugin.cpp

package info (click to toggle)
clementine 1.3.1%2Bgit276-g3485bbe43%2Bdfsg-1
  • links: PTS
  • area: main
  • in suites: stretch
  • size: 26,544 kB
  • sloc: cpp: 114,212; xml: 5,193; python: 3,704; sql: 858; ansic: 123; sh: 71; makefile: 29
file content (48 lines) | stat: -rw-r--r-- 1,347 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
/* This file is part of Clementine.
   Copyright 2014, David Sansome <me@davidsansome.com>

   Clementine is free software: you can redistribute it and/or modify
   it under the terms of the GNU General Public License as published by
   the Free Software Foundation, either version 3 of the License, or
   (at your option) any later version.

   Clementine 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 General Public License for more details.

   You should have received a copy of the GNU General Public License
   along with Clementine.  If not, see <http://www.gnu.org/licenses/>.
*/

#include <gst/gst.h>

#include "gstfastspectrum.h"
#include "plugin.h"

namespace {

static gboolean plugin_init(GstPlugin* plugin) {
  if (!gst_element_register(plugin, "fastspectrum",
          GST_RANK_NONE, GST_TYPE_FASTSPECTRUM)) {
    return FALSE;
  }

  return TRUE;
}

}  // namespace

int gstfastspectrum_register_static() {
  return gst_plugin_register_static(
    GST_VERSION_MAJOR,
    GST_VERSION_MINOR,
    "fastspectrum",
    "Fast spectrum analyzer for generating Moodbars",
    plugin_init,
    "0.1",
    "GPL",
    "FastSpectrum",
    "FastSpectrum",
    "https://www.clementine-player.org");
}