Mercurial > mplayer.hg
view vidix/dhahelperwin/Makefile @ 26037:bee99864f397
New member in demuxer_t: reference_clock.
If it's != MP_NOPTS_VALUE ds_fill_buffer() will keep
on demuxing until the pts of the next_pts is <= reference_clock.
It guarantees the compliance with the buffering model indicated
by the transmitter of the multiplex and a long-time stability
of playback (at least for me).
In any case up to a maximum of 64 packets are accumulated to prevent
memory hogging and leaks.
author | nicodvb |
---|---|
date | Sat, 23 Feb 2008 10:31:44 +0000 |
parents | a5dd78186fdc |
children | f50aa0c7c335 |
line wrap: on
line source
include ../../config.mak all: dhasetup.exe dhahelper.sys dhasetup.exe: dhasetup.c $(CC) -o $@ $< dhahelper.o: dhahelper.c dhahelper.h $(CC) -Wall -Os -c $< -o $@ dhahelper-rc.o: dhahelper.rc common.ver ntverp.h $(WINDRES) -I. $< $@ base.tmp: dhahelper.o dhahelper-rc.o $(CC) -Wl,--base-file,$@ \ -Wl,--entry,_DriverEntry@8 \ -nostartfiles -nostdlib \ -o junk.tmp $^ -lntoskrnl -rm -f junk.tmp temp.exp: base.tmp dlltool --dllname dhahelper.sys --base-file $< --output-exp $@ dhahelper.sys: temp.exp dhahelper.o dhahelper-rc.o $(CC) -Wl,--subsystem,native \ -Wl,--image-base,0x10000 \ -Wl,--file-alignment,0x1000 \ -Wl,--section-alignment,0x1000 \ -Wl,--entry,_DriverEntry@8 \ -Wl,$< \ -mdll -nostartfiles -nostdlib \ -o $@ dhahelper.o dhahelper-rc.o \ -lntoskrnl strip $@ clean: rm -f *.o *~ dhahelper.sys dhasetup.exe base.tmp temp.exp distclean: clean .PHONY: all clean distclean