0
0
mirror of https://github.com/mpv-player/mpv.git synced 2024-09-20 20:03:10 +02:00

dump edit list

git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@6612 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
arpi 2002-06-29 22:12:41 +00:00
parent db683916ad
commit 3b83c27cc3

View File

@ -585,13 +585,15 @@ static void lschunks(demuxer_t* demuxer,int level,off_t endpos,mov_track_t* trak
mp_msg(MSGT_DEMUX, MSGL_V,"MOV: %*sEdit list table (%d entries) (ver:%d,flags:%ld)\n",
level, "",entries, ver, flags);
#if 0
#if 1
for (i=0;i<entries;i++)
{
printf("entry#%d: dur: %ld mtime: %ld mrate: %ld\n",
i, stream_read_dword(demuxer->stream),
stream_read_dword(demuxer->stream),
stream_read_dword(demuxer->stream));
int dur=stream_read_dword(demuxer->stream);
int mt=stream_read_dword(demuxer->stream);
int mr=stream_read_dword(demuxer->stream); // 16.16fp
mp_msg(MSGT_DEMUX, MSGL_V,"MOV: %*s entry#%d: duration: %d start time: %d speed: %3.1fx\n",level,"",
i,
dur,mt,(float)mr/65536.0f);
}
#endif
break;