From ec36f886cce3ca43625dd9e9c8273e5eac30b97c Mon Sep 17 00:00:00 2001 From: Juergen Keil Date: Fri, 31 Aug 2001 17:57:54 +0000 Subject: Fix byte order problems for AVI files with LPCM sound. CVS patchset: 534 CVS date: 2001/08/31 17:57:54 --- src/demuxers/demux_avi.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/demuxers/demux_avi.c') diff --git a/src/demuxers/demux_avi.c b/src/demuxers/demux_avi.c index 3780df6d8..4a138c001 100644 --- a/src/demuxers/demux_avi.c +++ b/src/demuxers/demux_avi.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: demux_avi.c,v 1.28 2001/08/30 12:46:31 jkeil Exp $ + * $Id: demux_avi.c,v 1.29 2001/08/31 17:57:54 jkeil Exp $ * * demultiplexer for avi streams * @@ -864,7 +864,7 @@ static void demux_avi_start (demux_plugin_t *this_gen, this->no_audio = 0; switch (this->avi->a_fmt) { case 0x01: - this->avi->audio_type = BUF_AUDIO_LPCM; + this->avi->audio_type = BUF_AUDIO_LPCM_LE; break; case 0x2000: this->avi->audio_type = BUF_AUDIO_A52; -- cgit v1.2.3