Home | History | Annotate | Download | only in aacdec
      1 /* ------------------------------------------------------------------
      2  * Copyright (C) 1998-2009 PacketVideo
      3  *
      4  * Licensed under the Apache License, Version 2.0 (the "License");
      5  * you may not use this file except in compliance with the License.
      6  * You may obtain a copy of the License at
      7  *
      8  *      http://www.apache.org/licenses/LICENSE-2.0
      9  *
     10  * Unless required by applicable law or agreed to in writing, software
     11  * distributed under the License is distributed on an "AS IS" BASIS,
     12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
     13  * express or implied.
     14  * See the License for the specific language governing permissions
     15  * and limitations under the License.
     16  * -------------------------------------------------------------------
     17  */
     18 /*
     19 
     20  Pathname: ./include/get_ics_info.h
     21 
     22 ------------------------------------------------------------------------------
     23  REVISION HISTORY
     24 
     25  Who:                       Date:
     26  Description:
     27 
     28 ------------------------------------------------------------------------------
     29  INCLUDE DESCRIPTION
     30 
     31  Contains the declaration for the function get_ics_info()
     32 
     33 ------------------------------------------------------------------------------
     34 */
     35 
     36 /*----------------------------------------------------------------------------
     37 ; CONTINUE ONLY IF NOT ALREADY DEFINED
     38 ----------------------------------------------------------------------------*/
     39 #ifndef GET_ICS_INFO_H
     40 #define GET_ICS_INFO_H
     41 
     42 #ifdef __cplusplus
     43 extern "C"
     44 {
     45 #endif
     46 
     47     /*----------------------------------------------------------------------------
     48     ; INCLUDES
     49     ----------------------------------------------------------------------------*/
     50 #include "pv_audio_type_defs.h"
     51 #include "e_tmp4audioobjecttype.h"
     52 #include "s_bits.h"
     53 #include "e_window_sequence.h"
     54 #include "e_window_shape.h"
     55 #include "s_frameinfo.h"
     56 #include "s_lt_pred_status.h"
     57 
     58     /*----------------------------------------------------------------------------
     59     ; MACROS
     60     ; Define module specific macros here
     61     ----------------------------------------------------------------------------*/
     62 
     63     /*----------------------------------------------------------------------------
     64     ; DEFINES
     65     ; Include all pre-processor statements here.
     66     ----------------------------------------------------------------------------*/
     67 
     68     /*----------------------------------------------------------------------------
     69     ; EXTERNAL VARIABLES REFERENCES
     70     ; Declare variables used in this module but defined elsewhere
     71     ----------------------------------------------------------------------------*/
     72 
     73     /*----------------------------------------------------------------------------
     74     ; SIMPLE TYPEDEF'S
     75     ----------------------------------------------------------------------------*/
     76 
     77     /*----------------------------------------------------------------------------
     78     ; ENUMERATED TYPEDEF'S
     79     ----------------------------------------------------------------------------*/
     80 
     81     /*----------------------------------------------------------------------------
     82     ; STRUCTURES TYPEDEF'S
     83     ----------------------------------------------------------------------------*/
     84 
     85     /*----------------------------------------------------------------------------
     86     ; GLOBAL FUNCTION DEFINITIONS
     87     ; Function Prototype declaration
     88     ----------------------------------------------------------------------------*/
     89     Int get_ics_info(
     90         const tMP4AudioObjectType  audioObjectType,
     91         BITS                      *pInputStream,
     92         const Bool                 common_window,
     93         WINDOW_SEQUENCE           *p_wnd,
     94         WINDOW_SHAPE              *pWindowShape,
     95         Int                        group[],
     96         Int                       *p_max_sfb,
     97         FrameInfo                 *p_winmap[],
     98         LT_PRED_STATUS            *pFirstLTPStatus,
     99         LT_PRED_STATUS            *pSecondLTPStatus);
    100 
    101 
    102 #ifdef __cplusplus
    103 }
    104 #endif
    105 
    106 /*----------------------------------------------------------------------------
    107 ; END
    108 ----------------------------------------------------------------------------*/
    109 #endif /* GET_ICS_INFO_H */
    110 
    111 
    112