Mercurial > mplayer.hg
view libass/Makefile @ 19165:7e4f5f62703d
-vf pp7 overblurs still parts of the image, which
have qp=1, and qp becomes zero after the >> 1. Modifying the threshold
table for qp=0 so it copies the qp=1 case seems to fix the problem.
Patch by Jindrich Makovicka % makovick AH gmail P com %
Original thread:
Date: Jul 22, 2006 2:55 PM
Subject: [MPlayer-dev-eng] [PATCH] -vf pp7 artifacting in still MPEG2 images
author | gpoirier |
---|---|
date | Sun, 23 Jul 2006 13:38:20 +0000 |
parents | 7a9a9748e045 |
children | 1ea5c31932fd |
line wrap: on
line source
include ../config.mak LIBNAME=libass.a LIBS=$(LIBNAME) SRCS=ass.c ass_cache.c ass_fontconfig.c ass_render.c ass_utils.c ass_mp.c OBJS=$(SRCS:.c=.o) CFLAGS = $(OPTFLAGS) \ -I. -I.. \ -I../libmpcodecs \ -D_GNU_SOURCE \ $(FREETYPE_INC) \ $(FONTCONFIG_INC) \ .SUFFIXES: .c .o # .PHONY: all clean .c.o: $(CC) -c $(CFLAGS) -o $@ $< all: $(LIBS) $(LIBNAME): $(OBJS) $(AR) r $(LIBNAME) $(OBJS) $(RANLIB) $(LIBNAME) clean: rm -f *.o *.a *~ distclean: clean rm -f .depend dep: depend depend: $(CC) -MM $(CFLAGS) $(SRCS) 1>.depend # # include dependency files if they exist # ifneq ($(wildcard .depend),) include .depend endif