|
@@ -1722,6 +1722,8 @@ static int stream_component_open(VideoState *is, int stream_index)
|
|
|
enc->skip_loop_filter= skip_loop_filter;
|
|
|
enc->error_recognition= error_recognition;
|
|
|
enc->error_concealment= error_concealment;
|
|
|
+ if (thread_count > 1)
|
|
|
+ avcodec_thread_init(enc, thread_count);
|
|
|
|
|
|
set_context_opts(enc, avcodec_opts[enc->codec_type], 0);
|
|
|
|
|
@@ -1746,9 +1748,6 @@ static int stream_component_open(VideoState *is, int stream_index)
|
|
|
is->audio_src_fmt= SAMPLE_FMT_S16;
|
|
|
}
|
|
|
|
|
|
- if(thread_count>1)
|
|
|
- avcodec_thread_init(enc, thread_count);
|
|
|
- enc->thread_count= thread_count;
|
|
|
ic->streams[stream_index]->discard = AVDISCARD_DEFAULT;
|
|
|
switch(enc->codec_type) {
|
|
|
case CODEC_TYPE_AUDIO:
|