Le nonidi 29 frimaire, an CCXXIII, Michael Niedermayer a écrit :
> +#include "libavutil/ffversion.h"
> +char *av_codec_ffversion = "FFmpeg version " FFMPEG_VERSION;

This defines two variables: a pointer, and an anonymous const array of chars
containing the string. Only the second one is needed, so I suggest:

const char av_codec_ffversion[] = ...;

Regards,

-- 
  Nicolas George

Attachment: signature.asc
Description: Digital signature

_______________________________________________
ffmpeg-devel mailing list
ffmpeg-devel@ffmpeg.org
http://ffmpeg.org/mailman/listinfo/ffmpeg-devel

Reply via email to