source: roaraudio/libroaryiff/playback.c @ 3813:9a1ebd9f3025

Last change on this file since 3813:9a1ebd9f3025 was 3813:9a1ebd9f3025, checked in by phi, 14 years ago

fixed some copyright statements

File size: 1.9 KB
Line 
1//playback.c:
2
3/*
4 *      Copyright (C) Philipp 'ph3-der-loewe' Schafft - 2008-2010
5 *
6 *  This file is part of libroaryiff a part of RoarAudio,
7 *  a cross-platform sound system for both, home and professional use.
8 *  See README for details.
9 *
10 *  This file is free software; you can redistribute it and/or modify
11 *  it under the terms of the GNU General Public License version 3
12 *  as published by the Free Software Foundation.
13 *
14 *  libroaryiff is distributed in the hope that it will be useful,
15 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
16 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17 *  GNU General Public License for more details.
18 *
19 *  You should have received a copy of the GNU General Public License
20 *  along with this software; see the file COPYING.  If not, write to
21 *  the Free Software Foundation, 51 Franklin Street, Fifth Floor,
22 *  Boston, MA 02110-1301, USA.
23 *
24 */
25
26#include <libroaryiff.h>
27
28YID YStartPlaySoundObjectSimple (YConnection *con, const char *path) {
29 return YStartPlaySoundObject(con, path, NULL);
30}
31
32YID YStartPlaySoundObject (YConnection *con, const char *path, YEventSoundPlay *value) {
33 struct roar_connection rcon;
34 struct roar_stream     stream[1];
35
36 if ( !con )
37  return YIDNULL;
38
39 if ( !path )
40  return YIDNULL;
41
42 roar_connect_fh(&rcon, con->fd);
43
44 // hm,... find out how to do this.
45 // need to start ssize_t roar_file_play (struct roar_connection * con, char * file, int exec)
46 // in background
47
48 if ( roar_file_play_full(&rcon, (char*)path, 0, 1, stream) == -1 ) {
49  ROAR_ERR("Can not start playback");
50  return YIDNULL;
51 }
52
53 return con->prev_generated_yid = ROARYIFF_ROAR2YID(stream->id);
54}
55
56void YDestroyPlaySoundObject(YConnection *con, YID yid) {
57 struct roar_connection rcon;
58
59 if ( !con )
60  return ;
61
62 if ( yid == YIDNULL )
63  return;
64
65 roar_connect_fh(&rcon, con->fd);
66
67 roar_kick(&rcon, ROAR_OT_STREAM, ROARYIFF_YID2ROAR(yid));
68}
69
70//ll
Note: See TracBrowser for help on using the repository browser.