TWSP-HFP: perform post sco close action after sco close during codec negotiation

In some corner case, end call happened during codec negotiation, so will call
close sco first, then send indicator values. But BTA AG SCO is in CODEC_ST
state, close sco just move SCO SM state from CODEC_ST to LISTEN_ST, end call
indicator will no chance to send in this situation.

Change-Id: Iaee38f253c824283568835bfe221ef781de0afea
diff --git a/system_bt_ext/bta/tws_plus/ag/bta_ag_twsp_sco.cc b/system_bt_ext/bta/tws_plus/ag/bta_ag_twsp_sco.cc
index 21c4023..2cfcdc2 100644
--- a/system_bt_ext/bta/tws_plus/ag/bta_ag_twsp_sco.cc
+++ b/system_bt_ext/bta/tws_plus/ag/bta_ag_twsp_sco.cc
@@ -258,6 +258,8 @@
             case BTA_AG_SCO_CLOSE_E:
                 /* sco open is not started yet. just go back to listening */
                 p_sco->state = BTA_AG_SCO_LISTEN_ST;
+                APPL_TRACE_WARNING("%s: perform post sco close action to send indicator", __func__);
+                bta_ag_post_sco_close(p_scb, NULL);
                 /*call app callback so that btif and app state
                 / go back to audio disconnected state*/
                 APPL_TRACE_WARNING("%s: SCO close during codec negotiation", __func__);