| 1 | package cz.vutbr.feec.session.rtprtcp.internal; |
| 2 | /** |
| 3 | * The Class PayloadType constants. |
| 4 | */ |
| 5 | public final class PayloadType { |
| 6 | // PCMU Audio 8000 1 RFC 3551 |
| 7 | /** The Constant PCMU. */ |
| 8 | public final static int PCMU = 0; |
| 9 | // 1016 Audio 8000 1 |
| 10 | /** The Constant _1016. */ |
| 11 | public final static int _1016 = 1; |
| 12 | //G721 Audio 8000 1 RFC 3551 |
| 13 | /** The Constant G721. */ |
| 14 | public final static int G721 = 2; |
| 15 | //3 GSM Audio 8000 1 RFC 3551 |
| 16 | /** The Constant GSM. */ |
| 17 | public final static int GSM = 3; |
| 18 | |
| 19 | /** The Constant G723_8000. */ |
| 20 | public final static int G723_8000 = 4; |
| 21 | |
| 22 | /** The Constant G723_8000. */ |
| 23 | public final static int DVI_8000 = 5; |
| 24 | |
| 25 | // VIDEO |
| 26 | public final static int H263 = 34; |
| 27 | |
| 28 | } |