equal
deleted
inserted
replaced
|
1 /* |
|
2 * Copyright (c) 2008 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: Container for MPX Video File Details |
|
15 * |
|
16 */ |
|
17 |
|
18 // Version : %version: 7 % |
|
19 |
|
20 |
|
21 |
|
22 |
|
23 #ifndef __MPXVIDEOFILEDETAILS__ |
|
24 #define __MPXVIDEOFILEDETAILS__ |
|
25 |
|
26 // |
|
27 // CLASS DECLARATION |
|
28 // |
|
29 NONSHARABLE_CLASS( CMPXVideoFileDetails ) : public CBase |
|
30 { |
|
31 public: |
|
32 // |
|
33 // Constructors and destructor |
|
34 // |
|
35 static CMPXVideoFileDetails* NewL(); |
|
36 |
|
37 // |
|
38 // Destructor. |
|
39 // |
|
40 virtual ~CMPXVideoFileDetails(); |
|
41 |
|
42 // |
|
43 // Clear all file details |
|
44 // |
|
45 void ClearFileDetails(); |
|
46 |
|
47 private: |
|
48 // |
|
49 // By default Symbian 2nd phase constructor is private. |
|
50 // |
|
51 void ConstructL(); |
|
52 |
|
53 public: |
|
54 // |
|
55 // Data |
|
56 // |
|
57 HBufC* iClipName; |
|
58 HBufC* iTitle; |
|
59 HBufC* iArtist; |
|
60 HBufC* iMimeType; |
|
61 |
|
62 |
|
63 TInt iResolutionWidth; |
|
64 TInt iResolutionHeight; |
|
65 TInt iMaxVolume; |
|
66 TInt iBitRate; |
|
67 |
|
68 TBool iSeekable; |
|
69 TBool iPausableStream; |
|
70 TBool iLiveStream; |
|
71 TBool iAudioEnabled; |
|
72 TBool iVideoEnabled; |
|
73 TBool iPartialPlayback; |
|
74 TBool iDrmProtected; |
|
75 TUint32 iFourCCCode; |
|
76 |
|
77 TTimeIntervalMicroSeconds iDuration; |
|
78 }; |
|
79 |
|
80 #endif // __MPXVIDEOFILEDETAILS__ |
|
81 |
|
82 // EOF |