Re: [FFmpeg-devel] [PATCH 1/3] avcodec/qpeg: remove an unnecessary intermediary AVFrame

2020-04-20 Thread James Almer
On 4/20/2020 10:28 AM, Anton Khirnov wrote: > Quoting James Almer (2020-04-17 05:10:06) >> Decoding can be handled directly in the output frame. >> >> Signed-off-by: James Almer >> --- >> libavcodec/qpeg.c | 22 +- >> 1 file changed, 9 insertions(+), 13 deletions(-) >> > >

Re: [FFmpeg-devel] [PATCH 1/3] avcodec/qpeg: remove an unnecessary intermediary AVFrame

2020-04-20 Thread Anton Khirnov
Quoting James Almer (2020-04-17 05:10:06) > Decoding can be handled directly in the output frame. > > Signed-off-by: James Almer > --- > libavcodec/qpeg.c | 22 +- > 1 file changed, 9 insertions(+), 13 deletions(-) > Seems you're also fixing flush, so maybe mention that in

[FFmpeg-devel] [PATCH 1/3] avcodec/qpeg: remove an unnecessary intermediary AVFrame

2020-04-16 Thread James Almer
Decoding can be handled directly in the output frame. Signed-off-by: James Almer --- libavcodec/qpeg.c | 22 +- 1 file changed, 9 insertions(+), 13 deletions(-) diff --git a/libavcodec/qpeg.c b/libavcodec/qpeg.c index d4195c5f0b..3fde6381f2 100644 --- a/libavcodec/qpeg.c