vitunes
 All Data Structures
mplayer.h
1 /*
2  * Copyright (c) 2010, 2011 Ryan Flannery <ryan.flannery@gmail.com>
3  *
4  * Permission to use, copy, modify, and distribute this software for any
5  * purpose with or without fee is hereby granted, provided that the above
6  * copyright notice and this permission notice appear in all copies.
7  *
8  * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
9  * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
10  * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
11  * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
12  * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
13  * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
14  * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
15  */
16 
17 #ifndef MPLAYER_H
18 #define MPLAYER_H
19 
20 #include <sys/wait.h>
21 #include <sys/types.h>
22 
23 #include <err.h>
24 #include <time.h>
25 #include <errno.h>
26 #include <fcntl.h>
27 #include <signal.h>
28 #include <stdbool.h>
29 #include <stdio.h>
30 #include <stdlib.h>
31 #include <string.h>
32 #include <unistd.h>
33 
34 #include "../../util/exe_in_path.h"
35 
36 void mplayer_start();
37 void mplayer_finish();
38 void mplayer_sigchld();
39 
40 void mplayer_play(const char *file);
41 void mplayer_stop();
42 void mplayer_pause();
43 void mplayer_seek(int seconds);
44 void mplayer_volume_step(float percent);
45 
46 float mplayer_get_position();
47 float mplayer_get_volume();
48 bool mplayer_is_playing();
49 bool mplayer_is_paused();
50 
51 void mplayer_set_callback_playnext(void (*f)(void));
52 void mplayer_set_callback_notice(void (*f)(char *, ...));
53 void mplayer_set_callback_error(void (*f)(char *, ...));
54 void mplayer_set_callback_fatal(void (*f)(char *, ...));
55 
56 void mplayer_monitor();
57 
58 #endif