encoders/ffmpeg: Rename files to match naming scheme

This commit is contained in:
Michael Fabian 'Xaymar' Dirks 2020-06-14 22:22:44 +02:00
parent ce93f96a69
commit 161f10a921
8 changed files with 8 additions and 8 deletions

View file

@ -598,8 +598,8 @@ if(${PropertyPrefix}ENABLE_ENCODER_FFMPEG)
"source/ffmpeg/hwapi/d3d11.cpp"
# Encoders
"source/encoders/ffmpeg-encoder.hpp"
"source/encoders/ffmpeg-encoder.cpp"
"source/encoders/encoder-ffmpeg.hpp"
"source/encoders/encoder-ffmpeg.cpp"
# Encoders/Codecs
"source/encoders/codecs/hevc.hpp"

View file

@ -19,7 +19,7 @@
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
// SOFTWARE.
#include "ffmpeg-encoder.hpp"
#include "encoder-ffmpeg.hpp"
#include "strings.hpp"
#include <sstream>
#include "codecs/hevc.hpp"

View file

@ -20,7 +20,7 @@
// SOFTWARE.
#include "handler.hpp"
#include "../ffmpeg-encoder.hpp"
#include "../encoder-ffmpeg.hpp"
using namespace streamfx::encoder::ffmpeg;

View file

@ -22,7 +22,7 @@
#include "nvenc_h264_handler.hpp"
#include "strings.hpp"
#include "../codecs/h264.hpp"
#include "../ffmpeg-encoder.hpp"
#include "../encoder-ffmpeg.hpp"
#include "ffmpeg/tools.hpp"
#include "nvenc_shared.hpp"
#include "plugin.hpp"

View file

@ -22,7 +22,7 @@
#include "nvenc_hevc_handler.hpp"
#include "strings.hpp"
#include "../codecs/hevc.hpp"
#include "../ffmpeg-encoder.hpp"
#include "../encoder-ffmpeg.hpp"
#include "ffmpeg/tools.hpp"
#include "nvenc_shared.hpp"
#include "plugin.hpp"

View file

@ -23,7 +23,7 @@
#include "strings.hpp"
#include <algorithm>
#include "../codecs/hevc.hpp"
#include "../ffmpeg-encoder.hpp"
#include "../encoder-ffmpeg.hpp"
#include "ffmpeg/tools.hpp"
#include "plugin.hpp"
#include "utility.hpp"

View file

@ -24,7 +24,7 @@
#include "obs/obs-source-tracker.hpp"
#ifdef ENABLE_ENCODER_FFMPEG
#include "encoders/ffmpeg-encoder.hpp"
#include "encoders/encoder-ffmpeg.hpp"
#endif
#ifdef ENABLE_FILTER_BLUR