diff options
author | Diego Biurrun <diego@biurrun.de> | 2009-10-19 22:36:57 +0000 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2009-10-19 22:36:57 +0000 |
commit | ff06d76acdc83aa582b7826358e788e23dd7ca28 (patch) | |
tree | 45a621f9f653f0c0efcc837daebc3f2159424ab5 /libavformat/mp3.c | |
parent | cd69fa69c515117e06d8db1106cff04f5365e4e4 (diff) | |
download | ffmpeg-ff06d76acdc83aa582b7826358e788e23dd7ca28.tar.gz |
Add '#include "libavutil/intreadwrite.h"', necessary for AV_RB32.
This fixes the build with demuxers disabled.
Originally committed as revision 20327 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/mp3.c')
-rw-r--r-- | libavformat/mp3.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavformat/mp3.c b/libavformat/mp3.c index 5b5e06d04f..2b493e2459 100644 --- a/libavformat/mp3.c +++ b/libavformat/mp3.c @@ -21,6 +21,7 @@ #include <strings.h> #include "libavutil/avstring.h" +#include "libavutil/intreadwrite.h" #include "avformat.h" #include "id3v2.h" #include "id3v1.h" |