Jelajahi Sumber

change: rtmp,推送状态变化,从正在推送变成其他状态时,立即停止摄像头输出

Wendal Chen 3 bulan lalu
induk
melakukan
622ad21839
1 mengubah file dengan 6 tambahan dan 0 penghapusan
  1. 6 0
      components/rtmp/src/luat_rtmp_push.c

+ 6 - 0
components/rtmp/src/luat_rtmp_push.c

@@ -2672,6 +2672,12 @@ static void rtmp_set_state(rtmp_ctx_t *ctx, rtmp_state_t new_state, int error_co
     if (g_state_callback) {
         g_state_callback(ctx, old_state, new_state, error_code);
     }
+
+    if (old_state == RTMP_STATE_PUBLISHING && new_state != RTMP_STATE_PUBLISHING) {
+        // 停止摄像头采集
+        extern int luat_camera_stop(int id);
+        luat_camera_stop(0);
+    }
 }
 
 /**