diff options
author | Stefano Sabatini <stefano.sabatini-lala@poste.it> | 2010-12-09 17:27:33 +0000 |
---|---|---|
committer | Stefano Sabatini <stefano.sabatini-lala@poste.it> | 2010-12-09 17:27:33 +0000 |
commit | c61cdd0afb32fb6ea52d5f036d264d124e5cda7c (patch) | |
tree | dc22df59452e6e163cf81d42acf4a660f3b9acfd /libavfilter/avfilter.h | |
parent | 6d34323ee65f63084309ba05b09c8c2a0fca9924 (diff) | |
download | ffmpeg-c61cdd0afb32fb6ea52d5f036d264d124e5cda7c.tar.gz |
Move AV_NOPTS_VALUE, AV_TIME_BASE, AV_TIME_BASE_Q symbols from
libavcodec to libavcore.
Remove another compile-time dependancy of libavfilter on libavcodec.
Originally committed as revision 25923 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavfilter/avfilter.h')
-rw-r--r-- | libavfilter/avfilter.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/libavfilter/avfilter.h b/libavfilter/avfilter.h index 5d34bee1af..54cd9050f1 100644 --- a/libavfilter/avfilter.h +++ b/libavfilter/avfilter.h @@ -23,10 +23,12 @@ #define AVFILTER_AVFILTER_H #include "libavutil/avutil.h" +#include "libavcore/avcore.h" +#include "libavcore/samplefmt.h" #define LIBAVFILTER_VERSION_MAJOR 1 #define LIBAVFILTER_VERSION_MINOR 68 -#define LIBAVFILTER_VERSION_MICRO 0 +#define LIBAVFILTER_VERSION_MICRO 1 #define LIBAVFILTER_VERSION_INT AV_VERSION_INT(LIBAVFILTER_VERSION_MAJOR, \ LIBAVFILTER_VERSION_MINOR, \ @@ -37,7 +39,6 @@ #define LIBAVFILTER_BUILD LIBAVFILTER_VERSION_INT #include <stddef.h> -#include "libavcodec/avcodec.h" /** * Return the LIBAVFILTER_VERSION_INT constant. |