~ubuntu-branches/debian/jessie/audacious-plugins/jessie

« back to all changes in this revision

Viewing changes to src/psf/eng_protos.h

  • Committer: Package Import Robot
  • Author(s): Alessio Treglia
  • Date: 2012-02-20 00:28:16 UTC
  • mfrom: (1.1.16)
  • Revision ID: package-import@ubuntu.com-20120220002816-mgn4vhn314z6mubs
Tags: 3.2.1-1
* Team upload.
* New upstream bugfix release.
* Remove correct_spelling_error.diff, applied upstream.
* Refresh ffaudio.diff.
* Reintroduce src/psf/*, it seems DFSG clean now.
* Fix and update debian/copyright.
* Update watch file.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#include <audacious/plugin.h>
 
2
 
 
3
int32 psf2_start(uint8 *, uint32 length);
 
4
int32 psf2_execute(InputPlayback *playback);
 
5
int32 psf2_stop(void);
 
6
int32 psf2_command(int32, int32);
 
7
int32 psf2_fill_info(Tuple *);
 
8
int   psf2_seek(uint32);
 
9
 
 
10
int32 psf_start(uint8 *buffer, uint32 length);
 
11
int32 psf_execute(InputPlayback *playback);
 
12
int   psf_seek(uint32);
 
13
int32 psf_stop(void);
 
14
 
 
15
int32 spx_start(uint8 *buffer, uint32 length);
 
16
int32 spx_execute(InputPlayback *playback);
 
17
int   spx_seek(uint32);
 
18
int32 spx_stop(void);
 
19
 
 
20
extern bool_t stop_flag;