From 02258ea3c79c03612aff0c248547543caaf95174 Mon Sep 17 00:00:00 2001
From: zhangmeng <775834166@qq.com>
Date: 星期三, 25 九月 2019 17:33:01 +0800
Subject: [PATCH] wait time

---
 csrc/wrapper.cpp |    7 +------
 1 files changed, 1 insertions(+), 6 deletions(-)

diff --git a/csrc/wrapper.cpp b/csrc/wrapper.cpp
index 7bba3de..ab5d9e9 100644
--- a/csrc/wrapper.cpp
+++ b/csrc/wrapper.cpp
@@ -162,17 +162,12 @@
 
     void Wrapper::run_stream_thread(){
         
-        int tryTime = 0;
         while(!stop_stream_.load()){
             auto in = init_reader(input_url_.c_str());
             
             if (!in) {
                 logIt("ERROR: init_reader! url: %s\n", input_url_.c_str());
-                usleep(200000);
-                tryTime++;
-                if (tryTime == 50){
-                    break;
-                }
+                sleep(2);
                 continue;
             }
             

--
Gitblit v1.8.0