videoeditorengine/vedtranscoder/inc/ctrvideopicturesink.h
changeset 0 951a5db380a0
equal deleted inserted replaced
-1:000000000000 0:951a5db380a0
       
     1 /*
       
     2 * Copyright (c) 2010 Ixonos Plc.
       
     3 * All rights reserved.
       
     4 * This component and the accompanying materials are made available
       
     5 * under the terms of the "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 * Ixonos Plc
       
    14 *
       
    15 * Description:  
       
    16 * Transcoder observer.
       
    17 *
       
    18 */
       
    19 
       
    20 
       
    21 #ifndef CTRVIDEOPICTURESINK_H
       
    22 #define CTRVIDEOPICTURESINK_H
       
    23 
       
    24 
       
    25 // INCLUDES
       
    26 #include "ctrcommon.h"
       
    27 
       
    28 
       
    29 /**
       
    30 *  Transcoder observer interface class. Every client should implement this class. 
       
    31 *  @lib TRANSCODER.LIB
       
    32 *  @since 3.1
       
    33 */
       
    34 class MTRVideoPictureSink
       
    35     {
       
    36     public:
       
    37         /**
       
    38         * Sends videopicture to the client (if retrieve intermediate content was called) / returns encoded picture back
       
    39         * @param TTRVideoPicture Uncompressed videopicture
       
    40         * @return void
       
    41         */
       
    42         virtual void MtroPictureFromTranscoder(TTRVideoPicture* aPicture) = 0;
       
    43     };
       
    44 
       
    45 
       
    46 #endif  // CTRVIDEOPICTURESINK_H