Mercurial > mplayer.hg
view libmpdemux/Makefile @ 2336:b2e0b131c1a7
Again changed logic:
-screenw, -screenh - force user video mode
-x, -y - force userdefined prescaling
-bpp - forces userdefined bpp
-zoom - enables prescaling (-x, -y)
-fs - scales image to fullscreen (same as ATI's divx/dvd player)
-zoom -fs - (together) scales userdefined prescaling to fullscreen
So full command line should be:
mplayer -vo vesa -screenw WWW -screenh HHH -bpp BPP -x XXX -y YYY -zoom -fs filename
And you will be able to watch movies in 16:9 format with bold black
border at top and bottom of screen.
author | nick |
---|---|
date | Sun, 21 Oct 2001 14:30:36 +0000 |
parents | e22ec6fce385 |
children | 451426046a14 |
line wrap: on
line source
LIBNAME = libmpdemux.a include ../config.mak SRCS = cache2.c asfheader.c aviheader.c aviprint.c aviwrite.c demux_asf.c demux_avi.c demux_mov.c demux_mpg.c demuxer.c dvdauth.c open.c parse_es.c stream.c ifeq ($(STREAMING),yes) SRCS += asf_streaming.c url.c http.c network.c endif OBJS = $(SRCS:.c=.o) INCLUDE = -I../loader $(EXTRA_INC) CFLAGS = $(OPTFLAGS) $(INCLUDE) .SUFFIXES: .c .o # .PHONY: all clean all: $(LIBNAME) .c.o: $(CC) -c $(CFLAGS) -o $@ $< $(LIBNAME): $(OBJS) $(AR) r $(LIBNAME) $(OBJS) test: $(LIBNAME) test.c $(CC) $(CFLAGS) test.c ../mp_msg.c ../linux/shmem.c -o test -L. -lmpdemux -ldvdread -lz -lpthread clean: rm -f *.o *.a *~ distclean: rm -f test Makefile.bak *.o *.a *~ .depend dep: depend depend: $(CC) -MM $(CFLAGS) test.c $(SRCS) 1>.depend # # include dependency files if they exist # ifneq ($(wildcard .depend),) include .depend endif