annotate Makefile @ 8:f214f755f5de libavcore

Move fill_image_linesize() and fill_image_data_ptr() from libavcodec/imgconvert.c and make them public in libavcore/imgutils.h, with the names av_fill_image_linesizes() and av_fill_image_pointers().
author stefano
date Thu, 29 Jul 2010 23:44:57 +0000
parents a5655c1f889e
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