Mercurial > mplayer.hg
view drivers/Makefile @ 10917:d45870f67728
Forced subtitles patch by Arne Driescher <driescher@mpi-magdeburg.mpg.de>
For a given subtitle language you can now chose to display
only the forced subtitles. Defaut is set to "show all subtitles"
so that current mplayer behaviour is not changed.
For DVD:
Use -forced_subs_only additionally to e.g. -slang en
if you are only interested in the forced subtitles.
For VobSub:
The idx file is now parsed for the "forced subs: ON/OFF" tag
and used according to its settings.
Key:
You can toggle the display of forced subtitles by pressing
"F" (upper case letter).
author | attila |
---|---|
date | Sun, 21 Sep 2003 14:21:43 +0000 |
parents | d1bbeae9f46a |
children | e2fa87f416a2 |
line wrap: on
line source
KERNEL_INCLUDES = /usr/src/linux/include INCLUDES = -I$(KERNEL_INCLUDES) CFLAGS = -O2 -D__KERNEL__ -DMODULE -include $(KERNEL_INCLUDES)/linux/modversions.h -Wall VERSION = $(shell grep UTS_RELEASE $(KERNEL_INCLUDES)/linux/version.h | cut -d '"' -f2) MDIR = /lib/modules/$(VERSION)/misc all: mga_vid.o mga_vid_test # sis_vid.o mga_vid.o: mga_vid.c mga_vid.h $(CC) $(CFLAGS) $(INCLUDES) -c $(basename $@).c sis_vid.o: sis_vid.c sis_vid.h $(CC) $(CFLAGS) $(INCLUDES) -c $(basename $@).c mga_vid_test: mga_vid_test.c $(CC) -O $(INCLUDES) -o $@ $@.c tdfx_vid.o: tdfx_vid.c 3dfx.h $(CC) $(CFLAGS) $(INCLUDES) -c $(basename $@).c tdfx_vid_tst: tdfx_vid_tst.c $(CC) -O $(INCLUDES) -o $@ $@.c install: mga_vid.o if test ! -d $(MDIR) ; then mkdir -p $(MDIR) ; fi install -m 644 mga_vid.o $(MDIR)/mga_vid.o depmod -a dep: clean: rm -f *.o *~ distclean: clean rm -f mga_vid_test