Move guard before includes

This commit is contained in:
Filip Klembara
2020-12-14 09:07:12 +01:00
parent 7a219b23d5
commit bb530ef44d
16 changed files with 32 additions and 32 deletions

View File

@ -19,13 +19,13 @@
#ifndef H264PacketizationHandler_hpp #ifndef H264PacketizationHandler_hpp
#define H264PacketizationHandler_hpp #define H264PacketizationHandler_hpp
#if RTC_ENABLE_MEDIA
#include "rtcp.hpp" #include "rtcp.hpp"
#include "h264rtppacketizer.hpp" #include "h264rtppacketizer.hpp"
#include "rtcpsenderreportable.hpp" #include "rtcpsenderreportable.hpp"
#include "nalunit.hpp" #include "nalunit.hpp"
#if RTC_ENABLE_MEDIA
namespace rtc { namespace rtc {
/// Handler for H264 packetization /// Handler for H264 packetization

View File

@ -19,10 +19,10 @@
#ifndef H264RTPPacketizer_hpp #ifndef H264RTPPacketizer_hpp
#define H264RTPPacketizer_hpp #define H264RTPPacketizer_hpp
#include "rtppacketizer.hpp"
#if RTC_ENABLE_MEDIA #if RTC_ENABLE_MEDIA
#include "rtppacketizer.hpp"
namespace rtc { namespace rtc {
/// RTP packetization of h264 payload /// RTP packetization of h264 payload

View File

@ -19,10 +19,10 @@
#ifndef NalUnit_hpp #ifndef NalUnit_hpp
#define NalUnit_hpp #define NalUnit_hpp
#include "include.hpp"
#if RTC_ENABLE_MEDIA #if RTC_ENABLE_MEDIA
#include "include.hpp"
namespace rtc { namespace rtc {
#pragma pack(push, 1) #pragma pack(push, 1)

View File

@ -19,12 +19,12 @@
#ifndef OpusPacketizationHandler_hpp #ifndef OpusPacketizationHandler_hpp
#define OpusPacketizationHandler_hpp #define OpusPacketizationHandler_hpp
#if RTC_ENABLE_MEDIA
#include "rtcpsenderreportable.hpp" #include "rtcpsenderreportable.hpp"
#include "opusrtppacketizer.hpp" #include "opusrtppacketizer.hpp"
#include "rtcp.hpp" #include "rtcp.hpp"
#if RTC_ENABLE_MEDIA
namespace rtc { namespace rtc {
/// Handler for opus packetization /// Handler for opus packetization

View File

@ -19,10 +19,10 @@
#ifndef OpusRTPPacketizer_hpp #ifndef OpusRTPPacketizer_hpp
#define OpusRTPPacketizer_hpp #define OpusRTPPacketizer_hpp
#include "rtppacketizer.hpp"
#if RTC_ENABLE_MEDIA #if RTC_ENABLE_MEDIA
#include "rtppacketizer.hpp"
namespace rtc { namespace rtc {
/// RTP packetizer for opus /// RTP packetizer for opus

View File

@ -19,11 +19,11 @@
#ifndef RTCPSenderReporter_hpp #ifndef RTCPSenderReporter_hpp
#define RTCPSenderReporter_hpp #define RTCPSenderReporter_hpp
#if RTC_ENABLE_MEDIA
#include "message.hpp" #include "message.hpp"
#include "rtppacketizationconfig.hpp" #include "rtppacketizationconfig.hpp"
#if RTC_ENABLE_MEDIA
namespace rtc { namespace rtc {
/// Class for sending RTCP SR /// Class for sending RTCP SR

View File

@ -19,10 +19,10 @@
#ifndef RTPPacketizationConfig_hpp #ifndef RTPPacketizationConfig_hpp
#define RTPPacketizationConfig_hpp #define RTPPacketizationConfig_hpp
#include "rtp.hpp"
#if RTC_ENABLE_MEDIA #if RTC_ENABLE_MEDIA
#include "rtp.hpp"
namespace rtc { namespace rtc {
/// RTP configuration used in packetization process /// RTP configuration used in packetization process

View File

@ -19,11 +19,11 @@
#ifndef RTPPacketizer_hpp #ifndef RTPPacketizer_hpp
#define RTPPacketizer_hpp #define RTPPacketizer_hpp
#if RTC_ENABLE_MEDIA
#include "rtppacketizationconfig.hpp" #include "rtppacketizationconfig.hpp"
#include "message.hpp" #include "message.hpp"
#if RTC_ENABLE_MEDIA
namespace rtc { namespace rtc {
/// Class responsizble for rtp packetization /// Class responsizble for rtp packetization

View File

@ -16,10 +16,10 @@
* along with this program; If not, see <http://www.gnu.org/licenses/>. * along with this program; If not, see <http://www.gnu.org/licenses/>.
*/ */
#include "h264packetizationhandler.hpp"
#if RTC_ENABLE_MEDIA #if RTC_ENABLE_MEDIA
#include "h264packetizationhandler.hpp"
using namespace rtc; using namespace rtc;
using namespace std; using namespace std;

View File

@ -16,10 +16,10 @@
* along with this program; If not, see <http://www.gnu.org/licenses/>. * along with this program; If not, see <http://www.gnu.org/licenses/>.
*/ */
#include "h264rtppacketizer.hpp"
#if RTC_ENABLE_MEDIA #if RTC_ENABLE_MEDIA
#include "h264rtppacketizer.hpp"
using namespace std; using namespace std;
using namespace rtc; using namespace rtc;

View File

@ -16,11 +16,11 @@
* along with this program; If not, see <http://www.gnu.org/licenses/>. * along with this program; If not, see <http://www.gnu.org/licenses/>.
*/ */
#if RTC_ENABLE_MEDIA
#include "nalunit.hpp" #include "nalunit.hpp"
#include <cmath> #include <cmath>
#if RTC_ENABLE_MEDIA
using namespace std; using namespace std;
using namespace rtc; using namespace rtc;

View File

@ -16,10 +16,10 @@
* along with this program; If not, see <http://www.gnu.org/licenses/>. * along with this program; If not, see <http://www.gnu.org/licenses/>.
*/ */
#include "opuspacketizationhandler.hpp"
#if RTC_ENABLE_MEDIA #if RTC_ENABLE_MEDIA
#include "opuspacketizationhandler.hpp"
using namespace rtc; using namespace rtc;
OpusPacketizationHandler::OpusPacketizationHandler(std::shared_ptr<OpusRTPPacketizer> packetizer): RtcpHandler(), RTCPSenderReportable(packetizer->rtpConfig), packetizer(packetizer) { OpusPacketizationHandler::OpusPacketizationHandler(std::shared_ptr<OpusRTPPacketizer> packetizer): RtcpHandler(), RTCPSenderReportable(packetizer->rtpConfig), packetizer(packetizer) {

View File

@ -16,10 +16,10 @@
* along with this program; If not, see <http://www.gnu.org/licenses/>. * along with this program; If not, see <http://www.gnu.org/licenses/>.
*/ */
#include "opusrtppacketizer.hpp"
#if RTC_ENABLE_MEDIA #if RTC_ENABLE_MEDIA
#include "opusrtppacketizer.hpp"
using namespace std; using namespace std;
using namespace rtc; using namespace rtc;

View File

@ -16,10 +16,10 @@
* along with this program; If not, see <http://www.gnu.org/licenses/>. * along with this program; If not, see <http://www.gnu.org/licenses/>.
*/ */
#include "rtcpsenderreportable.hpp"
#if RTC_ENABLE_MEDIA #if RTC_ENABLE_MEDIA
#include "rtcpsenderreportable.hpp"
using namespace rtc; using namespace rtc;
using namespace std; using namespace std;

View File

@ -16,10 +16,10 @@
* along with this program; If not, see <http://www.gnu.org/licenses/>. * along with this program; If not, see <http://www.gnu.org/licenses/>.
*/ */
#include "rtppacketizationconfig.hpp"
#if RTC_ENABLE_MEDIA #if RTC_ENABLE_MEDIA
#include "rtppacketizationconfig.hpp"
using namespace rtc; using namespace rtc;
using namespace std; using namespace std;

View File

@ -16,10 +16,10 @@
* along with this program; If not, see <http://www.gnu.org/licenses/>. * along with this program; If not, see <http://www.gnu.org/licenses/>.
*/ */
#include "rtppacketizer.hpp"
#if RTC_ENABLE_MEDIA #if RTC_ENABLE_MEDIA
#include "rtppacketizer.hpp"
using namespace std; using namespace std;
using namespace rtc; using namespace rtc;