Added options to Vsend and Vreceive; moved common defaults to senddefs.

Optimized LiveVideoIn quite a bit; removed print stmt from LiveVideoOut.
This commit is contained in:
Guido van Rossum 1992-09-24 15:01:37 +00:00
parent 67b4895291
commit 7b47c79a4c
4 changed files with 115 additions and 36 deletions

11
Demo/sgi/video/senddefs.py Executable file
View file

@ -0,0 +1,11 @@
# Defaults shared by Vsend and Vreceice
DEFMCAST = '225.0.0.250'
DEFPORT = 5555
PKTMAX_UCAST = 16*1024 - 6
PKTMAX_BCAST = 1450
DEFPKTMAX = PKTMAX_BCAST
DEFWIDTH = 400
DEFHEIGHT = 300