From 0ac7529817ffcf3c1d708cb8b778aabcd31cbded Mon Sep 17 00:00:00 2001 From: Benjamin Franzke Date: Wed, 14 Nov 2012 13:35:51 +0100 Subject: advtime: Disable DEBUG for video_decode --- src/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/Makefile') diff --git a/src/Makefile b/src/Makefile index b5a6901..43087cb 100644 --- a/src/Makefile +++ b/src/Makefile @@ -4,7 +4,7 @@ LIBAV_DECODE_FLAGS=`pkg-config --libs --cflags libavformat libavcodec libavutil all: advtime decode_frame frame_to_pgm advtime: advtime.c video_decode.c - gcc $(CFLAGS) $(LIBAV_DECODE_FLAGS) advtime.c video_decode.c -o $@ + gcc $(CFLAGS) $(LIBAV_DECODE_FLAGS) -DDEBUG=0 advtime.c video_decode.c -o $@ decode_frame: decode_frame.c gcc $(CFLAGS) $(LIBAV_DECODE_FLAGS) decode_frame.c -o $@ -- cgit