equal
deleted
inserted
replaced
|
1 /* |
|
2 * Copyright (c) 2007-2009 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 the License "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: Observer for .rtp to .3gp file converter* |
|
15 */ |
|
16 |
|
17 |
|
18 |
|
19 |
|
20 #ifndef MIPTVRTPTO3GPOBSERVER_H |
|
21 #define MIPTVRTPTO3GPOBSERVER_H |
|
22 |
|
23 #include <e32base.h> |
|
24 |
|
25 class CIptvRtpTo3gpConverter; |
|
26 |
|
27 /** |
|
28 * Observer for .rtp to .3gp file converter |
|
29 * |
|
30 * @lib IptvUtil |
|
31 * @since S60 v3.1 |
|
32 */ |
|
33 class MIptvRtpTo3gpObserver |
|
34 { |
|
35 public: |
|
36 /** |
|
37 * Notification for .rtp to .3gp conversion completed |
|
38 * @param aConverter reference to converter reporting conversion ready |
|
39 * @param aError KErrNone on conversion success, system error code otherwise |
|
40 */ |
|
41 virtual void RtpTo3gpConversionReady( CIptvRtpTo3gpConverter& aConverter, TInt aError ) = 0; |
|
42 }; |
|
43 |
|
44 #endif // MIPTVRTPTO3GPOBSERVER_H |