Mercurial > mplayer.hg
view drivers/radeon/Makefile @ 7663:eb3afb162aa4
* Fix for the broken MultiDec files I had originally posted with the
first version of the demuxer. They play ok now. Fix can be disabled
through conditional compiling, so just comment out the #define directive
if it breaks anything (see source).
* Demuxer now honours audio/video ids. Since PVAs only contain one audio
track and one video track by specification, they are vid 0 and aid 0.
This also fixes the "too many audio/video packets in buffer" with
-dump[audio|video].
* substituted longs with off_t's for offsets, so that it should work on
large files.
patch by Matteo Giani <matgiani@ctonet.it>
author | arpi |
---|---|
date | Mon, 07 Oct 2002 22:13:34 +0000 |
parents | b69ddd4d3bb9 |
children | ce1ba8fd57e7 |
line wrap: on
line source
KERNEL_INCLUDES = /usr/src/linux/include INCLUDES = -I$(KERNEL_INCLUDES) # auto install CONFIG_SHELL=/bin/sh -c KERNEL_VERSION=$(shell $(CONFIG_SHELL) 'uname -r') MOD_PATH_PREFIX= MOD_PATH=$(MOD_PATH_PREFIX)/lib/modules/$(KERNEL_VERSION)/kernel/drivers/video/ # # standard CFLAGS # CPPFLAGS := -D__KERNEL__ -I$(KERNEL_INCLUDES) CFLAGS := $(CPPFLAGS) -O2 \ -fomit-frame-pointer -fno-strict-aliasing -fno-common -ffast-math\ -D__KERNEL__ -DMODULE -include $(KERNEL_INCLUDES)/linux/modversions.h AFLAGS := -D__ASSEMBLY__ $(CPPFLAGS) all: radeonfb.o radeon_vid.o rage128_vid.o radeonfb.o: radeonfb.c radeon.h $(CC) $(CFLAGS) $(INCLUDES) -c $(basename $@).c radeon_vid.o: radeon_vid.c radeon.h radeon_vid.h $(CC) $(CFLAGS) $(INCLUDES) -c $(basename $@).c rage128_vid.o: radeon_vid.c radeon.h radeon_vid.h $(CC) $(CFLAGS) -DRAGE128 $(INCLUDES) -c radeon_vid.c -o $@ dep: clean: rm -f *.o *~ install: mkdir -p $(MOD_PATH) cp radeonfb.o $(MOD_PATH) cp radeon_vid.o $(MOD_PATH) cp rage128_vid.o $(MOD_PATH) depmod -a nodes: mknod /dev/radeon_vid c 178 0 ln -s /dev/radeon_vid /dev/rage128_vid # Stuff below is for me only ;) vid: make install rmmod radeon_vid modprobe radeon_vid mtrr=1