mirror of https://git.ffmpeg.org/ffmpeg.git
avcodec/libstagefright: Check for pthread_create() failure
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
parent
40cc3be73c
commit
4c4c3d5d5a
|
@ -364,7 +364,8 @@ static int Stagefright_decode_frame(AVCodecContext *avctx, void *data,
|
|||
AVFrame *ret_frame;
|
||||
|
||||
if (!s->thread_started) {
|
||||
pthread_create(&s->decode_thread_id, NULL, &decode_thread, avctx);
|
||||
if(pthread_create(&s->decode_thread_id, NULL, &decode_thread, avctx))
|
||||
return AVERROR(ENOMEM);
|
||||
s->thread_started = true;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue