浏览代码

pause: do not change state when already off

Philippe G 4 年之前
父节点
当前提交
a9cfecfc91
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      components/squeezelite/slimproto.c

+ 1 - 1
components/squeezelite/slimproto.c

@@ -320,7 +320,7 @@ static void process_strm(u8_t *pkt, int len) {
 			output.pause_frames = interval * status.current_sample_rate / 1000;
 			if (interval) {
 				output.state = OUTPUT_PAUSE_FRAMES;
-			} else {
+			} else if (output.state != OUTPUT_OFF) {
 				output.state = OUTPUT_STOPPED;
 				output.stop_time = gettime_ms();
 			}