mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-11-21 10:55:51 +02:00
d63e456a2a
av_get_sample_fmt_name() av_get_sample_fmt() av_get_sample_fmt_string() in libavcore, and deprecate the corresponding libavcodec/audioconvert.h functions: avcodec_get_sample_fmt_name() avcodec_get_sample_fmt() avcodec_sample_fmt_string() Originally committed as revision 25653 to svn://svn.ffmpeg.org/ffmpeg/trunk
17 lines
688 B
Makefile
17 lines
688 B
Makefile
include $(SUBDIR)../config.mak
|
|
|
|
NAME = avcore
|
|
FFLIBS = avutil
|
|
|
|
HEADERS = avcore.h \
|
|
imgutils.h \
|
|
parseutils.h \
|
|
samplefmt.h \
|
|
|
|
OBJS = imgutils.o \
|
|
parseutils.o \
|
|
samplefmt.o \
|
|
utils.o \
|
|
|
|
include $(SUBDIR)../subdir.mak
|