rtp_proxy.c: Correctly set msg_type to GSM_TCH_FRAME_AMR on AMR

When forwarding AMR from RTP towards the MNCC interface, we need to set
the apropriate msg_type.  Before this patch it was unitialized,
resulting in improper/unknown msg_types of messages on the MNCC
interface.
diff --git a/openbsc/src/libtrau/rtp_proxy.c b/openbsc/src/libtrau/rtp_proxy.c
index 9251dec..122daf2 100644
--- a/openbsc/src/libtrau/rtp_proxy.c
+++ b/openbsc/src/libtrau/rtp_proxy.c
@@ -196,6 +196,7 @@
 		}
 		break;
 	case RTP_PT_AMR:
+		msg_type = GSM_TCH_FRAME_AMR;
 		break;
 	default:
 		DEBUGPC(DLMUX, "received RTP frame with unknown payload "