From fa50a0276f4e03828e1250f6524b61ef48ca9d15 Mon Sep 17 00:00:00 2001 From: Baptiste Coudurier Date: Fri, 9 Jan 2009 22:13:37 +0000 Subject: only set le if value is 1, fix boom5.mov, issue #770 Originally committed as revision 16507 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavformat/mov.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'libavformat/mov.c') diff --git a/libavformat/mov.c b/libavformat/mov.c index 5ba83e4be8..c0c057a4bf 100644 --- a/libavformat/mov.c +++ b/libavformat/mov.c @@ -575,7 +575,8 @@ static int mov_read_enda(MOVContext *c, ByteIOContext *pb, MOVAtom atom) AVStream *st = c->fc->streams[c->fc->nb_streams-1]; int little_endian = get_be16(pb); - if (little_endian) { + dprintf(c->fc, "enda %d\n", little_endian); + if (little_endian == 1) { switch (st->codec->codec_id) { case CODEC_ID_PCM_S24BE: st->codec->codec_id = CODEC_ID_PCM_S24LE; -- cgit v1.2.3