diff mbox series

[FFmpeg-devel,v2] lavu/version: bump minor version for DOVI sidedata

Message ID 1587641226-25816-1-git-send-email-mypopydev@gmail.com
State Superseded
Headers show
Series [FFmpeg-devel,v2] lavu/version: bump minor version for DOVI sidedata | expand

Checks

Context Check Description
andriy/default pending
andriy/make success Make finished
andriy/make_fate success Make fate finished

Commit Message

Jun Zhao April 23, 2020, 11:27 a.m. UTC
From: Jun Zhao <barryjzhao@tencent.com>

bump minor version for DOVI sidedata, because added the dovi_meta.h
as lavu API part. Also update APIchanges.

Signed-off-by: Jun Zhao <barryjzhao@tencent.com>
---
 doc/APIchanges      | 5 +++--
 libavutil/version.h | 2 +-
 2 files changed, 4 insertions(+), 3 deletions(-)

Comments

Nicolas George April 23, 2020, 11:35 a.m. UTC | #1
Jun Zhao (12020-04-23):
> From: Jun Zhao <barryjzhao@tencent.com>
> 
> bump minor version for DOVI sidedata, because added the dovi_meta.h
> as lavu API part. Also update APIchanges.
> 
> Signed-off-by: Jun Zhao <barryjzhao@tencent.com>
> ---
>  doc/APIchanges      | 5 +++--
>  libavutil/version.h | 2 +-
>  2 files changed, 4 insertions(+), 3 deletions(-)
> 
> diff --git a/doc/APIchanges b/doc/APIchanges
> index 5aa25de..678206c 100644
> --- a/doc/APIchanges
> +++ b/doc/APIchanges
> @@ -15,8 +15,9 @@ libavutil:     2017-10-21
>  
>  API changes, most recent first:
>  
> -2020-04-22 - xxxxxxxxxx - lavc 58.81.100 - packet.h
> -  Add AV_PKT_DATA_DOVI_CONF.
> +2020-04-22 - 0e1db79e37 - lavc 58.81.100 - packet.h
> +                        - lavu 56.43.102 - dovi_meta.h
> +  Add AV_PKT_DATA_DOVI_CONF and AVDOVIDecoderConfigurationRecord.
>  
>  2020-04-15 - xxxxxxxxxx - lavc 58.79.100 - avcodec.h
>    Add formal support for calling avcodec_flush_buffers() on encoders.
> diff --git a/libavutil/version.h b/libavutil/version.h
> index 70836a5..e4fa0a9 100644
> --- a/libavutil/version.h
> +++ b/libavutil/version.h
> @@ -79,7 +79,7 @@
>   */
>  
>  #define LIBAVUTIL_VERSION_MAJOR  56
> -#define LIBAVUTIL_VERSION_MINOR  42

> +#define LIBAVUTIL_VERSION_MINOR  43
>  #define LIBAVUTIL_VERSION_MICRO 102

The micro is supposed to be reset after a minor bump.

Sorry for not having spotted it last time.

>  
>  #define LIBAVUTIL_VERSION_INT   AV_VERSION_INT(LIBAVUTIL_VERSION_MAJOR, \

Regards,
Jun Zhao April 23, 2020, 11:51 a.m. UTC | #2
On Thu, Apr 23, 2020 at 7:36 PM Nicolas George <george@nsup.org> wrote:
>
> Jun Zhao (12020-04-23):
> > From: Jun Zhao <barryjzhao@tencent.com>
> >
> > bump minor version for DOVI sidedata, because added the dovi_meta.h
> > as lavu API part. Also update APIchanges.
> >
> > Signed-off-by: Jun Zhao <barryjzhao@tencent.com>
> > ---
> >  doc/APIchanges      | 5 +++--
> >  libavutil/version.h | 2 +-
> >  2 files changed, 4 insertions(+), 3 deletions(-)
> >
> > diff --git a/doc/APIchanges b/doc/APIchanges
> > index 5aa25de..678206c 100644
> > --- a/doc/APIchanges
> > +++ b/doc/APIchanges
> > @@ -15,8 +15,9 @@ libavutil:     2017-10-21
> >
> >  API changes, most recent first:
> >
> > -2020-04-22 - xxxxxxxxxx - lavc 58.81.100 - packet.h
> > -  Add AV_PKT_DATA_DOVI_CONF.
> > +2020-04-22 - 0e1db79e37 - lavc 58.81.100 - packet.h
> > +                        - lavu 56.43.102 - dovi_meta.h
> > +  Add AV_PKT_DATA_DOVI_CONF and AVDOVIDecoderConfigurationRecord.
> >
> >  2020-04-15 - xxxxxxxxxx - lavc 58.79.100 - avcodec.h
> >    Add formal support for calling avcodec_flush_buffers() on encoders.
> > diff --git a/libavutil/version.h b/libavutil/version.h
> > index 70836a5..e4fa0a9 100644
> > --- a/libavutil/version.h
> > +++ b/libavutil/version.h
> > @@ -79,7 +79,7 @@
> >   */
> >
> >  #define LIBAVUTIL_VERSION_MAJOR  56
> > -#define LIBAVUTIL_VERSION_MINOR  42
>
> > +#define LIBAVUTIL_VERSION_MINOR  43
> >  #define LIBAVUTIL_VERSION_MICRO 102
>
> The micro is supposed to be reset after a minor bump.
>
> Sorry for not having spotted it last time.
>
Never mind :), BTW, is it have any doc or description for version bump guide?
> >
> >  #define LIBAVUTIL_VERSION_INT   AV_VERSION_INT(LIBAVUTIL_VERSION_MAJOR, \
>
> Regards,
>
> --
>   Nicolas George
> _______________________________________________
> ffmpeg-devel mailing list
> ffmpeg-devel@ffmpeg.org
> https://ffmpeg.org/mailman/listinfo/ffmpeg-devel
>
> To unsubscribe, visit link above, or email
> ffmpeg-devel-request@ffmpeg.org with subject "unsubscribe".
diff mbox series

Patch

diff --git a/doc/APIchanges b/doc/APIchanges
index 5aa25de..678206c 100644
--- a/doc/APIchanges
+++ b/doc/APIchanges
@@ -15,8 +15,9 @@  libavutil:     2017-10-21
 
 API changes, most recent first:
 
-2020-04-22 - xxxxxxxxxx - lavc 58.81.100 - packet.h
-  Add AV_PKT_DATA_DOVI_CONF.
+2020-04-22 - 0e1db79e37 - lavc 58.81.100 - packet.h
+                        - lavu 56.43.102 - dovi_meta.h
+  Add AV_PKT_DATA_DOVI_CONF and AVDOVIDecoderConfigurationRecord.
 
 2020-04-15 - xxxxxxxxxx - lavc 58.79.100 - avcodec.h
   Add formal support for calling avcodec_flush_buffers() on encoders.
diff --git a/libavutil/version.h b/libavutil/version.h
index 70836a5..e4fa0a9 100644
--- a/libavutil/version.h
+++ b/libavutil/version.h
@@ -79,7 +79,7 @@ 
  */
 
 #define LIBAVUTIL_VERSION_MAJOR  56
-#define LIBAVUTIL_VERSION_MINOR  42
+#define LIBAVUTIL_VERSION_MINOR  43
 #define LIBAVUTIL_VERSION_MICRO 102
 
 #define LIBAVUTIL_VERSION_INT   AV_VERSION_INT(LIBAVUTIL_VERSION_MAJOR, \