videoeditorengine/h263decoder/inc/vdefrt.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 * A header file for vdefrt.c.
       
    17 *
       
    18 */
       
    19 
       
    20 
       
    21 #ifndef _VDEFRT_H_
       
    22 #define _VDEFRT_H_
       
    23 
       
    24 
       
    25 /*
       
    26  * Includes
       
    27  */
       
    28 
       
    29 
       
    30 #include "h263dapi.h"
       
    31 #include "list.h"
       
    32 
       
    33 
       
    34 /*
       
    35  * Defines
       
    36  */
       
    37 
       
    38 /*
       
    39  * Structures and typedefs
       
    40  */
       
    41 
       
    42 /* {{-output"vdeFrtStore_t_info.txt" -ignore"*" -noCR}}
       
    43    This structure is used to store the internal state of one frame type
       
    44    container instance. A pointer to this structure is passed to 
       
    45    the VDE Frame Type Container module functions to indicate the container
       
    46    instance which the functions should handle.
       
    47    {{-output"vdeFrtStore_t_info.txt"}} */
       
    48 
       
    49 /* {{-output"vdeFrtStore_t.txt"}} */
       
    50 typedef struct {
       
    51    lst_t sizeList;
       
    52 } vdeFrtStore_t;
       
    53 /* {{-output"vdeFrtStore_t.txt"}} */
       
    54 
       
    55 
       
    56 /*
       
    57  * Function prototypes
       
    58  */
       
    59 
       
    60 int vdeFrtClose(vdeFrtStore_t *store);
       
    61 
       
    62 int vdeFrtGetItem(vdeFrtStore_t *store, h263dFrameType_t *frameType, 
       
    63    u_int32 *item);
       
    64 
       
    65 int vdeFrtOpen(vdeFrtStore_t *store);
       
    66 
       
    67 int vdeFrtPutItem(vdeFrtStore_t *store, h263dFrameType_t *frameType, 
       
    68    u_int32 item, void (*removeItem) (void *));
       
    69 
       
    70 int vdeFrtRemoveItem(vdeFrtStore_t *store, h263dFrameType_t *frameType);
       
    71 
       
    72 #endif
       
    73 // End of File