videoeditorengine/h263decoder/inc/decmbs.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 * Header for multiple macroblock decoding module.
       
    17 *
       
    18 */
       
    19 
       
    20 
       
    21 
       
    22 #ifndef _DECMBS_H_
       
    23 #define _DECMBS_H_
       
    24 
       
    25 /*
       
    26  * Includes
       
    27  */
       
    28 
       
    29 #include "decmb.h"
       
    30 
       
    31 
       
    32 /*
       
    33  * Defines
       
    34  */
       
    35 
       
    36 // unify error codes
       
    37 #define DMBS_OK H263D_OK
       
    38 #define DMBS_ERR H263D_ERROR
       
    39 
       
    40 
       
    41 /*
       
    42  * Function prototypes
       
    43  */
       
    44 
       
    45 int dmbsGetAndDecodeIMBsInScanOrder(
       
    46    const dmbIFrameMBInParam_t *inParam,
       
    47    dmbIFrameMBInOutParam_t *inOutParam,
       
    48    int *quant, CMPEG4Transcoder *hTranscoder);
       
    49 
       
    50 int dmbsGetAndDecodePMBsInScanOrder(
       
    51    const dmbPFrameMBInParam_t *inParam,
       
    52    dmbPFrameMBInOutParam_t *inOutParam,
       
    53    int *quant, CMPEG4Transcoder *hTranscoder);
       
    54 
       
    55 int dmbsGetAndDecodeIMBsDataPartitioned(
       
    56    dmbIFrameMBInParam_t *inParam,
       
    57    dmbIFrameMBInOutParam_t *inOutParam,
       
    58    int *quantParams, CMPEG4Transcoder *hTranscoder);
       
    59 
       
    60 int dmbsGetAndDecodePMBsDataPartitioned(
       
    61    const dmbPFrameMBInParam_t *inParam,
       
    62    dmbPFrameMBInOutParam_t *inOutParam,
       
    63    int *quantParams, CMPEG4Transcoder *hTranscoder);
       
    64    
       
    65 #endif
       
    66 // End of File