Код: Выделить всё
#ifdef _WIN32
#define POPEN _popen
#define PCLOSE _pclose
#else
#define POPEN popen
#define PCLOSE pclose
#endif
// FFmpeg command to receive raw BGR24 data and encode with libx264
std::ostringstream oss;
oss
Подробнее здесь: [url]https://stackoverflow.com/questions/79600135/difference-behaviour-between-ubuntu-and-windows-for-popen-popen[/url]