Home
last modified time | relevance | path

Searched refs:bigwritebuflen (Results 1 – 1 of 1) sorted by last modified time

/dports/multimedia/dvdauthor/dvdauthor-d5bb0b/src/
H A Ddvdpgc.c36 static int bigwritebuflen=0; variable
438 if (buf + len + BUFFERPAD - bigwritebuf > bigwritebuflen) in createpgcgroup()
467 if (buf + len + BUFFERPAD - bigwritebuf > bigwritebuflen) in createpgcgroup()
498 …in_it = bigwritebuflen == 0; /* don't do first allocation if already got a buffer from last time */ in CreatePGC()
502 if (bigwritebuflen == 0) in CreatePGC()
503 bigwritebuflen = 128 * 1024; /* first call */ in CreatePGC()
505 bigwritebuflen <<= 1; /* previous write failed, try twice the size */ in CreatePGC()
508 bigwritebuf = malloc(bigwritebuflen); in CreatePGC()
512 memset(buf, 0, bigwritebuflen); in CreatePGC()
545 assert(ph <= bigwritebuflen); in CreatePGC()