mmfenh/enhancedaudioplayerutility/AudioStreaming/AudioClientStreamSource/inc/MS60AudioStreamSourceObserver.h
equal
deleted
inserted
replaced
|
1 /* |
|
2 * Copyright (c) 2004 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: This file contains definitions of the queue item class. |
|
15 * |
|
16 */ |
|
17 |
|
18 |
|
19 #ifndef __MS60AUDIOSTREAMSOURCEOBSERVER_H__ |
|
20 #define __MS60AUDIOSTREAMSOURCEOBSERVER_H__ |
|
21 |
|
22 // INCLUDES |
|
23 #include "MS60AudioSourceObserver.h" |
|
24 #include "S60ClientAudioBuffer.h" |
|
25 |
|
26 /** |
|
27 * This is the S60 Audio Base Player observer class. |
|
28 * |
|
29 * @since 3.1 |
|
30 */ |
|
31 class MS60AudioStreamSourceObserver : public MS60AudioBaseSourceObserver |
|
32 { |
|
33 public: |
|
34 /** |
|
35 * Callback for the App that the Buffer is processed |
|
36 * @since Series 60 3.1 |
|
37 * @param aBuffer The Buffer which was processed |
|
38 * @param aStatus Buffer Status after it was processed |
|
39 */ |
|
40 virtual void BufferProcessed(CClientAudioBuffer& aBuffer, TInt aStatus) = 0; |
|
41 }; |
|
42 |
|
43 #endif // __MS60AUDIOSTREAMSOURCEOBSERVER_H__ |
|
44 |
|
45 // End of File |