[vlc-devel] [PATCH] avcodec: fix missing include

Rémi Denis-Courmont remi at remlab.net
Sun Sep 14 19:49:55 CEST 2014


Le dimanche 14 septembre 2014, 13:31:12 Tristan Matthews a écrit :
> Needed for av_freep
> ---
>  modules/codec/avcodec/avcommon_compat.h | 3 +++
>  1 file changed, 3 insertions(+)
> 
> diff --git a/modules/codec/avcodec/avcommon_compat.h
> b/modules/codec/avcodec/avcommon_compat.h index d6293d7..fb2396f 100644
> --- a/modules/codec/avcodec/avcommon_compat.h
> +++ b/modules/codec/avcodec/avcommon_compat.h
> @@ -37,6 +37,9 @@
>        (LIBAVCODEC_VERSION_MICRO >= 100 && LIBAVCODEC_VERSION_INT >=
> AV_VERSION_INT( a, d, e ) ) )
> 
>  # if (LIBAVCODEC_VERSION_INT < AV_VERSION_INT(55, 52, 0))
> +
> +#include <libavutil/mem.h>
> +
>  static inline void avcodec_free_context( AVCodecContext **ctx )
>  {
>      av_freep( ctx );

Using a #define might side-step the problem. No objections though.


-- 
Rémi Denis-Courmont
http://www.remlab.net/




More information about the vlc-devel mailing list