videoeditorengine/h263decoder/inc/h263dconfig.h
branchRCL_3
changeset 3 e0b5df5c0969
parent 0 951a5db380a0
child 5 4c409de21d23
equal deleted inserted replaced
0:951a5db380a0 3:e0b5df5c0969
     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 * Definitions to port vedh263d to Symbian.
       
    17 *
       
    18 */
       
    19 
       
    20 
       
    21 #ifndef _H263DCONFIG_H_
       
    22 #define _H263DCONFIG_H_
       
    23 
       
    24 #include "h263dext.h"
       
    25 
       
    26 #if !defined(_DEBUG) && !defined(NDEBUG)
       
    27    #define _DEBUG
       
    28 #endif
       
    29 
       
    30 
       
    31 
       
    32 /* C standard libraries 
       
    33 
       
    34    header file    functions/macros/identifiers used
       
    35    ---------------------------------------------------------------------------
       
    36    assert.h       assert
       
    37    string.h       memcpy, memset
       
    38    stdlib.h       NULL, free, malloc, calloc, abs
       
    39    */
       
    40 
       
    41 #if defined(__SYMBIAN32__)
       
    42 #define __EPOC__
       
    43 #include "epoclib.h"
       
    44 #else
       
    45 #include <assert.h>
       
    46 #include <string.h>
       
    47 #include <stdlib.h>
       
    48 #endif
       
    49 
       
    50 /* Memory allocation wrappers for large (> 64 kB) memory chunks.
       
    51    Used in core, block and convert. Needed when compiling in
       
    52    systems with segmented memory (DOS, Windows 3.1) */
       
    53 #define HUGE
       
    54 #define MEMCPY memcpy
       
    55 #define MEMSET memset
       
    56 #define MALLOC malloc
       
    57 #define FREE free
       
    58 
       
    59 
       
    60 /* core.h */
       
    61 #define VDC_INLINE __inline
       
    62 
       
    63 /* debug */
       
    64 /* Controlled from the project settings or makefile */
       
    65 
       
    66 /* msgwrap etc. */
       
    67 #ifndef BUF_DS
       
    68    #define BUF_DS
       
    69 #endif
       
    70 
       
    71 #ifdef __MARM__
       
    72    #define __cdecl
       
    73    #define __stdcall
       
    74 #endif
       
    75 
       
    76 #endif 
       
    77 // End of File