comparison mencoder.c @ 11410:719d696267a8

wrong include on shared lavc
author iive
date Fri, 07 Nov 2003 23:32:38 +0000
parents 3544f1823f6b
children 552ddee604c9
comparison
equal deleted inserted replaced
11409:77af55c1b661 11410:719d696267a8
72 72
73 #include "osdep/timer.h" 73 #include "osdep/timer.h"
74 74
75 #ifdef USE_LIBAVCODEC 75 #ifdef USE_LIBAVCODEC
76 // for lavc audio encoding 76 // for lavc audio encoding
77
78 #ifdef USE_LIBAVCODEC_SO
79 #include <ffmpeg/avcodec.h>
80 #else
77 #include "libavcodec/avcodec.h" 81 #include "libavcodec/avcodec.h"
82 #endif
83
78 static AVCodec *lavc_acodec; 84 static AVCodec *lavc_acodec;
79 static AVCodecContext *lavc_actx = NULL; 85 static AVCodecContext *lavc_actx = NULL;
80 extern char *lavc_param_acodec; 86 extern char *lavc_param_acodec;
81 extern int lavc_param_abitrate; 87 extern int lavc_param_abitrate;
82 extern int lavc_param_atag; 88 extern int lavc_param_atag;