mirror of
https://gitlab.com/mbunkus/mkvtoolnix.git
synced 2024-12-25 12:27:21 +00:00
Handle TrackMinCache automatically.
This commit is contained in:
parent
1cb2d837b1
commit
8e10873a44
@ -239,7 +239,7 @@ generic_packetizer_c::generic_packetizer_c(generic_reader_c *nreader,
|
|||||||
hserialno = create_track_number(reader, ti->id);
|
hserialno = create_track_number(reader, ti->id);
|
||||||
huid = 0;
|
huid = 0;
|
||||||
htrack_type = -1;
|
htrack_type = -1;
|
||||||
htrack_min_cache = -1;
|
htrack_min_cache = 0;
|
||||||
htrack_max_cache = -1;
|
htrack_max_cache = -1;
|
||||||
|
|
||||||
hcodec_id = "";
|
hcodec_id = "";
|
||||||
@ -936,6 +936,14 @@ generic_packetizer_c::add_packet2(packet_t *pack) {
|
|||||||
if (pack->fref >= 0)
|
if (pack->fref >= 0)
|
||||||
pack->fref += correction_timecode_offset + append_timecode_offset;
|
pack->fref += correction_timecode_offset + append_timecode_offset;
|
||||||
|
|
||||||
|
if ((htrack_min_cache < 2) && (pack->fref >= 0)) {
|
||||||
|
set_track_min_cache(2);
|
||||||
|
rerender_track_headers();
|
||||||
|
} else if ((htrack_min_cache < 1) && (pack->bref >= 0)) {
|
||||||
|
set_track_min_cache(1);
|
||||||
|
rerender_track_headers();
|
||||||
|
}
|
||||||
|
|
||||||
if (pack->timecode < 0) {
|
if (pack->timecode < 0) {
|
||||||
delete pack;
|
delete pack;
|
||||||
return;
|
return;
|
||||||
|
Loading…
Reference in New Issue
Block a user