[FFmpeg-cvslog] r20547 - in trunk: configure libavcodec/avcodec.h libavcodec/utils.c libavdevice/avdevice.c libavdevice/avdevice.h libavfilter/avfilter.c libavfilter/avfilter.h libavformat/avformat.h libavformat/u...
Stefano Sabatini
stefano.sabatini-lala
Wed Nov 18 21:13:26 CET 2009
On date Wednesday 2009-11-18 18:15:17 +0100, diego wrote:
> Author: diego
> Date: Wed Nov 18 18:15:17 2009
> New Revision: 20547
>
> Log:
> Add functions to return library license and library configuration.
[...]
> Modified: trunk/libavcodec/avcodec.h
> ==============================================================================
> --- trunk/libavcodec/avcodec.h Wed Nov 18 18:01:25 2009 (r20546)
> +++ trunk/libavcodec/avcodec.h Wed Nov 18 18:15:17 2009 (r20547)
> @@ -3067,6 +3067,16 @@ AVCodec *av_codec_next(AVCodec *c);
> unsigned avcodec_version(void);
>
> /**
> + * Returns the libavcodec build-time configuration.
> + */
> +const char * avcodec_configuration(void);
> +
> +/**
> + * Returns the libavcodec license.
> + */
> +const char * avcodec_license(void);
These are the only points in libav* where "*" is not attached to the
function name, I personally would prefer:
const char *avcodec_license(void);
here and everywhere.
[...]
Regards.
More information about the ffmpeg-cvslog
mailing list