Based on Nekogram. Key additions: - Rebrand to FoxiGram (app name, APK name, applicationId com.foxigram.app) - Embedded Xray (VLESS+Reality) proxy client via JNI libxray.so - Bundled hidden one-tap proxies (LTE + WiFi), read-only in UI - Auto-restore proxy on restart, rebind to active network (LTE/WiFi) - Server credentials externalized to git-ignored XrayServers.java (+ template) - libxray Go source included; compiled .so, keystore, google-services.json ignored
18 lines
493 B
Objective-C
18 lines
493 B
Objective-C
//
|
|
// VideoCMIOCapture.h
|
|
// TgVoipWebrtc
|
|
//
|
|
// Created by Mikhail Filimonov on 21.06.2021.
|
|
// Copyright © 2021 Mikhail Filimonov. All rights reserved.
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
#include "VideoCameraCapturerMac.h"
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@interface VideoCMIOCapture : NSObject<CapturerInterface>
|
|
- (instancetype)initWithSource:(rtc::scoped_refptr<webrtc::VideoTrackSourceInterface>)source;
|
|
- (void)setupCaptureWithDevice:(AVCaptureDevice *)device;
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|