Re: [FFmpeg-devel] [PATCH V8 2/2] avcodec/libx264: add support for ROI-based encoding

2019-01-17 Thread Derek Buitenhuis
On 16/01/2019 12:39, Derek Buitenhuis wrote: > On 16/01/2019 00:41, Guo, Yejun wrote: >> this patch set asks for pushing if no more concerns, thanks. > > I support this. > > If nobody raises any concerns in the next 24-48 hrs, I'll go ahead. > > Thank you for sticking with it through the bikeshe

Re: [FFmpeg-devel] [PATCH V8 2/2] avcodec/libx264: add support for ROI-based encoding

2019-01-16 Thread Derek Buitenhuis
On 16/01/2019 00:41, Guo, Yejun wrote: > this patch set asks for pushing if no more concerns, thanks. I support this. If nobody raises any concerns in the next 24-48 hrs, I'll go ahead. Thank you for sticking with it through the bikeshedding. - Derek

Re: [FFmpeg-devel] [PATCH V8 2/2] avcodec/libx264: add support for ROI-based encoding

2019-01-15 Thread Guo, Yejun
.org> > Subject: Re: [FFmpeg-devel] [PATCH V8 2/2] avcodec/libx264: add support > for ROI-based encoding > > > > > -Original Message- > > From: ffmpeg-devel [mailto:ffmpeg-devel-boun...@ffmpeg.org] On > Behalf > > Of Carl Eugen Hoyos > > Sent:

Re: [FFmpeg-devel] [PATCH V8 2/2] avcodec/libx264: add support for ROI-based encoding

2019-01-10 Thread Guo, Yejun
> -Original Message- > From: ffmpeg-devel [mailto:ffmpeg-devel-boun...@ffmpeg.org] On Behalf > Of Carl Eugen Hoyos > Sent: Friday, January 11, 2019 8:54 AM > To: FFmpeg development discussions and patches de...@ffmpeg.org> > Subject: Re: [FFmpeg-devel] [PATCH V8

Re: [FFmpeg-devel] [PATCH V8 2/2] avcodec/libx264: add support for ROI-based encoding

2019-01-10 Thread Carl Eugen Hoyos
2019-01-11 1:37 GMT+01:00, Guo, Yejun : >> 2019-01-10 9:54 GMT+01:00, Guo, Yejun : >> >> > +roi = (AVRegionOfInterest*)((char*)roi + >> > roi->self_size); >> >> Isn't this roi++? >> If yes, please change this. > > no, it's not roi++, the reason is that struct AVRegionOfInte

Re: [FFmpeg-devel] [PATCH V8 2/2] avcodec/libx264: add support for ROI-based encoding

2019-01-10 Thread Guo, Yejun
> -Original Message- > From: ffmpeg-devel [mailto:ffmpeg-devel-boun...@ffmpeg.org] On Behalf > Of Carl Eugen Hoyos > Sent: Friday, January 11, 2019 1:19 AM > To: FFmpeg development discussions and patches de...@ffmpeg.org> > Subject: Re: [FFmpeg-devel] [PATCH V8

Re: [FFmpeg-devel] [PATCH V8 2/2] avcodec/libx264: add support for ROI-based encoding

2019-01-10 Thread Carl Eugen Hoyos
2019-01-10 9:54 GMT+01:00, Guo, Yejun : > +roi = (AVRegionOfInterest*)((char*)roi + > roi->self_size); Isn't this roi++? If yes, please change this. I also wonder if the wording (elsewhere) of "returns EINVAL if size is zero" is correct: Shouldn't it be "size must be >0"

[FFmpeg-devel] [PATCH V8 2/2] avcodec/libx264: add support for ROI-based encoding

2019-01-09 Thread Guo, Yejun
This patch just enables the path from ffmpeg to libx264, the more encoders can be added later. Signed-off-by: Guo, Yejun --- libavcodec/libx264.c | 62 1 file changed, 62 insertions(+) diff --git a/libavcodec/libx264.c b/libavcodec/libx264.c