From 40300172adc26544e8ea5323d156f0b5e9d80ef2 Mon Sep 17 00:00:00 2001 From: Seungha Yang Date: Fri, 3 Mar 2023 23:15:42 +0900 Subject: [PATCH] adaptivedemux2: Fix MSVC build error downloadrequest.c(497): error C4013: 'atoi' undefined; assuming extern returning int Part-of: --- .../gst-plugins-good/ext/adaptivedemux2/downloadrequest.c | 1 + 1 file changed, 1 insertion(+) diff --git a/subprojects/gst-plugins-good/ext/adaptivedemux2/downloadrequest.c b/subprojects/gst-plugins-good/ext/adaptivedemux2/downloadrequest.c index 5725db0f4c..421ff85d1a 100644 --- a/subprojects/gst-plugins-good/ext/adaptivedemux2/downloadrequest.c +++ b/subprojects/gst-plugins-good/ext/adaptivedemux2/downloadrequest.c @@ -27,6 +27,7 @@ #include #include #include "downloadrequest.h" +#include typedef struct _DownloadRequestPrivate DownloadRequestPrivate;