Package: linphone Version: 3.6.1-2.3 Severity: serious Dear Maintainer,
your package FTBFS against libav11 currently in experimental: CC videofilters/nowebcam.lo In file included from voip/msvideo.c:23:0: ../src/utils/ffmpeg-priv.h:73:38: fatal error: libavcodec/old_codec_ids.h: No such file or directory #include <libavcodec/old_codec_ids.h> ^ compilation terminated. CC voip/videostream.lo CC base/mscommon.lo In file included from videofilters/nowebcam.c:33:0: ../src/utils/ffmpeg-priv.h:73:38: fatal error: libavcodec/old_codec_ids.h: No such file or directory #include <libavcodec/old_codec_ids.h> ^ compilation terminated. make[6]: *** [voip/msvideo.lo] Error 1 The attached patch fixes the compilation for me. Please upload it at your earliest convenience. Thanks! -- regards, Reinhard
--- a/mediastreamer2/src/utils/ffmpeg-priv.h +++ b/mediastreamer2/src/utils/ffmpeg-priv.h @@ -69,9 +69,6 @@ static inline int avcodec_decode_video2( return avcodec_decode_video(avctx,picture, got_picture_ptr,avpkt->data,avpkt->size); } #endif -#if (LIBAVCODEC_VERSION_MAJOR >= 56) -#include <libavcodec/old_codec_ids.h> -#endif #if LIBAVCODEC_VERSION_INT >= AV_VERSION_INT(54,25,0) #define CodecID AVCodecID #endif