Fix analyzer
This commit is contained in:
parent
bed074d0c9
commit
5367d9d037
|
@ -63,11 +63,8 @@ class _AudioPlayerState extends State<AudioPlayer> {
|
||||||
}
|
}
|
||||||
|
|
||||||
_playAction() async {
|
_playAction() async {
|
||||||
print("Current mxc: ${AudioPlayer.currentMxc}");
|
|
||||||
if (AudioPlayer.currentMxc != widget.content.mxc) {
|
if (AudioPlayer.currentMxc != widget.content.mxc) {
|
||||||
if (AudioPlayer.currentMxc != null) {
|
if (AudioPlayer.currentMxc != null) {
|
||||||
print("Current mxc is wrong!");
|
|
||||||
print("Current audioState: ${flutterSound.audioState}");
|
|
||||||
if (flutterSound.audioState != t_AUDIO_STATE.IS_STOPPED) {
|
if (flutterSound.audioState != t_AUDIO_STATE.IS_STOPPED) {
|
||||||
await flutterSound.stopPlayer();
|
await flutterSound.stopPlayer();
|
||||||
setState(() => null);
|
setState(() => null);
|
||||||
|
@ -85,7 +82,6 @@ class _AudioPlayerState extends State<AudioPlayer> {
|
||||||
case t_AUDIO_STATE.IS_RECORDING:
|
case t_AUDIO_STATE.IS_RECORDING:
|
||||||
break;
|
break;
|
||||||
case t_AUDIO_STATE.IS_STOPPED:
|
case t_AUDIO_STATE.IS_STOPPED:
|
||||||
print("start Player From Buffer");
|
|
||||||
await flutterSound.startPlayerFromBuffer(
|
await flutterSound.startPlayerFromBuffer(
|
||||||
audioFile,
|
audioFile,
|
||||||
codec: t_CODEC.CODEC_AAC,
|
codec: t_CODEC.CODEC_AAC,
|
||||||
|
|
Loading…
Reference in a new issue