diff options
author | Måns Rullgård <mans@mansr.com> | 2009-01-12 00:07:40 +0000 |
---|---|---|
committer | Måns Rullgård <mans@mansr.com> | 2009-01-12 00:07:40 +0000 |
commit | 7b114c0925f1b22a5f73c5b6d68fb7369352fec8 (patch) | |
tree | 65cab3471f1d69ea3e8f0c1231a7082840a9f9ec /libavformat/avidec.c | |
parent | a8e286982097d394877fc38116bb243086d4d066 (diff) | |
download | ffmpeg-7b114c0925f1b22a5f73c5b6d68fb7369352fec8.tar.gz |
AVI: add bswap.h include needed on big endian
Originally committed as revision 16564 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/avidec.c')
-rw-r--r-- | libavformat/avidec.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libavformat/avidec.c b/libavformat/avidec.c index 14f0ebdec5..c25a7941db 100644 --- a/libavformat/avidec.c +++ b/libavformat/avidec.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 "libavutil/bswap.h" #include "avformat.h" #include "avi.h" #include "dv.h" |