[FFmpeg-devel] [PATCH 4/5] avcodec/rawenc: suppport frame thread for rawvideo
lance.lmwang at gmail.com
lance.lmwang at gmail.com
Thu Dec 9 04:08:19 EET 2021
On Thu, Dec 09, 2021 at 09:19:42AM +0800, lance.lmwang at gmail.com wrote:
> From: Limin Wang <lance.lmwang at gmail.com>
>
> Signed-off-by: Limin Wang <lance.lmwang at gmail.com>
> ---
> libavcodec/rawenc.c | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/libavcodec/rawenc.c b/libavcodec/rawenc.c
> index 7e15084..561d992 100644
> --- a/libavcodec/rawenc.c
> +++ b/libavcodec/rawenc.c
> @@ -85,7 +85,7 @@ const AVCodec ff_rawvideo_encoder = {
> .long_name = NULL_IF_CONFIG_SMALL("raw video"),
> .type = AVMEDIA_TYPE_VIDEO,
> .id = AV_CODEC_ID_RAWVIDEO,
> - .capabilities = AV_CODEC_CAP_DR1,
> + .capabilities = AV_CODEC_CAP_DR1 | AV_CODEC_CAP_FRAME_THREADS,
> .init = raw_encode_init,
> .encode2 = raw_encode,
> .caps_internal = FF_CODEC_CAP_INIT_THREADSAFE,
> --
> 1.8.3.1
>
In fact, I want to keep default thread to 1 which can keep same behavior as
before. I'm not sure where is better place to set it? Or I had to change
some test case for rawvideo in fate to threads 1.
--
Thanks,
Limin Wang
More information about the ffmpeg-devel
mailing list