diff src/audacious/util.h @ 4259:92642f860860

- added template for src_flow - vis_flow can work now with FMT_FLOAT, but disabled pending src stuff refactoring
author Eugene Zagidullin <e.asphyx@gmail.com>
date Sat, 09 Feb 2008 01:05:36 +0300
parents 6028b7fff0bd
children a41fb6bc632a
line wrap: on
line diff
--- a/src/audacious/util.h	Fri Feb 08 22:21:56 2008 +0300
+++ b/src/audacious/util.h	Sat Feb 09 01:05:36 2008 +0300
@@ -1,5 +1,5 @@
 /*  Audacious - Cross-platform multimedia player
- *  Copyright (C) 2005-2007  Audacious development team
+ *  Copyright (C) 2005-2008  Audacious development team
  *
  *  Based on BMP:
  *  Copyright (C) 2003-2004  BMP development team
@@ -38,6 +38,7 @@
 G_BEGIN_DECLS
 
 #include "audacious/plugin.h"
+#include "libSAD/libSAD.h"
 
 #define SWAP(a, b)      { a^=b; b^=a; a^=b; }
 
@@ -104,6 +105,8 @@
 
 gchar *construct_uri(gchar *string, const gchar *playlist_name);
 
+SAD_sample_format sadfmt_from_afmt(AFormat fmt);
+
 G_END_DECLS
 
 #endif