mirror of
https://github.com/clementine-player/Clementine
synced 2024-12-15 02:46:57 +01:00
39 lines
1.1 KiB
C
39 lines
1.1 KiB
C
/* This file is part of Clementine.
|
|
|
|
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 "gstafcsrc.h"
|
|
|
|
#include <gst/gst.h>
|
|
|
|
#define PACKAGE "Clementine"
|
|
|
|
|
|
static gboolean afcsrc_init(GstPlugin* afcsrc) {
|
|
return gst_element_register(afcsrc, "afcsrc", GST_RANK_PRIMARY, GST_TYPE_AFCSRC);
|
|
}
|
|
|
|
GST_PLUGIN_DEFINE_STATIC(
|
|
GST_VERSION_MAJOR,
|
|
GST_VERSION_MINOR,
|
|
"afcsrc",
|
|
"iPod/iPhone Source",
|
|
afcsrc_init,
|
|
"0.1",
|
|
"GPL",
|
|
"Clementine",
|
|
"http://www.clementine-player.org/"
|
|
)
|