fuliqi
2024-08-29 4163c93761115c7524ef74a557a1f5e01eafb429
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
package com.ycl.api.YS.liveview.live;
 
import com.ycl.api.YS.NetDemo;
 
import javax.swing.*;
 
public class Mute {
    /**
     * 
     * @introduction Set the mute state
     * @description Calling the interface of NETDEV_SetMuteStatus to set the mute state,
     * 0 represents mute and 1 represents non-mute
     *
     */
    public static void changeMuteStatus() {
        if(null == NetDemo.lpUserID){
            JOptionPane.showMessageDialog(null, "Please Login device first. error code"+NetDemo.netdevsdk.NETDEV_GetLastError());
            return;
        }
        /* Open talk intercom but close live preview */
        if(NetDemo.lpPlayHandle==null&&NetDemo.lpTalkHandle!=null){
            if(NetDemo.getMute2==0) {
                boolean bRet= NetDemo.netdevsdk.NETDEV_SetMuteStatus(NetDemo.lpTalkHandle,NetDemo.getMute2);
                if(bRet) {                   
                    boolean bRet1=NetDemo.netdevsdk.NETDEV_CloseSound(NetDemo.lpTalkHandle);
                    if(bRet1) {
                        JOptionPane.showMessageDialog(null, "Open the mute success");                      
                        NetDemo.getMute2=1;
                        NetDemo.jSliderLiveSound.setEnabled(false);
                    }else {
                        JOptionPane.showMessageDialog(null, "Open the mute failed,error code"+NetDemo.netdevsdk.NETDEV_GetLastError());
                    }
                }else {
                    JOptionPane.showMessageDialog(null, "SetMuteStatus failed,error code"+NetDemo.netdevsdk.NETDEV_GetLastError());
                    System.out.println("netdevsdk.NETDEV_SetMuteStatus failed" +NetDemo.netdevsdk.NETDEV_GetLastError());
                    return;
                }
 
            }
            else if(NetDemo.getMute2==1) {
                boolean bRet= NetDemo.netdevsdk.NETDEV_SetMuteStatus(NetDemo.lpTalkHandle,NetDemo.getMute2);
                if(bRet) {
                    boolean bRet1=NetDemo.netdevsdk.NETDEV_OpenSound(NetDemo.lpTalkHandle);
                    if(bRet1) {
                        JOptionPane.showMessageDialog(null, "Close the mute  success");
                        NetDemo.getMute2=0;
                        NetDemo.jSliderLiveSound.setValue(120);
                        NetDemo.jSliderLiveSound.setEnabled(true);
                    }else {
                        JOptionPane.showMessageDialog(null, "Close the mute failed,error code"+NetDemo.netdevsdk.NETDEV_GetLastError());
                    }
                }else {
                    JOptionPane.showMessageDialog(null, "SetMuteStatus failed,error code"+NetDemo.netdevsdk.NETDEV_GetLastError());
                    System.out.println("netdevsdk.NETDEV_SetMuteStatus failed" +NetDemo.netdevsdk.NETDEV_GetLastError());
                    return;
                }
            }
        }
        /* Open live preview and talk intercom */
        else if(NetDemo.lpPlayHandle!=null&&NetDemo.lpTalkHandle!=null) {
            if (NetDemo.getMute2 == 0) {
                boolean bRet = NetDemo.netdevsdk.NETDEV_SetMuteStatus(NetDemo.lpTalkHandle, NetDemo.getMute2);
                if (bRet) {
                        boolean bRet1 = NetDemo.netdevsdk.NETDEV_CloseSound(NetDemo.lpTalkHandle);
                        if (bRet1) {
                            JOptionPane.showMessageDialog(null, "Open the mute success");
                            NetDemo.getMute2 = 1;
                            NetDemo.jSliderLiveSound.setEnabled(false);
                        } else {
                            JOptionPane.showMessageDialog(null, "Open the mute failed,error code" + NetDemo.netdevsdk.NETDEV_GetLastError());
                        }
 
                } else {
                    JOptionPane.showMessageDialog(null, "Set MuteStatus failed,error code" + NetDemo.netdevsdk.NETDEV_GetLastError());
                    System.out.println("netdevsdk.NETDEV_SetMuteStatus failed" + NetDemo.netdevsdk.NETDEV_GetLastError());
                    return;
                }
            } else if (NetDemo.getMute2 == 1) {
                boolean bRet = NetDemo.netdevsdk.NETDEV_SetMuteStatus(NetDemo.lpTalkHandle, NetDemo.getMute2);
                if (bRet) {
                        boolean bRet1 = NetDemo.netdevsdk.NETDEV_OpenSound(NetDemo.lpTalkHandle);
                        if (bRet1) {
                            JOptionPane.showMessageDialog(null, "Close the mute success");
                            NetDemo.getMute2 = 0;
                            NetDemo.jSliderLiveSound.setValue(120);
                            NetDemo.jSliderLiveSound.setEnabled(true);
                            
                        } else {
                            JOptionPane.showMessageDialog(null, "Close the mute failed,error code" + NetDemo.netdevsdk.NETDEV_GetLastError());
                        }
                    } else {
                        JOptionPane.showMessageDialog(null, "Set MuteStatus failed,error code" + NetDemo.netdevsdk.NETDEV_GetLastError());
                        System.out.println("netdevsdk.NETDEV_SetMuteStatus failed" + NetDemo.netdevsdk.NETDEV_GetLastError());
                        return;
                    }
            }
            /* Open live preview but close talk intercom */
        }else if (NetDemo.lpPlayHandle != null &&NetDemo.lpTalkHandle == null) {
                if(NetDemo.getMute2==0) {
                    boolean bRet= NetDemo.netdevsdk.NETDEV_SetMuteStatus(NetDemo.lpPlayHandle,NetDemo.getMute2);
                    if(bRet) {
                        boolean bRet1=NetDemo.netdevsdk.NETDEV_CloseSound(NetDemo.lpPlayHandle);
                        if(bRet1) {
                            JOptionPane.showMessageDialog(null, "Open the mute success");
                            NetDemo.getMute2=1;
                            NetDemo.jSliderLiveSound.setEnabled(false);
                        }else {
                            JOptionPane.showMessageDialog(null, "Open the mute failed,error code"+NetDemo.netdevsdk.NETDEV_GetLastError());
                        }
                    }else {
                        JOptionPane.showMessageDialog(null, "SetMuteStatus failed,error code"+NetDemo.netdevsdk.NETDEV_GetLastError());
                        System.out.println("netdevsdk.NETDEV_SetMuteStatus failed" +NetDemo.netdevsdk.NETDEV_GetLastError());
                        return;
                    }
 
                }
                else if(NetDemo.getMute2==1) {
                    boolean bRet= NetDemo.netdevsdk.NETDEV_SetMuteStatus(NetDemo.lpPlayHandle,NetDemo.getMute2);
                    if(bRet) {
                        boolean bRet1=NetDemo.netdevsdk.NETDEV_OpenSound(NetDemo.lpPlayHandle);
                        if(bRet1) {
                            JOptionPane.showMessageDialog(null, "Close the mute success");
                            NetDemo.getMute2=0;
                            NetDemo.jSliderLiveSound.setValue(120);
                            NetDemo.jSliderLiveSound.setEnabled(true);
                        }else {
                            JOptionPane.showMessageDialog(null, "Close the mute failed,error code"+NetDemo.netdevsdk.NETDEV_GetLastError());
                        }
                    }else {
                        JOptionPane.showMessageDialog(null, "SetMuteStatus failed,error code"+NetDemo.netdevsdk.NETDEV_GetLastError());
                        System.out.println("netdevsdk.NETDEV_SetMuteStatus failed" +NetDemo.netdevsdk.NETDEV_GetLastError());
                        return;
                    }
                }
            }
    }
}