diff --git a/Live/src/main/cpp/AudioStream.cpp b/Live/src/main/cpp/AudioStream.cpp index b839831..8a7fd48 100644 --- a/Live/src/main/cpp/AudioStream.cpp +++ b/Live/src/main/cpp/AudioStream.cpp @@ -1,7 +1,7 @@ #include #include "AudioStream.h" -#include "PushGeneric.h" +#include "PushInterface.h" AudioStream::AudioStream() { diff --git a/Live/src/main/cpp/PushGeneric.h b/Live/src/main/cpp/PushInterface.h similarity index 83% rename from Live/src/main/cpp/PushGeneric.h rename to Live/src/main/cpp/PushInterface.h index 1912dc4..9058608 100644 --- a/Live/src/main/cpp/PushGeneric.h +++ b/Live/src/main/cpp/PushInterface.h @@ -1,6 +1,6 @@ -#ifndef PUSHGENERIC_H -#define PUSHGENERIC_H +#ifndef PUSHINTERFACE_H +#define PUSHINTERFACE_H #include diff --git a/Live/src/main/cpp/RtmpPusher.cpp b/Live/src/main/cpp/RtmpPusher.cpp index 5d71e41..f6ba221 100644 --- a/Live/src/main/cpp/RtmpPusher.cpp +++ b/Live/src/main/cpp/RtmpPusher.cpp @@ -2,7 +2,7 @@ #include #include "include/rtmp/rtmp.h" #include "safe_queue.h" -#include "PushGeneric.h" +#include "PushInterface.h" #include "VideoStream.h" #include "AudioStream.h" diff --git a/Live/src/main/cpp/VideoStream.cpp b/Live/src/main/cpp/VideoStream.cpp index c3bc019..c1c8b39 100644 --- a/Live/src/main/cpp/VideoStream.cpp +++ b/Live/src/main/cpp/VideoStream.cpp @@ -3,7 +3,7 @@ #include #include "VideoStream.h" #include "include/rtmp/rtmp.h" -#include "PushGeneric.h" +#include "PushInterface.h" VideoStream::VideoStream() { pthread_mutex_init(&mutex, 0);