diff options
author | Diego Biurrun <diego@biurrun.de> | 2009-09-18 19:51:05 +0000 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2009-09-18 19:51:05 +0000 |
commit | e9b733bd894c79854ba7d938c87954898c5770f0 (patch) | |
tree | 4d2e3e9cec343e0ae57b799fbe861073d3f161c2 | |
parent | d773d8551500a8e71b1dc3617f96bde45b3b6256 (diff) | |
download | ffmpeg-e9b733bd894c79854ba7d938c87954898c5770f0.tar.gz |
#include correct header to fix 'make checkheaders'.
AVCodecTag is declared in riff.h, not avformat.h.
Originally committed as revision 19915 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r-- | libavformat/caf.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/caf.h b/libavformat/caf.h index 43f3d96de6..e83378ed75 100644 --- a/libavformat/caf.h +++ b/libavformat/caf.h @@ -27,7 +27,7 @@ #ifndef AVFORMAT_CAF_H #define AVFORMAT_CAF_H -#include "avformat.h" +#include "riff.h" extern const AVCodecTag ff_codec_caf_tags[]; |