mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-12-23 12:43:46 +02:00
Merge commit '30e256430eb88c6d4c382581b89bca171d79fbc0'
* commit '30e256430eb88c6d4c382581b89bca171d79fbc0': lavc/pthread: remove obsolete checks Conflicts: libavcodec/utils.c Merged-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
commit
36d349034e
@ -1146,23 +1146,16 @@ static void validate_thread_parameters(AVCodecContext *avctx)
|
|||||||
|
|
||||||
int ff_thread_init(AVCodecContext *avctx)
|
int ff_thread_init(AVCodecContext *avctx)
|
||||||
{
|
{
|
||||||
if (avctx->thread_opaque) {
|
|
||||||
av_log(avctx, AV_LOG_ERROR, "avcodec_thread_init is ignored after avcodec_open\n");
|
|
||||||
return -1;
|
|
||||||
}
|
|
||||||
|
|
||||||
#if HAVE_W32THREADS
|
#if HAVE_W32THREADS
|
||||||
w32thread_init();
|
w32thread_init();
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
if (avctx->codec) {
|
|
||||||
validate_thread_parameters(avctx);
|
validate_thread_parameters(avctx);
|
||||||
|
|
||||||
if (avctx->active_thread_type&FF_THREAD_SLICE)
|
if (avctx->active_thread_type&FF_THREAD_SLICE)
|
||||||
return thread_init(avctx);
|
return thread_init(avctx);
|
||||||
else if (avctx->active_thread_type&FF_THREAD_FRAME)
|
else if (avctx->active_thread_type&FF_THREAD_FRAME)
|
||||||
return frame_thread_init(avctx);
|
return frame_thread_init(avctx);
|
||||||
}
|
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
@ -1173,7 +1173,7 @@ int attribute_align_arg avcodec_open2(AVCodecContext *avctx, const AVCodec *code
|
|||||||
goto free_and_end;
|
goto free_and_end;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (HAVE_THREADS && !avctx->thread_opaque
|
if (HAVE_THREADS
|
||||||
&& !(avctx->internal->frame_thread_encoder && (avctx->active_thread_type&FF_THREAD_FRAME))) {
|
&& !(avctx->internal->frame_thread_encoder && (avctx->active_thread_type&FF_THREAD_FRAME))) {
|
||||||
ret = ff_thread_init(avctx);
|
ret = ff_thread_init(avctx);
|
||||||
if (ret < 0) {
|
if (ret < 0) {
|
||||||
|
Loading…
Reference in New Issue
Block a user