Re: [FFmpeg-devel] [PATCH v1] avcodec/av1dec: check if hwaccel is specificed

2021-08-30 Thread Hendrik Leppkes
On Mon, Aug 30, 2021 at 3:56 AM Wang, Fei W wrote: > > If so, the only way to fix is keep previous check with avctx->hwaccel > but change its log context like "The AV1 decoder requires a hw acceleration > to be specified or the specified hw doesn't support AV1 decoding." > That sounds right, you

Re: [FFmpeg-devel] [PATCH v1] avcodec/av1dec: check if hwaccel is specificed

2021-08-29 Thread Wang, Fei W
On Fri, 2021-08-27 at 19:09 +0200, Hendrik Leppkes wrote: > On Fri, Aug 27, 2021 at 1:54 PM Fei Wang > wrote: > > > > Since av1 decoder is only available for hw acceleration. This will > > gives out more accurate information if this decoder used but > > doesn't > > specificed a hwaccel. > > > >

Re: [FFmpeg-devel] [PATCH v1] avcodec/av1dec: check if hwaccel is specificed

2021-08-27 Thread Hendrik Leppkes
On Fri, Aug 27, 2021 at 1:54 PM Fei Wang wrote: > > Since av1 decoder is only available for hw acceleration. This will > gives out more accurate information if this decoder used but doesn't > specificed a hwaccel. > > For example: > ffmpeg -c:v av1 -i INPUT OUTPUT > > Signed-off-by: Fei Wang > --

Re: [FFmpeg-devel] [PATCH v1] avcodec/av1dec: check if hwaccel is specificed

2021-08-27 Thread Soft Works
> -Original Message- > From: ffmpeg-devel On Behalf Of Fei > Wang > Sent: Friday, 27 August 2021 13:54 > To: ffmpeg-devel@ffmpeg.org > Cc: Fei Wang > Subject: [FFmpeg-devel] [PATCH v1] avcodec/av1dec: check if hwaccel > is specificed > > Since av1 de

[FFmpeg-devel] [PATCH v1] avcodec/av1dec: check if hwaccel is specificed

2021-08-27 Thread Fei Wang
Since av1 decoder is only available for hw acceleration. This will gives out more accurate information if this decoder used but doesn't specificed a hwaccel. For example: ffmpeg -c:v av1 -i INPUT OUTPUT Signed-off-by: Fei Wang --- 1. This is improvement of patch for: https://patchwork.ffmpeg.org