Quoting Vittorio Giovara (2015-07-07 13:12:36)
> Signed-off-by: Vittorio Giovara <[email protected]>
> ---
> I'll change the hashes correctly when pushing.
> Vittorio
> 
>  doc/APIchanges       | 5 +++++
>  libavcodec/avcodec.h | 4 ++++
>  libavcodec/version.h | 7 +++++--
>  3 files changed, 14 insertions(+), 2 deletions(-)
> 
> diff --git a/doc/APIchanges b/doc/APIchanges
> index a2c5eb05..cebd722 100644
> --- a/doc/APIchanges
> +++ b/doc/APIchanges
> @@ -13,6 +13,11 @@ libavutil:     2014-08-09
>  
>  API changes, most recent first:
>  
> +2015-xx-xx - lavc 56.33.0 - avcodec.h
> +  ce7590eef - Rename CODEC_FLAG* defines to AV_CODEC_FLAG*.
> +  7b6bd4b42 - Rename CODEC_CAP_* defines to AV_CODEC_CAP_*.
> +  ccb25a96e - Rename input buffer defines to AV-prefixed versions.

I think I mentioned this before -- mention the renamed symbols by name
(at least partial), so it can be grepped for.
> +
>  2015-xx-xx - xxxxxxx - lavu 56.15.0
>    Add av_version_info().
>  
> diff --git a/libavcodec/avcodec.h b/libavcodec/avcodec.h
> index 1c524f8..5fa9bcc 100644
> --- a/libavcodec/avcodec.h
> +++ b/libavcodec/avcodec.h
> @@ -544,6 +544,7 @@ typedef struct AVCodecDescriptor {
>   */
>  #define AV_INPUT_BUFFER_MIN_SIZE 16384
>  
> +#if FF_API_WITHOUT_PREFIX
>  /**
>   * @deprecated use AV_INPUT_BUFFER_PADDING_SIZE instead
>   */
> @@ -553,6 +554,7 @@ typedef struct AVCodecDescriptor {
>   * @deprecated use AV_INPUT_BUFFER_MIN_SIZE instead
>   */
>  #define FF_MIN_BUFFER_SIZE 16384
> +#endif /* FF_API_WITHOUT_PREFIX */
>  
>  /**
>   * @ingroup lavc_encoding
> @@ -806,6 +808,7 @@ typedef struct RcOverride{
>   */
>  #define AV_CODEC_CAP_VARIABLE_FRAME_SIZE (1 << 16)
>  
> +#if FF_API_WITHOUT_PREFIX
>  /**
>   * Allow decoders to produce frames with data planes that are not aligned
>   * to CPU requirements (e.g. due to cropping).
> @@ -972,6 +975,7 @@ typedef struct RcOverride{
>   * Audio encoder supports receiving a different number of samples in each 
> call.
>   */
>  #define CODEC_CAP_VARIABLE_FRAME_SIZE 0x10000
> +#endif /* FF_API_WITHOUT_PREFIX */
>  
>  #if FF_API_MB_TYPE
>  //The following defines may change, don't expect compatibility if you use 
> them.
> diff --git a/libavcodec/version.h b/libavcodec/version.h
> index a0a2098..4cffa31 100644
> --- a/libavcodec/version.h
> +++ b/libavcodec/version.h
> @@ -29,8 +29,8 @@
>  #include "libavutil/version.h"
>  
>  #define LIBAVCODEC_VERSION_MAJOR 56
> -#define LIBAVCODEC_VERSION_MINOR 31
> -#define LIBAVCODEC_VERSION_MICRO  3
> +#define LIBAVCODEC_VERSION_MINOR 33

Double bump?

Also, I think the commit message should mention that this commit also
deprecates all the old stuff.

-- 
Anton Khirnov
_______________________________________________
libav-devel mailing list
[email protected]
https://lists.libav.org/mailman/listinfo/libav-devel

Reply via email to