changeset 11410:719d696267a8

wrong include on shared lavc
author iive
date Fri, 07 Nov 2003 23:32:38 +0000
parents 77af55c1b661
children cb070e67a9c9
files mencoder.c
diffstat 1 files changed, 6 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/mencoder.c	Fri Nov 07 22:14:51 2003 +0000
+++ b/mencoder.c	Fri Nov 07 23:32:38 2003 +0000
@@ -74,7 +74,13 @@
 
 #ifdef USE_LIBAVCODEC
 // for lavc audio encoding
+
+#ifdef USE_LIBAVCODEC_SO
+#include <ffmpeg/avcodec.h>
+#else
 #include "libavcodec/avcodec.h"
+#endif
+
 static AVCodec        *lavc_acodec;
 static AVCodecContext *lavc_actx = NULL;
 extern char    *lavc_param_acodec;