summaryrefslogtreecommitdiff
path: root/doc/examples/Makefile
diff options
context:
space:
mode:
authorStefano Sabatini <stefasab@gmail.com>2012-08-21 14:43:51 +0200
committerStefano Sabatini <stefasab@gmail.com>2012-08-28 20:09:37 +0200
commit74419fcf45359a9afc5a26b340ffb41d0edb746c (patch)
tree0b3ffcaf97e76172f47e9bb6a5506e36a6fcad09 /doc/examples/Makefile
parent316afee708047a04af0192cd0555dec5a9821050 (diff)
examples: add scaling_video example
This example should be useful to show the basic functionality of the libswscale API. More advanced features (scaling options etc., colorspace tweaking) may be added later.
Diffstat (limited to 'doc/examples/Makefile')
-rw-r--r--doc/examples/Makefile3
1 files changed, 2 insertions, 1 deletions
diff --git a/doc/examples/Makefile b/doc/examples/Makefile
index 5ef0f7bf1f..94db3836ac 100644
--- a/doc/examples/Makefile
+++ b/doc/examples/Makefile
@@ -16,6 +16,7 @@ EXAMPLES= decoding_encoding \
filtering_audio \
metadata \
muxing \
+ scaling_video \
OBJS=$(addsuffix .o,$(EXAMPLES))
@@ -28,7 +29,7 @@ muxing: LDLIBS += -lm
all: $(OBJS) $(EXAMPLES)
clean-test:
- $(RM) -f test*.pgm test.h264 test.mp2 test.sw test.mpg
+ $(RM) -f test*.pgm test.h264 test.mp2 test.sw test.mpg outscale*.pgm
clean: clean-test
$(RM) -f $(EXAMPLES) $(OBJS)