diff options
author | Paul B Mahol <onemda@gmail.com> | 2012-01-29 20:09:22 +0000 |
---|---|---|
committer | Anton Khirnov <anton@khirnov.net> | 2012-01-30 07:41:31 +0100 |
commit | 8b933129b932f523a746e921a0a20b8dd8816971 (patch) | |
tree | cc17060d24d431408a3e608ed52f3984609c4611 /libavutil | |
parent | 420df8b7c414cfd0cae29930344889651825f9d0 (diff) | |
download | ffmpeg-8b933129b932f523a746e921a0a20b8dd8816971.tar.gz |
avutil: make intfloat api public
The functions are already av_ prefixed and intfloat header is already provided.
Install libavutil/intfloat.h
Signed-off-by: Paul B Mahol <onemda@gmail.com>
Signed-off-by: Anton Khirnov <anton@khirnov.net>
Diffstat (limited to 'libavutil')
-rw-r--r-- | libavutil/Makefile | 1 | ||||
-rw-r--r-- | libavutil/avutil.h | 2 |
2 files changed, 2 insertions, 1 deletions
diff --git a/libavutil/Makefile b/libavutil/Makefile index 63d848a343..626b60aa92 100644 --- a/libavutil/Makefile +++ b/libavutil/Makefile @@ -17,6 +17,7 @@ HEADERS = adler32.h \ fifo.h \ file.h \ imgutils.h \ + intfloat.h \ intfloat_readwrite.h \ intreadwrite.h \ lfg.h \ diff --git a/libavutil/avutil.h b/libavutil/avutil.h index f0be5c110a..0e62b4a13f 100644 --- a/libavutil/avutil.h +++ b/libavutil/avutil.h @@ -154,7 +154,7 @@ */ #define LIBAVUTIL_VERSION_MAJOR 51 -#define LIBAVUTIL_VERSION_MINOR 21 +#define LIBAVUTIL_VERSION_MINOR 22 #define LIBAVUTIL_VERSION_MICRO 0 #define LIBAVUTIL_VERSION_INT AV_VERSION_INT(LIBAVUTIL_VERSION_MAJOR, \ |