equal
deleted
inserted
replaced
|
1 /* |
|
2 * Copyright (c) 2002-2003 Nokia Corporation and/or its subsidiary(-ies). |
|
3 * All rights reserved. |
|
4 * This component and the accompanying materials are made available |
|
5 * under the terms of "Eclipse Public License v1.0" |
|
6 * which accompanies this distribution, and is available |
|
7 * at the URL "http://www.eclipse.org/legal/epl-v10.html". |
|
8 * |
|
9 * Initial Contributors: |
|
10 * Nokia Corporation - initial contribution. |
|
11 * |
|
12 * Contributors: |
|
13 * |
|
14 * Description: |
|
15 * |
|
16 */ |
|
17 |
|
18 |
|
19 |
|
20 |
|
21 #ifndef MCCDISPLAYSINKDEF_H |
|
22 #define MCCDISPLAYSINKDEF_H |
|
23 |
|
24 #include "rtpdef.h" |
|
25 |
|
26 // CONSTANTS |
|
27 _LIT8(KSDP,"Sdp"); |
|
28 _LIT8(KLIVESTREAM,"LiveStream"); |
|
29 |
|
30 /** |
|
31 * The audio/video pair |
|
32 * |
|
33 * @lib |
|
34 * @since |
|
35 */ |
|
36 class TAVPorts |
|
37 { |
|
38 public: |
|
39 TUint iAudioPort; |
|
40 TUint iVideoPort; |
|
41 }; |
|
42 |
|
43 /** |
|
44 * The parameters needed for local setup |
|
45 * |
|
46 * @lib |
|
47 * @since |
|
48 */ |
|
49 class TLocalParameters |
|
50 { |
|
51 public: |
|
52 TAVPorts iPorts; |
|
53 TRtpSdesParams iSdes; |
|
54 TRtcpParams iRtcpAudioParams; |
|
55 TRtcpParams iRtcpVideoParams; |
|
56 TRtpPayloadType iAudioPayloadType; |
|
57 TRtpPayloadType iVideoPayloadType; |
|
58 }; |
|
59 |
|
60 /** |
|
61 * The parameters needed for remote setup and swis communication. |
|
62 * |
|
63 * @lib |
|
64 * @since |
|
65 */ |
|
66 class TRemoteParameters |
|
67 { |
|
68 public: |
|
69 TInetAddr iRemoteAddrAudio; |
|
70 TInetAddr iRemoteAddrVideo; |
|
71 TPtrC8 iSdpText; |
|
72 TTimeIntervalMicroSeconds32 iPausedTimeOut; |
|
73 TTimeIntervalMicroSeconds32 iDisconnectedTimeOut; |
|
74 }; |
|
75 |
|
76 |
|
77 #endif // MCCDISPLAYSINKDEF_H |