annotate src/CoreAudio/coreaudio.c @ 1263:458d46e65a86

wav-sndfile: in is_our_file, ensure that filename is not NULL before passing it to sf_open
author Giacomo Lozito <james@develia.org>
date Fri, 13 Jul 2007 20:55:42 +0200
parents c087e8461bab
children 761e17b23e0c
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
1 /* XMMS - Cross-platform multimedia player
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
2 * Copyright (C) 1998-2000 Peter Alm, Mikael Alm, Olle Hallnas, Thomas Nilsson and 4Front Technologies
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
3 *
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
4 * This program is free software; you can redistribute it and/or modify
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
5 * it under the terms of the GNU General Public License as published by
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
6 * the Free Software Foundation; either version 2 of the License, or
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
7 * (at your option) any later version.
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
8 *
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
9 * This program is distributed in the hope that it will be useful,
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
12 * GNU General Public License for more details.
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
13 *
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
14 * You should have received a copy of the GNU General Public License
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
15 * along with this program; if not, write to the Free Software
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
16 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
17 */
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
18 #include <glib.h>
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
19
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
20 #include "coreaudio.h"
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
21
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
22 #include "audacious/plugin.h"
527
d124034ebea3 [svn] - glib/gi18n.h -> audacious/i18n.h for automatic dgettext support
nenolod
parents: 12
diff changeset
23 #include <audacious/i18n.h>
0
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
24
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
25 OutputPlugin osx_op =
1103
c087e8461bab [svn] - coreaudio: convert to plugin API v2
nenolod
parents: 527
diff changeset
26 {
c087e8461bab [svn] - coreaudio: convert to plugin API v2
nenolod
parents: 527
diff changeset
27 NULL,
c087e8461bab [svn] - coreaudio: convert to plugin API v2
nenolod
parents: 527
diff changeset
28 NULL,
c087e8461bab [svn] - coreaudio: convert to plugin API v2
nenolod
parents: 527
diff changeset
29 "CoreAudio Output Plugin", /* Description */
c087e8461bab [svn] - coreaudio: convert to plugin API v2
nenolod
parents: 527
diff changeset
30 osx_init,
c087e8461bab [svn] - coreaudio: convert to plugin API v2
nenolod
parents: 527
diff changeset
31 NULL,
c087e8461bab [svn] - coreaudio: convert to plugin API v2
nenolod
parents: 527
diff changeset
32 osx_about,
c087e8461bab [svn] - coreaudio: convert to plugin API v2
nenolod
parents: 527
diff changeset
33 osx_configure,
c087e8461bab [svn] - coreaudio: convert to plugin API v2
nenolod
parents: 527
diff changeset
34 osx_get_volume,
c087e8461bab [svn] - coreaudio: convert to plugin API v2
nenolod
parents: 527
diff changeset
35 osx_set_volume,
c087e8461bab [svn] - coreaudio: convert to plugin API v2
nenolod
parents: 527
diff changeset
36 osx_open,
c087e8461bab [svn] - coreaudio: convert to plugin API v2
nenolod
parents: 527
diff changeset
37 osx_write,
c087e8461bab [svn] - coreaudio: convert to plugin API v2
nenolod
parents: 527
diff changeset
38 osx_close,
c087e8461bab [svn] - coreaudio: convert to plugin API v2
nenolod
parents: 527
diff changeset
39 osx_flush,
c087e8461bab [svn] - coreaudio: convert to plugin API v2
nenolod
parents: 527
diff changeset
40 osx_pause,
c087e8461bab [svn] - coreaudio: convert to plugin API v2
nenolod
parents: 527
diff changeset
41 osx_free,
c087e8461bab [svn] - coreaudio: convert to plugin API v2
nenolod
parents: 527
diff changeset
42 osx_playing,
c087e8461bab [svn] - coreaudio: convert to plugin API v2
nenolod
parents: 527
diff changeset
43 osx_get_output_time,
c087e8461bab [svn] - coreaudio: convert to plugin API v2
nenolod
parents: 527
diff changeset
44 osx_get_written_time,
c087e8461bab [svn] - coreaudio: convert to plugin API v2
nenolod
parents: 527
diff changeset
45 };
0
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
46
1103
c087e8461bab [svn] - coreaudio: convert to plugin API v2
nenolod
parents: 527
diff changeset
47 OutputPlugin *coreaudio_oplist[] = { &osx_op, NULL };
c087e8461bab [svn] - coreaudio: convert to plugin API v2
nenolod
parents: 527
diff changeset
48
c087e8461bab [svn] - coreaudio: convert to plugin API v2
nenolod
parents: 527
diff changeset
49 DECLARE_PLUGIN(coreaudio, NULL, NULL, NULL, coreaudio_oplist, NULL, NULL, NULL);