diff options
author | Diego 'Flameeyes' Pettenò <flameeyes@gmail.com> | 2006-12-26 03:18:56 +0000 |
---|---|---|
committer | Diego 'Flameeyes' Pettenò <flameeyes@gmail.com> | 2006-12-26 03:18:56 +0000 |
commit | 081af23420456da89e8a75ab7aad2b88d9868d3c (patch) | |
tree | be784b08d694c47b1666778598d6a9cbe0180ba4 /src | |
parent | ec4bff004365df1851af20a669929a2d90670856 (diff) | |
download | xine-lib-081af23420456da89e8a75ab7aad2b88d9868d3c.tar.gz xine-lib-081af23420456da89e8a75ab7aad2b88d9868d3c.tar.bz2 |
Add WavPack to the list of supported audio buffers.
CVS patchset: 8459
CVS date: 2006/12/26 03:18:56
Diffstat (limited to 'src')
-rw-r--r-- | src/xine-engine/buffer.h | 3 | ||||
-rw-r--r-- | src/xine-engine/buffer_types.c | 9 |
2 files changed, 10 insertions, 2 deletions
diff --git a/src/xine-engine/buffer.h b/src/xine-engine/buffer.h index cb6b6e4cb..22e1a7a04 100644 --- a/src/xine-engine/buffer.h +++ b/src/xine-engine/buffer.h @@ -17,7 +17,7 @@ * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA * - * $Id: buffer.h,v 1.160 2006/12/15 11:31:29 klan Exp $ + * $Id: buffer.h,v 1.161 2006/12/26 03:18:56 dgp85 Exp $ * * * contents: @@ -256,6 +256,7 @@ extern "C" { #define BUF_AUDIO_TTA 0x033A0000 #define BUF_AUDIO_SMACKER 0x033B0000 #define BUF_AUDIO_FLVADPCM 0x033C0000 +#define BUF_AUDIO_WAVPACK 0x033D0000 /* spu buffer types: */ diff --git a/src/xine-engine/buffer_types.c b/src/xine-engine/buffer_types.c index ea8d58842..161ec70a9 100644 --- a/src/xine-engine/buffer_types.c +++ b/src/xine-engine/buffer_types.c @@ -17,7 +17,7 @@ * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA * - * $Id: buffer_types.c,v 1.106 2006/10/02 15:56:06 valtri Exp $ + * $Id: buffer_types.c,v 1.107 2006/12/26 03:18:56 dgp85 Exp $ * * * contents: @@ -1114,6 +1114,13 @@ static audio_db_t audio_db[] = { BUF_AUDIO_MPC, "Musepack" }, +{ + { + 0 + }, + BUF_AUDIO_WAVPACK, + "Wavpack" +}, { { 0 }, 0, "last entry" } }; |