videoeditorengine/mp3aacManipLib/AACGain/inc/sbr_bitmux.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 *
       
    17 */
       
    18 
       
    19 
       
    20 /*
       
    21   \file
       
    22   \brief SBR bitstream multiplexer interface $Revision: 1.1.1.1 $
       
    23 */
       
    24 
       
    25 /**************************************************************************
       
    26   sbr_bitmux.cpp - TBitStream definitions for SBR encoder.
       
    27  
       
    28   Author(s): Juha Ojanpera
       
    29   Copyright (c) 2004 by Nokia Research Center, Multimedia Technologies.
       
    30   *************************************************************************/
       
    31 
       
    32 #ifndef SBR_BITMUX_H_
       
    33 #define SBR_BITMUX_H_
       
    34 
       
    35 /*-- Project Headers. --*/
       
    36 #include "env_extr.h"
       
    37 
       
    38 int16
       
    39 SBR_WriteHeaderData(SbrHeaderData *headerData, 
       
    40                     TBitStream *bs, 
       
    41                     uint8 writeFlag);
       
    42 
       
    43 int16
       
    44 SBR_WriteSCE(SbrHeaderData *headerData,
       
    45              SbrFrameData *frameData,
       
    46              SbrExtensionData *sbrExtData,
       
    47              TBitStream *bs,
       
    48              uint8 isMono,
       
    49              uint8 writeFlag);
       
    50 
       
    51 int16
       
    52 SBR_WriteCPE(SbrHeaderData *headerData,
       
    53              SbrFrameData *frameDataLeft,
       
    54              SbrFrameData *frameDataRight,
       
    55              SbrExtensionData *sbrExtData,
       
    56              TBitStream *bs,
       
    57              uint8 writeFlag);
       
    58 
       
    59 #endif /*-- SBR_BITMUX_H_ --*/