view src/vtx/vtx.h @ 2284:d19b53359b24

cleaned up the sndfile wav plugin, currently limiting it ONLY TO WAV PLAYBACK. if somebody is more experienced with it and wants to restore the other formats, go ahead (maybe change the name of the plugin too?).
author mf0102 <0102@gmx.at>
date Wed, 09 Jan 2008 15:41:22 +0100
parents 2ebeb7816c5e
children 42a5c9d5830b
line wrap: on
line source

#ifndef VTX_H
#define VTX_H

#include <config.h>

#include <pthread.h>

#include <stdlib.h>
#include <string.h>
#include <stdio.h>

#include <audacious/plugin.h>

void vtx_init(void);
void vtx_about(void);
void vtx_config(void);
void vtx_file_info(char *filename);

extern int  vtx_is_our_file(char *filename);
extern void vtx_play_file (InputPlayback *playback);
extern void vtx_stop (InputPlayback *playback);
extern void vtx_seek (InputPlayback *playback, int time);
extern void vtx_pause (InputPlayback *playback, short p);
extern int  vtx_get_time (InputPlayback *playback);
extern void vtx_get_song_info (char *filename, char **title, int *length);

#endif