dvrengine/CommonRecordingEngine/DvrRtpClipHandler/inc/CRtpFromFile.inl
branchRCL_3
changeset 22 826cea16efd9
parent 21 798ee5f1972c
child 23 13a33d82ad98
equal deleted inserted replaced
21:798ee5f1972c 22:826cea16efd9
     1 /*
       
     2 * Copyright (c) 2007 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:    Implementation of the Common Recording Engine RTP read format*
       
    15 */
       
    16 
       
    17 
       
    18 
       
    19 
       
    20 
       
    21 // INCLUDE FILES
       
    22 
       
    23 // ============================ MEMBER FUNCTIONS ===============================
       
    24 
       
    25 // -----------------------------------------------------------------------------
       
    26 // CRtpFromFile::Duration
       
    27 // Getter for current duration of the clip.
       
    28 // -----------------------------------------------------------------------------
       
    29 //
       
    30 inline TUint CRtpFromFile::Duration()
       
    31     {
       
    32     return iDuration;
       
    33     }
       
    34 
       
    35 // -----------------------------------------------------------------------------
       
    36 // CRtpFromFile::ThisGroup
       
    37 // Getter for currently active group point.
       
    38 // -----------------------------------------------------------------------------
       
    39 //
       
    40 inline TInt CRtpFromFile::ThisGroup()
       
    41     {
       
    42     return iThisGroup;
       
    43     }
       
    44 
       
    45 // -----------------------------------------------------------------------------
       
    46 // CRtpFromFile::IsTimeShift
       
    47 // Getter for time shift mode.
       
    48 // -----------------------------------------------------------------------------
       
    49 //
       
    50 inline TBool CRtpFromFile::IsTimeShift()
       
    51     {
       
    52     return ( iMode == EModeTimeShift );
       
    53     }
       
    54     
       
    55 // End of File