Commit 7ed6b1a1 authored by Michael Niedermayer's avatar Michael Niedermayer

mpeg1videoenc: disable slice threads

It doesnt work (and as far as i tested also didnt in the past)
Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent 70dba1e3
...@@ -974,7 +974,7 @@ AVCodec ff_mpeg1video_encoder = { ...@@ -974,7 +974,7 @@ AVCodec ff_mpeg1video_encoder = {
.close = MPV_encode_end, .close = MPV_encode_end,
.supported_framerates= avpriv_frame_rate_tab+1, .supported_framerates= avpriv_frame_rate_tab+1,
.pix_fmts= (const enum PixelFormat[]){PIX_FMT_YUV420P, PIX_FMT_NONE}, .pix_fmts= (const enum PixelFormat[]){PIX_FMT_YUV420P, PIX_FMT_NONE},
.capabilities= CODEC_CAP_DELAY | CODEC_CAP_SLICE_THREADS, .capabilities= CODEC_CAP_DELAY,
.long_name= NULL_IF_CONFIG_SMALL("MPEG-1 video"), .long_name= NULL_IF_CONFIG_SMALL("MPEG-1 video"),
.priv_class = &mpeg1_class, .priv_class = &mpeg1_class,
}; };
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment