Hi Samuel, Thanks for the patch. I committed this in r3691 (ticket #1320: http://trac.pjsip.org/repos/ticket/1320). Best regards, Ming On Tue, Aug 2, 2011 at 6:03 AM, Samuel Vinson <samuelv at laposte.net> wrote: > Hello, > > Sometimes the configure script doesn't find the presence of libraries. > For libavcodec, libavformat and libswscale, I submit the following lines for > aconfigure.ac > > ? ?AC_CHECK_LIB(avcodec, > ? ? ? ? ? avcodec_init, > ? ? ? ? ? [ac_ffmpeg_cflags="$ac_ffmpeg_cflags -DPJMEDIA_HAS_LIBAVCODEC=1" > ? ? ? ? ? ?ac_ffmpeg_ldflags="$ac_ffmpeg_ldflags -lavcodec" > ? ? ? ? ? ], > ? ? ? ? ? [], > ? ? ? ? ? [-lavutil] > ? ? ? ? ? ) > ? ? ? ?AC_CHECK_LIB(avformat, > ? ? ? ? ? ? ? ? av_register_all, > ? ? ? ? ? ? ? ? [ac_ffmpeg_cflags="$ac_ffmpeg_cflags > -DPJMEDIA_HAS_LIBAVFORMAT=1" > ? ? ? ? ? ? ? ? ?ac_ffmpeg_ldflags="$ac_ffmpeg_ldflags -lavformat" > ? ? ? ? ? ? ? ? ], > ? ? ? ? ? ? ? ? [], > ? ? ? ? ? [-lavcodec -lavutil] > ? ? ? ? ? ? ? ? ) > ? ? ? ?AC_CHECK_LIB(swscale, > ? ? ? ? ? ? ? ? sws_scale, > ? ? ? ? ? ? ? ? [ac_ffmpeg_cflags="$ac_ffmpeg_cflags > -DPJMEDIA_HAS_LIBSWSCALE=1" > ? ? ? ? ? ? ? ? ?ac_ffmpeg_ldflags="$ac_ffmpeg_ldflags -lswscale" > ? ? ? ? ? ? ? ? ], > ? ? ? ? ? ? ? ? [], > ? ? ? ? ? ? ? ? [-lavutil] > ? ? ? ? ? ? ? ? ) > > Regards > > Samuel > > _______________________________________________ > Visit our blog: http://blog.pjsip.org > > pjsip mailing list > pjsip at lists.pjsip.org > http://lists.pjsip.org/mailman/listinfo/pjsip_lists.pjsip.org >