代码拉取完成,页面将自动刷新
#pragma once
#include "AGVideoWnd.h"
#include <IAgoraRtcEngineEx.h>
class CAudioProfileEventHandler : public IRtcEngineEventHandler
{
public:
//set the message notify window handler
void SetMsgReceiver(HWND hWnd) { m_hMsgHanlder = hWnd; }
/*
note:
Join the channel callback.This callback method indicates that the client
successfully joined the specified channel.Channel ids are assigned based
on the channel name specified in the joinChannel. If IRtcEngine::joinChannel
is called without a user ID specified. The server will automatically assign one
parameters:
channel:channel name.
uid: user ID.If the UID is specified in the joinChannel, that ID is returned here;
Otherwise, use the ID automatically assigned by the Agora server.
elapsed: The Time from the joinChannel until this event occurred (ms).
*/
virtual void onJoinChannelSuccess(const char* channel, uid_t uid, int elapsed) override;
/*
note:
In the live broadcast scene, each anchor can receive the callback
of the new anchor joining the channel, and can obtain the uID of the anchor.
Viewers also receive a callback when a new anchor joins the channel and
get the anchor's UID.When the Web side joins the live channel, the SDK will
default to the Web side as long as there is a push stream on the
Web side and trigger the callback.
parameters:
uid: remote user/anchor ID for newly added channel.
elapsed: The joinChannel is called from the local user to the delay triggered
by the callback(ms).
*/
virtual void onUserJoined(uid_t uid, int elapsed) override;
/*
note:
Remote user (communication scenario)/anchor (live scenario) is called back from
the current channel.A remote user/anchor has left the channel (or dropped the line).
There are two reasons for users to leave the channel, namely normal departure and
time-out:When leaving normally, the remote user/anchor will send a message like
"goodbye". After receiving this message, determine if the user left the channel.
The basis of timeout dropout is that within a certain period of time
(live broadcast scene has a slight delay), if the user does not receive any
packet from the other side, it will be judged as the other side dropout.
False positives are possible when the network is poor. We recommend using the
Agora Real-time messaging SDK for reliable drop detection.
parameters:
uid: The user ID of an offline user or anchor.
reason:Offline reason: USER_OFFLINE_REASON_TYPE.
*/
virtual void onUserOffline(uid_t uid, USER_OFFLINE_REASON_TYPE reason) override;
/*
note:
When the App calls the leaveChannel method, the SDK indicates that the App
has successfully left the channel. In this callback method, the App can get
the total call time, the data traffic sent and received by THE SDK and other
information. The App obtains the call duration and data statistics received
or sent by the SDK through this callback.
parameters:
stats: Call statistics.
*/
virtual void onLeaveChannel(const RtcStats& stats) override;
/**
Occurs when the remote video state changes.
@note This callback does not work properly when the number of users (in the Communication profile) or broadcasters (in the Live-broadcast profile) in the channel exceeds 17.
@param uid ID of the remote user whose video state changes.
@param state State of the remote video. See #REMOTE_VIDEO_STATE.
@param reason The reason of the remote video state change. See
#REMOTE_VIDEO_STATE_REASON.
@param elapsed Time elapsed (ms) from the local user calling the
\ref agora::rtc::IRtcEngine::joinChannel "joinChannel" method until the
SDK triggers this callback.
*/
virtual void onRemoteVideoStateChanged(uid_t uid, REMOTE_VIDEO_STATE state, REMOTE_VIDEO_STATE_REASON reason, int elapsed) override;
private:
HWND m_hMsgHanlder = nullptr;
};
class CAgoraAudioProfile : public CDialogEx
{
DECLARE_DYNAMIC(CAgoraAudioProfile)
public:
CAgoraAudioProfile(CWnd* pParent = nullptr);
virtual ~CAgoraAudioProfile();
enum { IDD = IDD_DIALOG_AUDIO_PROFILE };
protected:
virtual void DoDataExchange(CDataExchange* pDX);
public:
//Initialize the Ctrl Text.
void InitCtrlText();
//Initialize the Agora SDK
bool InitAgora();
//UnInitialize the Agora SDK
void UnInitAgora();
//render local video from SDK local capture.
void RenderLocalVideo();
//resume window status
void ResumeStatus();
private:
bool m_joinChannel = false;
bool m_initialize = false;
bool m_setAudio = false;
char* mainchannelName = nullptr;
char * mSubChannelName =nullptr;
IRtcEngineEx* m_rtcEngine = nullptr;
CAGVideoWnd m_localVideoWnd;
CAudioProfileEventHandler m_eventHandler;
CAudioProfileEventHandler m_eventHandlerEx;
void joinSecondChannelAndStartAudioMixer();
void leaveSecondChannelAndStopAudioMixer();
RtcConnection m_exChannelRtcConn;
MixedAudioStream* sourceStreams = nullptr;
public:
LRESULT OnEIDJoinChannelSuccess(WPARAM wParam, LPARAM lParam);
LRESULT OnEIDLeaveChannel(WPARAM wParam, LPARAM lParam);
LRESULT OnEIDUserJoined(WPARAM wParam, LPARAM lParam);
LRESULT OnEIDUserOffline(WPARAM wParam, LPARAM lParam);
LRESULT OnEIDRemoteVideoStateChanged(WPARAM wParam, LPARAM lParam);
DECLARE_MESSAGE_MAP()
afx_msg void OnShowWindow(BOOL bShow, UINT nStatus);
virtual BOOL OnInitDialog();
virtual BOOL PreTranslateMessage(MSG* pMsg);
afx_msg void OnBnClickedButtonJoinchannel();
afx_msg void OnBnClickedButtonSetAudioProfile();
afx_msg void OnSelchangeListInfoBroadcasting();
public:
CStatic m_staVideoArea;
CStatic m_staChannel;
CEdit m_edtChannel;
CButton m_btnJoinChannel;
CStatic m_staAudioProfile;
CStatic m_staAudioScenario;
CComboBox m_cmbAudioProfile;
CComboBox m_cmbAudioScenario;
CButton m_btnSetAudioProfile;
CListBox m_lstInfo;
CStatic m_staDetail;
CEdit mDestChannelEc;
afx_msg void OnBnClickedButtonDestJoin();
afx_msg void OnBnClickedCheckSecond();
CButton mJoinSecondCheckbox;
};
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。