diff options
author | Ronald S. Bultje <rsbultje@gmail.com> | 2011-05-20 14:56:44 -0400 |
---|---|---|
committer | Ronald S. Bultje <rsbultje@gmail.com> | 2011-05-20 15:28:29 -0400 |
commit | 03c804e1ed65f52fd99020e1777103f4fb7abf15 (patch) | |
tree | 7813fd1a7a9a0d42d7ab50cea7868273d1498af0 | |
parent | a1d0dcc7134f1401c682b5e13d4ab3864da21efb (diff) | |
download | ffmpeg-03c804e1ed65f52fd99020e1777103f4fb7abf15.tar.gz |
mp3lame: add #include required for AV_RB32 macro.
Fixes compilation with mp3lame enabled.
-rw-r--r-- | libavcodec/libmp3lame.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavcodec/libmp3lame.c b/libavcodec/libmp3lame.c index 62b55c9337..68f1bc9e2b 100644 --- a/libavcodec/libmp3lame.c +++ b/libavcodec/libmp3lame.c @@ -24,6 +24,7 @@ * Interface to libmp3lame for mp3 encoding. */ +#include "libavutil/intreadwrite.h" #include "avcodec.h" #include "mpegaudio.h" #include <lame/lame.h> |