[vlc-devel] commit: Fixes wav demux for PCM wavs (Srikanth Raju )
git version control
git at videolan.org
Tue Mar 31 01:04:00 CEST 2009
vlc | branch: master | Srikanth Raju <srikiraju at gmail dot com> | Tue Mar 31 01:01:54 2009 +0200| [bdd085adbc6c7e24a125658859fa0d105484b3e0] | committer: Jean-Baptiste Kempf
Fixes wav demux for PCM wavs
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=bdd085adbc6c7e24a125658859fa0d105484b3e0
---
modules/demux/wav.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/modules/demux/wav.c b/modules/demux/wav.c
index eb3aafd..9e40f73 100644
--- a/modules/demux/wav.c
+++ b/modules/demux/wav.c
@@ -456,7 +456,7 @@ static int FrameInfo_PCM( unsigned int *pi_size, int *pi_samples,
}
*pi_size = i_bytes;
- return VLC_EGENERIC;
+ return VLC_SUCCESS;
}
static int FrameInfo_MS_ADPCM( unsigned int *pi_size, int *pi_samples,
More information about the vlc-devel
mailing list