annotate Makefile @ 11:dabaa2056109 libavcore

Reimplement av_fill_image_pointers() using the information stored in the pixdescs. The new implementation is more compact, and does not need to be updated at each pixel format addition.
author stefano
date Fri, 30 Jul 2010 08:42:19 +0000
parents f214f755f5de
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
a644213e4818 Add libavcore.
stefano
parents:
diff changeset
1 include $(SUBDIR)../config.mak
a644213e4818 Add libavcore.
stefano
parents:
diff changeset
2
a644213e4818 Add libavcore.
stefano
parents:
diff changeset
3 NAME = avcore
6
a5655c1f889e libavcore needs libavutil
mru
parents: 1
diff changeset
4 FFLIBS = avutil
0
a644213e4818 Add libavcore.
stefano
parents:
diff changeset
5
a644213e4818 Add libavcore.
stefano
parents:
diff changeset
6 HEADERS = avcore.h \
8
f214f755f5de Move fill_image_linesize() and fill_image_data_ptr() from
stefano
parents: 6
diff changeset
7 imgutils.h \
1
d2641c727ec5 Deprecate av_parse_video_frame_size() and av_parse_video_frame_rate()
stefano
parents: 0
diff changeset
8 parseutils.h \
0
a644213e4818 Add libavcore.
stefano
parents:
diff changeset
9
8
f214f755f5de Move fill_image_linesize() and fill_image_data_ptr() from
stefano
parents: 6
diff changeset
10 OBJS = imgutils.o \
f214f755f5de Move fill_image_linesize() and fill_image_data_ptr() from
stefano
parents: 6
diff changeset
11 parseutils.o \
1
d2641c727ec5 Deprecate av_parse_video_frame_size() and av_parse_video_frame_rate()
stefano
parents: 0
diff changeset
12 utils.o \
0
a644213e4818 Add libavcore.
stefano
parents:
diff changeset
13
a644213e4818 Add libavcore.
stefano
parents:
diff changeset
14 include $(SUBDIR)../subdir.mak