call_leg: remove unused event MSC_EV_CALL_LEG_RTP_RELEASED

The event is actually never dispatched and useless, because when an RTP stream
releases, the call_leg terminates directly anyway (which wasn't apparent when
starting to design the call_leg FSM yet).

Change-Id: I6b2fc1225c960fa2f7c46adf241520217a07821c
diff --git a/include/osmocom/msc/call_leg.h b/include/osmocom/msc/call_leg.h
index b8126e8..61107ee 100644
--- a/include/osmocom/msc/call_leg.h
+++ b/include/osmocom/msc/call_leg.h
@@ -36,7 +36,6 @@
 
 	uint32_t parent_event_rtp_addr_available;
 	uint32_t parent_event_rtp_complete;
-	uint32_t parent_event_rtp_released;
 
 	/* For internal MNCC, if RTP addresses for endpoints become assigned by the MGW, implicitly notify the other
 	 * call leg's RTP_TO_CN side rtp_stream with rtp_stream_remote_addr_available(). */
@@ -58,15 +57,13 @@
 struct call_leg *call_leg_alloc(struct osmo_fsm_inst *parent_fi,
 				uint32_t parent_event_term,
 				uint32_t parent_event_rtp_addr_available,
-				uint32_t parent_event_rtp_complete,
-				uint32_t parent_event_rtp_released);
+				uint32_t parent_event_rtp_complete);
 
 void call_leg_reparent(struct call_leg *cl,
 		       struct osmo_fsm_inst *parent_fi,
 		       uint32_t parent_event_term,
 		       uint32_t parent_event_rtp_addr_available,
-		       uint32_t parent_event_rtp_complete,
-		       uint32_t parent_event_rtp_released);
+		       uint32_t parent_event_rtp_complete);
 
 int call_leg_local_bridge(struct call_leg *cl1, uint32_t call_id1, struct gsm_trans *trans1,
 			  struct call_leg *cl2, uint32_t call_id2, struct gsm_trans *trans2);