[FFmpeg-cvslog] mpeg1videoenc: disable slice threads
Michael Niedermayer
git at videolan.org
Thu Jan 26 20:09:06 CET 2012
ffmpeg | branch: master | Michael Niedermayer <michaelni at gmx.at> | Thu Jan 26 18:45:46 2012 +0100| [7ed6b1a1280c9575dabfc1a856cf7b4a4517f3b7] | committer: Michael Niedermayer
mpeg1videoenc: disable slice threads
It doesnt work (and as far as i tested also didnt in the past)
Signed-off-by: Michael Niedermayer <michaelni at gmx.at>
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=7ed6b1a1280c9575dabfc1a856cf7b4a4517f3b7
---
libavcodec/mpeg12enc.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/libavcodec/mpeg12enc.c b/libavcodec/mpeg12enc.c
index 01dd8f0..5dc7652 100644
--- a/libavcodec/mpeg12enc.c
+++ b/libavcodec/mpeg12enc.c
@@ -974,7 +974,7 @@ AVCodec ff_mpeg1video_encoder = {
.close = MPV_encode_end,
.supported_framerates= avpriv_frame_rate_tab+1,
.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"),
.priv_class = &mpeg1_class,
};
More information about the ffmpeg-cvslog
mailing list