diff mbox

[FFmpeg-devel,8/9] pthread_frame: remove some dead code

Message ID 20170318085606.26011-9-nfxjfg@googlemail.com
State Accepted
Commit 2e5c52896b0a07dee714267ab5beab7ad0ae5c90
Headers show

Commit Message

wm4 March 18, 2017, 8:56 a.m. UTC
Whatever it was supposed to do.
---
 libavcodec/pthread_frame.c | 8 +-------
 1 file changed, 1 insertion(+), 7 deletions(-)
diff mbox

Patch

diff --git a/libavcodec/pthread_frame.c b/libavcodec/pthread_frame.c
index 1b871c31d4..9de4016593 100644
--- a/libavcodec/pthread_frame.c
+++ b/libavcodec/pthread_frame.c
@@ -199,13 +199,7 @@  static attribute_align_arg void *frame_worker_thread(void *arg)
         }
 
         pthread_mutex_lock(&p->progress_mutex);
-#if 0 //BUFREF-FIXME
-        for (i = 0; i < MAX_BUFFERS; i++)
-            if (p->progress_used[i] && (p->got_frame || p->result<0 || avctx->codec_id != AV_CODEC_ID_H264)) {
-                p->progress[i][0] = INT_MAX;
-                p->progress[i][1] = INT_MAX;
-            }
-#endif
+
         atomic_store(&p->state, STATE_INPUT_READY);
 
         pthread_cond_broadcast(&p->progress_cond);