OSDN Git Service

threads: Perform the generic progress cleanup more carefully.
authorMichael Niedermayer <michaelni@gmx.at>
Sat, 11 Feb 2012 19:14:33 +0000 (20:14 +0100)
committerMichael Niedermayer <michaelni@gmx.at>
Sun, 12 Feb 2012 19:24:29 +0000 (20:24 +0100)
The cleanup is only done now when
a picture is returned (assuming that it has to be done when its returned)
a error is returned (assuming that there will be no further progress on the frame)
the codec is not h264 (this is still needed due to some deadlocks in realvideo)

This fixes a decoding regression with 00017.MTS

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
libavcodec/pthread.c

index 0e64a32..9e1c1e2 100644 (file)
@@ -388,7 +388,7 @@ static attribute_align_arg void *frame_worker_thread(void *arg)
 
         pthread_mutex_lock(&p->progress_mutex);
         for (i = 0; i < MAX_BUFFERS; i++)
-            if (p->progress_used[i]) {
+            if (p->progress_used[i] && (p->got_frame || p->result<0 || avctx->codec_id != CODEC_ID_H264)) {
                 p->progress[i][0] = INT_MAX;
                 p->progress[i][1] = INT_MAX;
             }