JLChen
2020-10-27 3c696793619750511f660d2b0ff8b303cb9fd081
hdl_core/src/main/java/com/hdl/sdk/hdl_core/HDLDeviceManger/Core/HDLDeviceManager.java
@@ -2545,6 +2545,7 @@
     * @param getDatas
     */
    private static void handleAudioData(UdpDataBean getDatas) {
//        HDLLog.info("处理HDL音乐协议");
        outter:
        for (int i = 0, len = devicesDataList.size(); i < len; i++) {
            if (devicesDataList.get(i).getSourceSubnetID() == getDatas.sourceSubnetID
@@ -2554,7 +2555,7 @@
                for (int j = 0, len2 = infos.size(); j < len2; j++) {
                    if (infos.get(j).getBigType() == Configuration.AUDIO_BIG_TYPE) {
                        //暂时只支持旧版背景音乐
                        if (infos.get(j).getDeviceType() == HDLApConfig.TYPE_MUSIC_MODULE) {
                        if (infos.get(j).getDeviceType() == HDLApConfig.TYPE_MUSIC_MODULE || infos.get(j).getDeviceType() == HDLApConfig.TYPE_MUSIC_NEW_MODULE) {
                            HDLAudio.parseAudioData(getDatas, infos.get(j));
                        }
                        break outter;