KT25-0812_82A-UART/apps/soundbox/include/task_manager/music/music.h

22 lines
484 B
C
Raw Permalink Normal View History

2025-08-12 10:09:23 +00:00
#ifndef __MUSIC_NEW_H__
#define __MUSIC_NEW_H__
#include "system/app_core.h"
#include "system/includes.h"
#include "server/server_core.h"
#include "media/audio_decoder.h"
#include "music_player.h"
enum {
MUSIC_TASK_START_BY_NORMAL = 0x0,
MUSIC_TASK_START_BY_BREAKPOINT,
MUSIC_TASK_START_BY_SCLUST,
MUSIC_TASK_START_BY_NUMBER,
MUSIC_TASK_START_BY_PATH,
};
void music_task_set_parm(u8 type, int val);
void music_player_err_deal(int err);
#endif//__MUSIC_NEW_H__