do_flush          404 src/ietf/rtp_pck_mpeg4.c 	u32 do_flush, bytesLeft, size, nal_type;
do_flush          408 src/ietf/rtp_pck_mpeg4.c 	do_flush = 0;
do_flush          409 src/ietf/rtp_pck_mpeg4.c 	if (!nalu) do_flush = 1;
do_flush          411 src/ietf/rtp_pck_mpeg4.c 	else if (builder->sl_header.accessUnitStartFlag) do_flush = 1;
do_flush          413 src/ietf/rtp_pck_mpeg4.c 	else if (builder->bytesInPacket + nalu_size >= builder->Path_MTU) do_flush = 2;
do_flush          415 src/ietf/rtp_pck_mpeg4.c 	else if (! (builder->flags & GP_RTP_PCK_USE_MULTI) ) do_flush = 2;
do_flush          417 src/ietf/rtp_pck_mpeg4.c 	if (builder->bytesInPacket && do_flush) {
do_flush          418 src/ietf/rtp_pck_mpeg4.c 		builder->rtp_header.Marker = (do_flush==1) ? 1 : 0;
do_flush          539 src/ietf/rtp_pck_mpeg4.c 	u32 do_flush, bytesLeft, size;
do_flush          541 src/ietf/rtp_pck_mpeg4.c 	do_flush = 0;
do_flush          542 src/ietf/rtp_pck_mpeg4.c 	if (!nalu) do_flush = 1;
do_flush          543 src/ietf/rtp_pck_mpeg4.c 	else if (builder->sl_header.accessUnitStartFlag) do_flush = 1;
do_flush          545 src/ietf/rtp_pck_mpeg4.c 	else if (builder->bytesInPacket + nalu_size + 4 >= builder->Path_MTU) do_flush = 2; //2 bytes PayloadHdr for AP + 2 bytes NAL size
do_flush          547 src/ietf/rtp_pck_mpeg4.c 	else if (! (builder->flags & GP_RTP_PCK_USE_MULTI) ) do_flush = 2;
do_flush          549 src/ietf/rtp_pck_mpeg4.c 	if (builder->bytesInPacket && do_flush) {
do_flush          550 src/ietf/rtp_pck_mpeg4.c 		builder->rtp_header.Marker = (do_flush==1) ? 1 : 0;
do_flush          743 src/utils/gzio.cpp 	int err = do_flush (file, flush);
do_flush          947 src/utils/gzio.cpp 		if (do_flush (file, Z_FINISH) != Z_OK)