changeset 21944:0e746e1646bc

include the right riff.h according to USE_LIBAVFORMAT_SO|USE_LIBAVFORMAT; please stop breaking code that uses *_SO
author nicodvb
date Fri, 19 Jan 2007 01:19:02 +0000
parents 4f470e2df105
children fb4bb5aed0cf
files libmpcodecs/ae_lavc.c
diffstat 1 files changed, 2 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/libmpcodecs/ae_lavc.c	Thu Jan 18 21:53:05 2007 +0000
+++ b/libmpcodecs/ae_lavc.c	Fri Jan 19 01:19:02 2007 +0000
@@ -31,10 +31,11 @@
 #if defined(USE_LIBAVFORMAT) ||  defined(USE_LIBAVFORMAT_SO)
 #ifdef USE_LIBAVFORMAT_SO
 #include <ffmpeg/avformat.h>
+#include <ffmpeg/riff.h>
 #else
 #include "libavformat/avformat.h"
+#include "libavformat/riff.h"
 #endif
-#include "libavformat/riff.h"
 extern const CodecTag mp_wav_tags[];
 #endif