mplayer-users
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Original]

Re: [MPlayer-users] Matrix Anime MOV problem


To: mplayer-users@xxxxxxxxxxxx
Subject: Re: [MPlayer-users] Matrix Anime MOV problem
From: Arpi <arpi@xxxxxxxxxxxxx>
Date: Wed, 5 Feb 2003 18:59:18 +0100
In-reply-to: <3E414801.9000006@univap.br>

[Automatic answer: RTFM (read DOCS, FAQ), also read DOCS/bugreports.html]
Hi,

> Alright, this morning I downloaded the 140Mb Matrix Anime quicktime 
> file.  I fired up MPlayer and... nothin'.  I manage to hear to audio 
> but no video, of notice, I did get these lines (full dump gzip and 
> attached):

try this patch:


Index: demux_mov.c
===================================================================
RCS file: /cvsroot/mplayer/main/libmpdemux/demux_mov.c,v
retrieving revision 1.93
diff -u -r1.93 demux_mov.c
--- demux_mov.c 27 Jan 2003 22:29:47 -0000      1.93
+++ demux_mov.c 5 Feb 2003 17:58:15 -0000
@@ -597,7 +597,10 @@
                    unsigned int fourcc=stream_read_dword_le(demuxer->stream);
                    if(len<8) break; // error
                    mp_msg(MSGT_DEMUX,MSGL_V,"MOV: %*s desc #%d: %.4s  (%d 
bytes)\n",level,"",i,&fourcc,len-16);
-                   if(!i){
+                   if(fourcc!=trak->fourcc && i)
+                       mp_msg(MSGT_DEMUX,MSGL_WARN,MSGTR_MOVvariableFourCC);
+//                 if(!i)
+                   {
                        trak->fourcc=fourcc;
                        // read type specific (audio/video/time/text etc) header
                        // NOTE: trak type is not yet known at this point :(((
@@ -605,8 +608,6 @@
                        trak->stdata=malloc(trak->stdata_len);
                        
stream_read(demuxer->stream,trak->stdata,trak->stdata_len);
                    }
-                   if(fourcc!=trak->fourcc && i)
-                       mp_msg(MSGT_DEMUX,MSGL_WARN,MSGTR_MOVvariableFourCC);
                    if(!stream_seek(demuxer->stream,pos+len)) break;
                }
                break;



A'rpi / Astral & ESP-team

--
Developer of MPlayer, the Movie Player for Linux - http://www.MPlayerHQ.hu
    "However, many people beg for its inclusion in Debian. Why?" - Gabucino
  "Because having new software in Debian is good." - Josselin Mouette
"Because having good software in Debian is new." - Gabucino

_______________________________________________
RTFM!!!  http://www.MPlayerHQ.hu/DOCS
Search:  http://www.MPlayerHQ.hu/cgi-bin/htsearch
http://mplayerhq.hu/mailman/listinfo/mplayer-users


[Prev in Thread] Current Thread [Next in Thread]