2014-04-02 16:48:27 -05:00
|
|
|
/**
|
|
|
|
|
* @file
|
|
|
|
|
* @brief Header file for OpenMPUtilities (set some common macros)
|
|
|
|
|
* @author Jonathan Thomas <jonathan@openshot.org>
|
|
|
|
|
*
|
2019-06-09 08:31:04 -04:00
|
|
|
* @ref License
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
/* LICENSE
|
2014-04-02 16:48:27 -05:00
|
|
|
*
|
2019-06-11 06:48:32 -04:00
|
|
|
* Copyright (c) 2008-2019 OpenShot Studios, LLC
|
2014-04-02 16:48:27 -05:00
|
|
|
* <http://www.openshotstudios.com/>. This file is part of
|
|
|
|
|
* OpenShot Library (libopenshot), an open-source project dedicated to
|
|
|
|
|
* delivering high quality video editing and animation solutions to the
|
|
|
|
|
* world. For more information visit <http://www.openshot.org/>.
|
|
|
|
|
*
|
|
|
|
|
* OpenShot Library (libopenshot) is free software: you can redistribute it
|
2014-07-11 16:52:14 -05:00
|
|
|
* and/or modify it under the terms of the GNU Lesser General Public License
|
2014-04-02 16:48:27 -05:00
|
|
|
* as published by the Free Software Foundation, either version 3 of the
|
|
|
|
|
* License, or (at your option) any later version.
|
|
|
|
|
*
|
|
|
|
|
* OpenShot Library (libopenshot) is distributed in the hope that it will be
|
|
|
|
|
* useful, but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
2014-07-11 16:52:14 -05:00
|
|
|
* GNU Lesser General Public License for more details.
|
2014-04-02 16:48:27 -05:00
|
|
|
*
|
2014-07-11 16:52:14 -05:00
|
|
|
* You should have received a copy of the GNU Lesser General Public License
|
2014-04-02 16:48:27 -05:00
|
|
|
* along with OpenShot Library. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#ifndef OPENSHOT_OPENMP_UTILITIES_H
|
|
|
|
|
#define OPENSHOT_OPENMP_UTILITIES_H
|
|
|
|
|
|
|
|
|
|
#include <omp.h>
|
2018-08-12 00:15:23 -05:00
|
|
|
#include <stdlib.h>
|
|
|
|
|
#include <string.h>
|
2014-04-02 16:48:27 -05:00
|
|
|
|
2019-05-10 13:23:25 +10:00
|
|
|
#include "Settings.h"
|
2019-01-30 20:44:36 -08:00
|
|
|
|
2018-08-12 00:15:23 -05:00
|
|
|
// Calculate the # of OpenMP Threads to allow
|
2019-08-04 23:51:02 -04:00
|
|
|
#define OPEN_MP_NUM_PROCESSORS (std::min(omp_get_num_procs(), std::max(2, openshot::Settings::Instance()->OMP_THREADS) ))
|
|
|
|
|
#define FF_NUM_PROCESSORS (std::min(omp_get_num_procs(), std::max(2, openshot::Settings::Instance()->FF_THREADS) ))
|
2018-08-12 00:15:23 -05:00
|
|
|
|
|
|
|
|
|
2014-04-02 16:48:27 -05:00
|
|
|
#endif
|