tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

API.h (8421B)


      1 /***********************************************************************
      2 Copyright (c) 2006-2011, Skype Limited. All rights reserved.
      3 Redistribution and use in source and binary forms, with or without
      4 modification, are permitted provided that the following conditions
      5 are met:
      6 - Redistributions of source code must retain the above copyright notice,
      7 this list of conditions and the following disclaimer.
      8 - Redistributions in binary form must reproduce the above copyright
      9 notice, this list of conditions and the following disclaimer in the
     10 documentation and/or other materials provided with the distribution.
     11 - Neither the name of Internet Society, IETF or IETF Trust, nor the
     12 names of specific contributors, may be used to endorse or promote
     13 products derived from this software without specific prior written
     14 permission.
     15 THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
     16 AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
     17 IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
     18 ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
     19 LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
     20 CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
     21 SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
     22 INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
     23 CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
     24 ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
     25 POSSIBILITY OF SUCH DAMAGE.
     26 ***********************************************************************/
     27 
     28 #ifndef SILK_API_H
     29 #define SILK_API_H
     30 
     31 #include "control.h"
     32 #include "typedef.h"
     33 #include "errors.h"
     34 #include "entenc.h"
     35 #include "entdec.h"
     36 
     37 #ifdef ENABLE_DEEP_PLC
     38 #include "lpcnet_private.h"
     39 #endif
     40 
     41 #ifdef __cplusplus
     42 extern "C"
     43 {
     44 #endif
     45 
     46 #define SILK_MAX_FRAMES_PER_PACKET  3
     47 
     48 /* Struct for TOC (Table of Contents) */
     49 typedef struct {
     50    opus_int    VADFlag;                                /* Voice activity for packet                            */
     51    opus_int    VADFlags[ SILK_MAX_FRAMES_PER_PACKET ]; /* Voice activity for each frame in packet              */
     52    opus_int    inbandFECFlag;                          /* Flag indicating if packet contains in-band FEC       */
     53 } silk_TOC_struct;
     54 
     55 /****************************************/
     56 /* Encoder functions                    */
     57 /****************************************/
     58 
     59 /***********************************************/
     60 /* Get size in bytes of the Silk encoder state */
     61 /***********************************************/
     62 opus_int silk_Get_Encoder_Size(                         /* O    Returns error code                              */
     63    opus_int                        *encSizeBytes,      /* O    Number of bytes in SILK encoder state           */
     64    opus_int                         channels           /* I    Number of channels                              */
     65 );
     66 
     67 /*************************/
     68 /* Init or reset encoder */
     69 /*************************/
     70 opus_int silk_InitEncoder(                              /* O    Returns error code                              */
     71    void                            *encState,          /* I/O  State                                           */
     72    int                              channels,          /* I    Number of channels                              */
     73    int                              arch,              /* I    Run-time architecture                           */
     74    silk_EncControlStruct           *encStatus          /* O    Encoder Status                                  */
     75 );
     76 
     77 /**************************/
     78 /* Encode frame with Silk */
     79 /**************************/
     80 /* Note: if prefillFlag is set, the input must contain 10 ms of audio, irrespective of what                     */
     81 /* encControl->payloadSize_ms is set to                                                                         */
     82 opus_int silk_Encode(                                   /* O    Returns error code                              */
     83    void                            *encState,          /* I/O  State                                           */
     84    silk_EncControlStruct           *encControl,        /* I    Control status                                  */
     85    const opus_res                  *samplesIn,         /* I    Speech sample input vector                      */
     86    opus_int                        nSamplesIn,         /* I    Number of samples in input vector               */
     87    ec_enc                          *psRangeEnc,        /* I/O  Compressor data structure                       */
     88    opus_int32                      *nBytesOut,         /* I/O  Number of bytes in payload (input: Max bytes)   */
     89    const opus_int                  prefillFlag,        /* I    Flag to indicate prefilling buffers no coding   */
     90    int                             activity            /* I    Decision of Opus voice activity detector        */
     91 );
     92 
     93 /****************************************/
     94 /* Decoder functions                    */
     95 /****************************************/
     96 
     97 
     98 /***********************************************/
     99 /* Load OSCE models from external data pointer */
    100 /***********************************************/
    101 opus_int silk_LoadOSCEModels(
    102    void *decState,                                     /* O    I/O State                                       */
    103    const unsigned char *data,                          /* I    pointer to binary blob                          */
    104    int len                                             /* I    length of binary blob data                      */
    105 );
    106 
    107 /***********************************************/
    108 /* Get size in bytes of the Silk decoder state */
    109 /***********************************************/
    110 opus_int silk_Get_Decoder_Size(                         /* O    Returns error code                              */
    111    opus_int                        *decSizeBytes       /* O    Number of bytes in SILK decoder state           */
    112 );
    113 
    114 /*************************/
    115 /* Init and Reset decoder */
    116 /*************************/
    117 opus_int silk_ResetDecoder(                              /* O    Returns error code                              */
    118    void                            *decState            /* I/O  State                                           */
    119 );
    120 
    121 opus_int silk_InitDecoder(                              /* O    Returns error code                              */
    122    void                            *decState           /* I/O  State                                           */
    123 );
    124 
    125 /******************/
    126 /* Decode a frame */
    127 /******************/
    128 opus_int silk_Decode(                                   /* O    Returns error code                              */
    129    void*                           decState,           /* I/O  State                                           */
    130    silk_DecControlStruct*          decControl,         /* I/O  Control Structure                               */
    131    opus_int                        lostFlag,           /* I    0: no loss, 1 loss, 2 decode fec                */
    132    opus_int                        newPacketFlag,      /* I    Indicates first decoder call for this packet    */
    133    ec_dec                          *psRangeDec,        /* I/O  Compressor data structure                       */
    134    opus_res                        *samplesOut,        /* O    Decoded output speech vector                    */
    135    opus_int32                      *nSamplesOut,       /* O    Number of samples decoded                       */
    136 #ifdef ENABLE_DEEP_PLC
    137    LPCNetPLCState                  *lpcnet,
    138 #endif
    139    int                             arch                /* I    Run-time architecture                           */
    140 );
    141 
    142 #if 0
    143 /**************************************/
    144 /* Get table of contents for a packet */
    145 /**************************************/
    146 opus_int silk_get_TOC(
    147    const opus_uint8                *payload,           /* I    Payload data                                */
    148    const opus_int                  nBytesIn,           /* I    Number of input bytes                       */
    149    const opus_int                  nFramesPerPayload,  /* I    Number of SILK frames per payload           */
    150    silk_TOC_struct                 *Silk_TOC           /* O    Type of content                             */
    151 );
    152 #endif
    153 
    154 #ifdef __cplusplus
    155 }
    156 #endif
    157 
    158 #endif