blob: ea470211988fb775e30508e7d388566c26599b1d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
#pragma once
#ifndef WEBRTC_NET_INTERNALS_H_
#define WEBRTC_NET_INTERNALS_H_
// enable webrtc::DesktopCapturer
#define DESKTOP_CAPTURE 0
namespace Internal
{
void Encode(unsigned char * data, unsigned int size, int part_idx, bool keyFrame);
}
namespace Native
{
extern bool CFG_quality_scaler_enabled_;
void InitializeSSL();
void CleanupSSL();
}
#endif // WEBRTC_NET_INTERNALS_H_
|