diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2014-07-26 15:22:27 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2014-07-27 17:21:40 +0200 |
commit | 932ff7095696a90fda83a8c6343b57f475b40951 (patch) | |
tree | 68517b6769c00d8956692a0b7f1b11cb5cbf007d /libavcodec/Makefile | |
parent | fbeb634e4dda69cd1b8554d20030b6946d52be02 (diff) | |
download | ffmpeg-932ff7095696a90fda83a8c6343b57f475b40951.tar.gz |
avcodec: add avdct
This provides a public sustainable API/ABI for DCT functions.
Only externally used dct functions are included.
The structure is extensible without ABI issues compared to the
existing dct contexts.
See Mailing list and IRC log of 2014-07-26/27
Reviewed-by: ubitux
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavcodec/Makefile')
-rw-r--r-- | libavcodec/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavcodec/Makefile b/libavcodec/Makefile index c3e4f5d1c2..814d43f834 100644 --- a/libavcodec/Makefile +++ b/libavcodec/Makefile @@ -15,6 +15,7 @@ HEADERS = avcodec.h \ OBJS = allcodecs.o \ audioconvert.o \ + avdct.o \ avpacket.o \ avpicture.o \ bitstream.o \ |