diff options
author | Diego Biurrun <diego@biurrun.de> | 2009-02-02 23:13:18 +0000 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2009-02-02 23:13:18 +0000 |
commit | 0d08e27015fc33b974d1c62626a4415d4de0872b (patch) | |
tree | 11612500c9275b192c3969a9aaeb919f4095f503 /libavutil/lzo.c | |
parent | da61e4136ab9d70ac6e851f32dde205c669b9a74 (diff) | |
download | ffmpeg-0d08e27015fc33b974d1c62626a4415d4de0872b.tar.gz |
Add necessary header for LIBAVUTIL_VERSION_MAJOR, fixes the warning:
libavutil/lzo.c:235:5: warning: "LIBAVUTIL_VERSION_MAJOR" is not defined
Originally committed as revision 16962 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavutil/lzo.c')
-rw-r--r-- | libavutil/lzo.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libavutil/lzo.c b/libavutil/lzo.c index 02d7bbfb0b..83fa9bfbaf 100644 --- a/libavutil/lzo.c +++ b/libavutil/lzo.c @@ -18,6 +18,8 @@ * License along with FFmpeg; if not, write to the Free Software * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA */ + +#include "avutil.h" #include "common.h" //! Avoid e.g. MPlayers fast_memcpy, it slows things down here. #undef memcpy |