Skip to content
Snippets Groups Projects
Commit 904bc6b8 authored by Thorsten Jordan's avatar Thorsten Jordan Committed by Robert Swain
Browse files

Make Xvid wrapper use threads (with support for newest CVS Xvid only)

Patch by Thorsten Jordan ( tjordan macrosystem de )

Originally committed as revision 12928 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent c48da33c
No related branches found
No related tags found
No related merge requests found
...@@ -192,10 +192,11 @@ av_cold int ff_xvid_encode_init(AVCodecContext *avctx) { ...@@ -192,10 +192,11 @@ av_cold int ff_xvid_encode_init(AVCodecContext *avctx) {
/* XviD can determine the proper profile to use */ /* XviD can determine the proper profile to use */
/* xvid_enc_create.profile = XVID_PROFILE_S_L3; */ /* xvid_enc_create.profile = XVID_PROFILE_S_L3; */
/* We don't use zones or threads */ /* We don't use zones */
xvid_enc_create.zones = NULL; xvid_enc_create.zones = NULL;
xvid_enc_create.num_zones = 0; xvid_enc_create.num_zones = 0;
xvid_enc_create.num_threads = 0;
xvid_enc_create.num_threads = avctx->thread_count;
xvid_enc_create.plugins = plugins; xvid_enc_create.plugins = plugins;
xvid_enc_create.num_plugins = 0; xvid_enc_create.num_plugins = 0;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment