[Mplayer-cvslog] CVS: main/libmpdemux demux_mov.c,1.92,1.93
Arpi of Ize
arpi at mplayerhq.hu
Mon Jan 27 23:30:14 CET 2003
Update of /cvsroot/mplayer/main/libmpdemux
In directory mail:/var/tmp.root/cvs-serv23638
Modified Files:
demux_mov.c
Log Message:
Attached PATCH fixes the case, when data-flag and reference flags are set and
mplayer exits the demuxer with error (return 0), but without giving a reason
As QT-Specs say in this case the reference shuld be used, I fixed it that way.
Fabian Franz <FabianFranz at gmx.de>
Index: demux_mov.c
===================================================================
RCS file: /cvsroot/mplayer/main/libmpdemux/demux_mov.c,v
retrieving revision 1.92
retrieving revision 1.93
diff -u -r1.92 -r1.93
--- demux_mov.c 26 Jan 2003 21:26:45 -0000 1.92
+++ demux_mov.c 27 Jan 2003 22:29:47 -0000 1.93
@@ -447,7 +447,7 @@
}
free(priv);
- if (flags==5) // reference & header sent
+ if ((flags==5) || (flags==7)) // reference & header sent
return 1;
if(flags==1)
More information about the MPlayer-cvslog
mailing list