소스 검색

obs-outputs: Increase GetAdaptersAddresses buffer size

4096 is too small for most systems to do this in a single call.
Richard Stanway 7 년 전
부모
커밋
15895bfb76
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      plugins/obs-outputs/net-if.c

+ 1 - 1
plugins/obs-outputs/net-if.c

@@ -175,7 +175,7 @@ static inline PIP_ADAPTER_ADDRESSES get_adapters(void)
 {
 	PIP_ADAPTER_ADDRESSES adapter = NULL;
 	unsigned long ret = 0;
-	unsigned long out_buf_len = 4096;
+	unsigned long out_buf_len = 16384;
 	unsigned long flags =
 		GAA_FLAG_SKIP_ANYCAST |
 		GAA_FLAG_SKIP_MULTICAST |