Searched refs:channel (Results 1 - 25 of 1333) sorted by path

1234567891011>>

/external/aac/libAACdec/src/
H A Daacdec_pns.cpp134 /* save pointer to inter channel data */
138 same, left and right channel ! */
163 The function activates the noise correlation between the channel pair
179 The function indicates if the noise correlation between the channel pair
198 The function indicates if the noise correlation between the channel pair
339 const int channel)
359 if (channel > 0 && CPns_IsCorrelated(pPnsData, group, band))
332 CPns_Apply(const CPnsData *pPnsData, const CIcsInfo *pIcsInfo, SPECTRAL_PTR pSpectrum, const SHORT *pSpecScale, const SHORT *pScaleFactor, const SamplingRateInfo *pSamplingRateInfo, const INT granuleLength, const int channel) argument
H A Dblock.cpp638 const int channel )
643 &pAacDecoderChannelInfo[channel]->data.aac.PnsData,
644 &pAacDecoderChannelInfo[channel]->icsInfo,
645 pAacDecoderChannelInfo[channel]->pSpectralCoefficient,
646 pAacDecoderChannelInfo[channel]->specScale,
647 pAacDecoderChannelInfo[channel]->pDynData->aScaleFactor,
649 pAacDecoderChannelInfo[channel]->granuleLength,
650 channel
655 &pAacDecoderChannelInfo[channel]->pDynData->TnsData,
656 &pAacDecoderChannelInfo[channel]
[all...]
H A Dblock.h116 const int channel);
161 * \param pAacDecoderChannelInfo channel context info were decoded data is stored into.
172 * \param pAacDecoderChannelInfo channel context info.
190 * \param pAacDecoderChannelInfo channel context info.
201 const int channel );
/external/aac/libSBRdec/src/
H A Dsbrdecoder.cpp788 SBRDEC_DRC_CHANNEL * sbrDecoder_drcGetChannel( const HANDLE_SBRDECODER self, const INT channel )
793 for (elementIndex = 0; (elementIndex < (8)) && (numCh <= channel); elementIndex++)
816 for (c = 0; (c < elChannels) && (numCh <= channel); c++) {
868 /* Find the right SBR channel */
906 /* Find the right SBR channel */
1190 * \param interleaved flag indicating interleaved channel output
1191 * \param channelMapping pointer to UCHAR array where next 2 channel offsets are stored.
1339 /* use same buffers for left and right channel and apply PS per timeslot */
1340 /* Process left channel */
1358 /* Process right channel */
[all...]
/external/aac/libSBRenc/src/
H A Dcode_env.cpp336 const UCHAR * hufftableBalance, INT coupling, INT channel)
346 const UCHAR * hufftableBalance, INT coupling, INT channel)
352 if (channel == 1)
407 INT *directionVec, INT scalable, INT nEnvelopes, INT channel,
424 INT channel,
477 if(coupling == 1 && channel == 1)
504 if (coupling && channel == 1)
518 hufftableBalanceTimeL, coupling, channel);
525 if ( coupling && channel == 1 ) {
564 hufftableBalanceFreqL, coupling, channel);
342 computeBits(SCHAR *delta, INT codeBookScfLavLevel, INT codeBookScfLavBalance, const UCHAR * hufftableLevel, const UCHAR * hufftableBalance, INT coupling, INT channel) argument
418 FDKsbrEnc_codeEnvelope(SCHAR *sfb_nrg, const FREQ_RES *freq_res, SBR_CODE_ENVELOPE *h_sbrCodeEnvelope, INT *directionVec, INT coupling, INT nEnvelopes, INT channel, INT headerActive) argument
[all...]
H A Dcode_env.h137 INT *directionVec, INT coupling, INT nEnvelopes, INT channel,
H A Denv_est.cpp575 HANDLE_ENV_CHANNEL h_sbr, /*! envelope channel handle */
687 If a sine is missing in a scalefactorband, with more than one qmf channel
688 use the nrg from the channel with the largest nrg rather than the mean.
1713 INT channel
1719 FIXP_DBL* YBuffer = GetRam_Sbr_envYBuffer(channel);
H A Denv_est.h150 INT channel
H A Dsbr_encoder.cpp401 UINT standardBitrate, /*! the standard bitrate per channel in bits/sec */
582 description: frees memory of one SBR channel
584 input: handle of channel
604 description: close the channel coding handle
622 description: close the channel coding handle
851 UINT timeInStride, /*!< time buffer channel interleaving stride */
1157 INT channel
1164 channel) )
1170 channel
1678 /* now create envelope ext and QMF for each available channel */
[all...]
/external/antlr/antlr-3.4/gunit/src/main/antlr3/org/antlr/gunit/
H A DgUnit.g183 : '//' ~('\r'|'\n')* '\r'? '\n' {$channel=HIDDEN;}
187 : '/*' {$channel=HIDDEN;} .* '*/'
351 {$channel=HIDDEN;}
/external/antlr/antlr-3.4/gunit/src/main/antlr3/org/antlr/gunit/swingui/parsers/
H A DANTLRv3.g470 {$channel=HIDDEN;}
474 : '/*' {if (input.LA(1)=='*') $type=DOC_COMMENT; else $channel=HIDDEN;} .* '*/'
608 {$channel=HIDDEN;}
H A DStGUnit.g109 : '//' ~('\r'|'\n')* '\r'? '\n' {$channel=HIDDEN;}
113 : '/*' {$channel=HIDDEN;} .* '*/'
212 {$channel=HIDDEN;}
/external/antlr/antlr-3.4/lib/
H A Dantlr-3.4-complete.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/antlr/ org/antlr/analysis/ org/antlr/codegen/ org/ ...
/external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/
H A DCommonToken.as59 public static function createFromStream(input:CharStream, type:int, channel:int, start:int, stop:int):CommonToken {
62 token._channel = channel;
73 token._channel = oldToken.channel;
121 public function get channel():int {
125 public function set channel(channel:int):void {
126 _channel = channel;
167 if ( channel>0 ) {
168 channelStr=",channel="+channel;
[all...]
H A DCommonTokenStream.as31 * and tokens are prefiltered for a certain channel (the parser will only
32 * see these tokens and cannot change the filter channel number during the
45 /** Map<tokentype, channel> to override some Tokens' channel numbers */
51 /** Skip tokens on any channel but this one; this is how we skip whitespace... */
52 protected var channel:int = TokenConstants.DEFAULT_CHANNEL;
65 public function CommonTokenStream(tokenSource:TokenSource = null, channel:int = TokenConstants.DEFAULT_CHANNEL) {
67 this.channel = channel;
75 channel
[all...]
H A DLexer.as55 state.channel = TokenConstants.DEFAULT_CHANNEL;
68 state.channel = TokenConstants.DEFAULT_CHANNEL;
146 var t:Token = CommonToken.createFromStream(input, state.type, state.channel, state.tokenStartCharIndex, charIndex - 1);
H A DParser.as67 t.channel = DEFAULT_TOKEN_CHANNEL;
H A DRecognizerSharedState.as81 /** The channel number for the current token */
82 public var channel:int; variable
H A DToken.as46 function get channel():int;
47 function set channel(channel:int):void;
H A DTokenRewriteStream.as96 public function TokenRewriteStream(tokenSource:TokenSource = null, channel:int = TokenConstants.DEFAULT_CHANNEL) {
97 super(tokenSource, channel);
/external/antlr/antlr-3.4/runtime/C/include/
H A Dantlr3commontoken.h75 /** Default channel for a token
79 /** Reserved channel number for a HIDDEN token - a token that
138 /** The virtual channel that this token exists in.
140 ANTLR3_UINT32 channel; member in struct:ANTLR3_COMMON_TOKEN_struct
268 /** Pointer to a function that gets the channel that this token was placed in (parsers
273 /** Pointer to a function that sets the channel that this token should belong to
275 void (*setChannel) (struct ANTLR3_COMMON_TOKEN_struct * token, ANTLR3_UINT32 channel);
H A Dantlr3recognizersharedstate.h155 /** The channel number for the current token
157 ANTLR3_UINT32 channel; member in struct:ANTLR3_RECOGNIZER_SHARED_STATE_struct
H A Dantlr3tokenstream.h214 * the pointer in the table points to an int, being the override channel number
224 /* The channel number that this token stream is tuned to. For instance, whitespace
225 * is usually tuned to channel 99, which no token stream would normally tune to and
228 ANTLR3_UINT32 channel; member in struct:ANTLR3_COMMON_TOKEN_STREAM_struct
231 * in the channel that this stream is tuned to, are not tracked in the
242 * to force all tokens of type ttype to be on channel. For example,
245 * channel.
248 ANTLR3_UINT32 ttype, ANTLR3_UINT32 channel);
255 /** Signal to discard off channel tokens from here on in.
/external/antlr/antlr-3.4/runtime/C/src/
H A Dantlr3commontoken.c50 static void setChannel (pANTLR3_COMMON_TOKEN token, ANTLR3_UINT32 channel);
496 return token->channel;
499 static void setChannel (pANTLR3_COMMON_TOKEN token, ANTLR3_UINT32 channel) argument
501 token->channel = channel;
573 outtext->append8(outtext, "(channel = ");
H A Dantlr3lexer.c183 lexer->rec->state->channel = ANTLR3_TOKEN_DEFAULT_CHANNEL;
246 state->channel = ANTLR3_TOKEN_DEFAULT_CHANNEL;
658 token->channel = lexer->rec->state->channel;

Completed in 843 milliseconds

1234567891011>>