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

10l, keyframes must have tag 0x10, not 1.

git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@18097 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
reimar 2006-04-14 21:08:25 +00:00
parent d17ac2d7bf
commit 79e10e452c

View File

@ -3142,7 +3142,7 @@ handle_block (demuxer_t *demuxer, uint8_t *block, uint64_t length,
memcpy (dp->buffer, buffer, size);
if (modified)
free (buffer);
dp->flags = (block_bref == 0 && block_fref == 0) ? 1 : 0;
dp->flags = (block_bref == 0 && block_fref == 0) ? 0x10 : 0;
dp->pts = mkv_d->last_pts + i * track->default_duration;
ds_add_packet (ds, dp);
}