diff options
author | tma <tma@edf5b092-35ff-0310-97b2-ce42778d08ea> | 2006-01-04 03:12:12 +0000 |
---|---|---|
committer | tma <tma@edf5b092-35ff-0310-97b2-ce42778d08ea> | 2006-01-04 03:12:12 +0000 |
commit | 98c8cf0f19d89b729825d6d37b924a84025ec07b (patch) | |
tree | 51cbf43364a63f83c5e0e2fea133038ebf8a255c /code/unix/Makefile | |
parent | 9e019da1eadfaab84999cf76ec169d6cb3bc9f25 (diff) | |
download | ioquake3-aero-98c8cf0f19d89b729825d6d37b924a84025ec07b.tar.gz ioquake3-aero-98c8cf0f19d89b729825d6d37b924a84025ec07b.zip |
* AVI video output
- Uses motion jpeg codec by default
- Use cl_avidemo to set a framerate
- \video [filename] to start capture
- \stopvideo to stop capture
- Audio capture is a bit ropey
git-svn-id: svn://svn.icculus.org/quake3/trunk@454 edf5b092-35ff-0310-97b2-ce42778d08ea
Diffstat (limited to 'code/unix/Makefile')
-rw-r--r-- | code/unix/Makefile | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/code/unix/Makefile b/code/unix/Makefile index cd78eba..cd0039d 100644 --- a/code/unix/Makefile +++ b/code/unix/Makefile @@ -684,6 +684,7 @@ Q3OBJ = \ $(B)/client/cl_parse.o \ $(B)/client/cl_scrn.o \ $(B)/client/cl_ui.o \ + $(B)/client/cl_avi.o \ \ $(B)/client/cm_load.o \ $(B)/client/cm_patch.o \ @@ -908,6 +909,7 @@ $(B)/client/cl_net_chan.o : $(CDIR)/cl_net_chan.c; $(DO_CC) $(B)/client/cl_parse.o : $(CDIR)/cl_parse.c; $(DO_CC) $(B)/client/cl_scrn.o : $(CDIR)/cl_scrn.c; $(DO_CC) $(B)/client/cl_ui.o : $(CDIR)/cl_ui.c; $(DO_CC) +$(B)/client/cl_avi.o : $(CDIR)/cl_avi.c; $(DO_CC) $(B)/client/snd_adpcm.o : $(CDIR)/snd_adpcm.c; $(DO_CC) $(B)/client/snd_dma.o : $(CDIR)/snd_dma.c; $(DO_CC) $(B)/client/snd_mem.o : $(CDIR)/snd_mem.c; $(DO_CC) |