From b950745e5f865da3d6936240a20e6f65b6646c2e Mon Sep 17 00:00:00 2001 From: xufulong <839789740@qq.com> Date: Sun, 23 Feb 2020 00:23:39 +0800 Subject: [PATCH] =?UTF-8?q?=E9=87=8D=E5=91=BD=E5=90=8D=E5=A4=B4=E6=96=87?= =?UTF-8?q?=E4=BB=B6?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 重命名头文件 --- Live/src/main/cpp/AudioStream.cpp | 2 +- Live/src/main/cpp/{PushGeneric.h => PushInterface.h} | 4 ++-- Live/src/main/cpp/RtmpPusher.cpp | 2 +- Live/src/main/cpp/VideoStream.cpp | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) rename Live/src/main/cpp/{PushGeneric.h => PushInterface.h} (83%) 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);