mirror of
https://gitlab.com/mbunkus/mkvtoolnix.git
synced 2025-01-04 09:15:05 +00:00
Another fix for revision 3538: Add the video frame type flags (I/P/B) again.
This commit is contained in:
parent
69f98fd6e0
commit
d255e7c6f9
@ -965,7 +965,9 @@ ogm_reader_c::process_page(ogg_page *og) {
|
||||
pos -= dmx->first_granulepos;
|
||||
|
||||
memory_c *mem = new memory_c(&op.packet[duration_len + 1], op.bytes - 1 - duration_len, false);
|
||||
PTZR(dmx->ptzr)->process(new packet_t(mem, pos * dmx->default_duration, (int64_t)duration * dmx->default_duration));
|
||||
PTZR(dmx->ptzr)->process(new packet_t(mem, pos * dmx->default_duration, (int64_t)duration * dmx->default_duration,
|
||||
*op.packet & PACKET_IS_SYNCPOINT ? VFT_IFRAME : VFT_PFRAMEAUTOMATIC));
|
||||
|
||||
dmx->units_processed += duration;
|
||||
|
||||
} else if (dmx->stype == OGM_STREAM_TYPE_S_TEXT) {
|
||||
|
Loading…
Reference in New Issue
Block a user