diff --git a/src/zm_rtp_source.cpp b/src/zm_rtp_source.cpp index 0aecd0332..608e529d5 100644 --- a/src/zm_rtp_source.cpp +++ b/src/zm_rtp_source.cpp @@ -24,6 +24,8 @@ #include +#if HAVE_LIBAVCODEC + #if LIBAVCODEC_VERSION_INT >= AV_VERSION_INT(54,25,0) #define _AVCODECID AVCodecID #else @@ -385,4 +387,6 @@ bool RtpSource::getFrame( Buffer &buffer ) return( true ); } -#undef _AVCODECID \ No newline at end of file +#undef _AVCODECID + +#endif // HAVE_LIBAVCODEC diff --git a/src/zm_rtp_source.h b/src/zm_rtp_source.h index 8d1f7da4f..b8a879565 100644 --- a/src/zm_rtp_source.h +++ b/src/zm_rtp_source.h @@ -28,6 +28,8 @@ #include #include +#if HAVE_LIBAVCODEC + #if LIBAVCODEC_VERSION_INT >= AV_VERSION_INT(54,25,0) #define _AVCODECID AVCodecID #else @@ -189,4 +191,6 @@ public: #undef _AVCODECID +#endif // HAVE_LIBAVCODEC + #endif // ZM_RTP_SOURCE_H