mbox series

[FFmpeg-devel,00/10] Patch set for the enhancement of libopenh264 encoder

Message ID 1585926740-22441-1-git-send-email-linjie.fu@intel.com
Headers show
Series Patch set for the enhancement of libopenh264 encoder | expand

Message

Fu, Linjie April 3, 2020, 3:12 p.m. UTC
Docs will be provided later.

Linjie Fu (10):
  lavc/libopenh264enc: Add default qmin/qmax support
    [v2] fix the av_clip logic for iMinQp.
  lavc/libopenh264enc: fix the if-else coding style
  lavc/libopenh264enc: add default gop size and bit rate
  lavc/libopenh264enc: add bit rate control select support
  lavc/libopenh264enc: prompt slice number changing according to cpus
  lavc/libopenh264enc: set slice_mode option to deprecated
  lavc/libopenh264enc: separate svc_encode_init() into several functions
    [v2] remove forward declarations.
New:
  lavc/libopenh264enc: add profile high option support
  lavc/libopenh264enc: allow specifying the profile through AVCodecContext
  lavc/libopenh264enc: replace cabac option with coder

 libavcodec/libopenh264enc.c | 361 ++++++++++++++++++++++++++++++--------------
 1 file changed, 246 insertions(+), 115 deletions(-)

Comments

Linjie Fu April 5, 2020, 10:49 a.m. UTC | #1
> From: "Linjie Fu" <linjie.fu@intel.com>
> Sent Time: 2020-04-03 23:12:20 (Friday)
> To: ffmpeg-devel@ffmpeg.org
> Cc: "Linjie Fu" <linjie.fu@intel.com>
> Subject: [FFmpeg-devel] [PATCH 00/10] Patch set for the enhancement of libopenh264 encoder
> 
> Docs will be provided later.
> 
> Linjie Fu (10):
>   lavc/libopenh264enc: Add default qmin/qmax support
>     [v2] fix the av_clip logic for iMinQp.
>   lavc/libopenh264enc: fix the if-else coding style
>   lavc/libopenh264enc: add default gop size and bit rate
>   lavc/libopenh264enc: add bit rate control select support
>   lavc/libopenh264enc: prompt slice number changing according to cpus
>   lavc/libopenh264enc: set slice_mode option to deprecated
>   lavc/libopenh264enc: separate svc_encode_init() into several functions
>     [v2] remove forward declarations.
> New:
>   lavc/libopenh264enc: add profile high option support
>   lavc/libopenh264enc: allow specifying the profile through AVCodecContext
>   lavc/libopenh264enc: replace cabac option with coder
> 
>  libavcodec/libopenh264enc.c | 361 ++++++++++++++++++++++++++++++--------------
>  1 file changed, 246 insertions(+), 115 deletions(-)
> 
Ping for this patch set.

- Linjie
Anton Khirnov April 6, 2020, 9 a.m. UTC | #2
Quoting Linjie Fu (2020-04-05 12:49:38)
> > From: "Linjie Fu" <linjie.fu@intel.com>
> > Sent Time: 2020-04-03 23:12:20 (Friday)
> > To: ffmpeg-devel@ffmpeg.org
> > Cc: "Linjie Fu" <linjie.fu@intel.com>
> > Subject: [FFmpeg-devel] [PATCH 00/10] Patch set for the enhancement of libopenh264 encoder
> > 
> > Docs will be provided later.
> > 
> > Linjie Fu (10):
> >   lavc/libopenh264enc: Add default qmin/qmax support
> >     [v2] fix the av_clip logic for iMinQp.
> >   lavc/libopenh264enc: fix the if-else coding style
> >   lavc/libopenh264enc: add default gop size and bit rate
> >   lavc/libopenh264enc: add bit rate control select support
> >   lavc/libopenh264enc: prompt slice number changing according to cpus
> >   lavc/libopenh264enc: set slice_mode option to deprecated
> >   lavc/libopenh264enc: separate svc_encode_init() into several functions
> >     [v2] remove forward declarations.
> > New:
> >   lavc/libopenh264enc: add profile high option support
> >   lavc/libopenh264enc: allow specifying the profile through AVCodecContext
> >   lavc/libopenh264enc: replace cabac option with coder
> > 
> >  libavcodec/libopenh264enc.c | 361 ++++++++++++++++++++++++++++++--------------
> >  1 file changed, 246 insertions(+), 115 deletions(-)
> > 
> Ping for this patch set.

Would you please send your patchsets as single threads (git send-email
does that by default unless you use --no-thread). That makes it
significantly easier to find patches that go together.
Fu, Linjie April 6, 2020, 11:24 a.m. UTC | #3
> From: ffmpeg-devel <ffmpeg-devel-bounces@ffmpeg.org> On Behalf Of
> Anton Khirnov
> Sent: Monday, April 6, 2020 17:00
> To: FFmpeg development discussions and patches <ffmpeg-
> devel@ffmpeg.org>
> Subject: Re: [FFmpeg-devel] [PATCH 00/10] Patch set for the enhancement
> of libopenh264 encoder
> 
> Quoting Linjie Fu (2020-04-05 12:49:38)
> > > From: "Linjie Fu" <linjie.fu@intel.com>
> > > Sent Time: 2020-04-03 23:12:20 (Friday)
> > > To: ffmpeg-devel@ffmpeg.org
> > > Cc: "Linjie Fu" <linjie.fu@intel.com>
> > > Subject: [FFmpeg-devel] [PATCH 00/10] Patch set for the enhancement
> of libopenh264 encoder
> > >
> > > Docs will be provided later.
> > >
> > > Linjie Fu (10):
> > >   lavc/libopenh264enc: Add default qmin/qmax support
> > >     [v2] fix the av_clip logic for iMinQp.
> > >   lavc/libopenh264enc: fix the if-else coding style
> > >   lavc/libopenh264enc: add default gop size and bit rate
> > >   lavc/libopenh264enc: add bit rate control select support
> > >   lavc/libopenh264enc: prompt slice number changing according to cpus
> > >   lavc/libopenh264enc: set slice_mode option to deprecated
> > >   lavc/libopenh264enc: separate svc_encode_init() into several functions
> > >     [v2] remove forward declarations.
> > > New:
> > >   lavc/libopenh264enc: add profile high option support
> > >   lavc/libopenh264enc: allow specifying the profile through
> AVCodecContext
> > >   lavc/libopenh264enc: replace cabac option with coder
> > >
> > >  libavcodec/libopenh264enc.c | 361
> ++++++++++++++++++++++++++++++--------------
> > >  1 file changed, 246 insertions(+), 115 deletions(-)
> > >
> > Ping for this patch set.
> 
> Would you please send your patchsets as single threads (git send-email
> does that by default unless you use --no-thread). That makes it
> significantly easier to find patches that go together.
> 
Updated, thanks.

- Linjie