diff options
author | Martin Storsjö <martin@martin.st> | 2010-10-16 08:50:50 +0000 |
---|---|---|
committer | Martin Storsjö <martin@martin.st> | 2010-10-16 08:50:50 +0000 |
commit | fb66c31da43062e7e31d146803fba6d106188d39 (patch) | |
tree | 401d1e62abe9bd453c71927d706753865da57602 | |
parent | 96d1e75a0cfc2323f6b9a9519eba27b924fcad95 (diff) | |
download | ffmpeg-fb66c31da43062e7e31d146803fba6d106188d39.tar.gz |
Fix building, include the header instead of the source file
Builds only seemed to have been broken in some configurations, though.
Originally committed as revision 25499 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r-- | libavformat/oggparsevorbis.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/oggparsevorbis.c b/libavformat/oggparsevorbis.c index 9f873934c4..ab6c6c74d8 100644 --- a/libavformat/oggparsevorbis.c +++ b/libavformat/oggparsevorbis.c @@ -29,7 +29,7 @@ #include "libavcodec/bytestream.h" #include "avformat.h" #include "oggdec.h" -#include "vorbiscomment.c" +#include "vorbiscomment.h" static int ogm_chapter(AVFormatContext *as, uint8_t *key, uint8_t *val) { |