IuUP_Emulation: fix AMR SID SDU size

See 3GPP TS 26.102 Table 6-2, an AMR SID should have 39 bits.

Change-Id: I9afb28ca6e23f7976edcc130ea012be34e04eb4b
diff --git a/library/IuUP_Emulation.ttcn b/library/IuUP_Emulation.ttcn
index b649e44..3bda958 100644
--- a/library/IuUP_Emulation.ttcn
+++ b/library/IuUP_Emulation.ttcn
@@ -35,7 +35,7 @@
 }
 
 template (value) IuUP_RabFlowCombination t_IuUP_RFC_AMR_12_2(IuUP_RFCI rfci) := t_IuUP_RFC(rfci, {81, 103, 60}, 1);
-template (value) IuUP_RabFlowCombination t_IuUP_RFC_AMR_SID(IuUP_RFCI rfci) := t_IuUP_RFC(rfci, {34, 0, 0}, 7);
+template (value) IuUP_RabFlowCombination t_IuUP_RFC_AMR_SID(IuUP_RFCI rfci) := t_IuUP_RFC(rfci, {39, 0, 0}, 7);
 template (value) IuUP_RabFlowCombination t_IuUP_RFC_AMR_NO_DATA(IuUP_RFCI rfci) := t_IuUP_RFC(rfci, {0, 0, 0}, 1);
 
 
@@ -46,7 +46,7 @@
 		ipti := 1
 	}, {
 		rfci := 1,
-		sub_flow_bits := {34, 0, 0},
+		sub_flow_bits := {39, 0, 0},
 		ipti := 7
 	}, {
 		rfci := 2,