Searched refs:sce (Results 1 - 21 of 21) sorted by relevance

/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/libav-0.8.8/libavcodec/
H A Daaccoder.c311 static void encode_window_bands_info(AACEncContext *s, SingleChannelElement *sce, argument
317 const int max_sfb = sce->ics.max_sfb;
318 const int run_bits = sce->ics.num_windows == 1 ? 5 : 3;
325 abs_pow34_v(s->scoefs, sce->coeffs, 1024);
333 size = sce->ics.swb_sizes[swb];
334 if (sce->zeroes[win*16 + swb]) {
350 rd += quantize_band_cost(s, sce->coeffs + start + w*128,
352 sce->sf_idx[(win+w)*16+swb], cb,
357 if ( run_value_bits[sce->ics.num_windows == 8][path[swb][cb].run]
358 != run_value_bits[sce
412 codebook_trellis_rate(AACEncContext *s, SingleChannelElement *sce, int win, int group_len, const float lambda) argument
553 search_for_quantizers_anmr(AVCodecContext *avctx, AACEncContext *s, SingleChannelElement *sce, const float lambda) argument
709 search_for_quantizers_twoloop(AVCodecContext *avctx, AACEncContext *s, SingleChannelElement *sce, const float lambda) argument
852 search_for_quantizers_faac(AVCodecContext *avctx, AACEncContext *s, SingleChannelElement *sce, const float lambda) argument
1020 search_for_quantizers_fast(AVCodecContext *avctx, AACEncContext *s, SingleChannelElement *sce, const float lambda) argument
[all...]
H A Daacenc.h41 SingleChannelElement *sce, const float lambda);
42 void (*encode_window_bands_info)(struct AACEncContext *s, SingleChannelElement *sce,
H A Daacenc.c228 SingleChannelElement *sce, short *audio)
232 const float * lwindow = sce->ics.use_kb_window[0] ? ff_aac_kbd_long_1024 : ff_sine_1024;
233 const float * swindow = sce->ics.use_kb_window[0] ? ff_aac_kbd_short_128 : ff_sine_128;
234 const float * pwindow = sce->ics.use_kb_window[1] ? ff_aac_kbd_short_128 : ff_sine_128;
235 float *output = sce->ret;
237 if (sce->ics.window_sequence[0] != EIGHT_SHORT_SEQUENCE) {
238 memcpy(output, sce->saved, sizeof(float)*1024);
239 if (sce->ics.window_sequence[0] == LONG_STOP_SEQUENCE) {
242 output[i] = sce->saved[i] * pwindow[i - 448];
244 output[i] = sce
227 apply_window_and_mdct(AVCodecContext *avctx, AACEncContext *s, SingleChannelElement *sce, short *audio) argument
377 encode_band_info(AACEncContext *s, SingleChannelElement *sce) argument
388 encode_scale_factors(AVCodecContext *avctx, AACEncContext *s, SingleChannelElement *sce) argument
429 encode_spectral_coeffs(AACEncContext *s, SingleChannelElement *sce) argument
454 encode_individual_channel(AVCodecContext *avctx, AACEncContext *s, SingleChannelElement *sce, int common_window) argument
[all...]
H A Daacdec.c1341 static void apply_prediction(AACContext *ac, SingleChannelElement *sce) argument
1345 if (!sce->ics.predictor_initialized) {
1346 reset_all_predictors(sce->predictor_state);
1347 sce->ics.predictor_initialized = 1;
1350 if (sce->ics.window_sequence[0] != EIGHT_SHORT_SEQUENCE) {
1352 for (k = sce->ics.swb_offset[sfb]; k < sce->ics.swb_offset[sfb + 1]; k++) {
1353 predict(&sce->predictor_state[k], &sce->coeffs[k],
1354 sce
1371 decode_ics(AACContext *ac, SingleChannelElement *sce, GetBitContext *gb, int common_window, int scale_flag) argument
1556 SingleChannelElement *sce = &che->ch[0]; local
1827 apply_ltp(AACContext *ac, SingleChannelElement *sce) argument
1859 update_ltp(AACContext *ac, SingleChannelElement *sce) argument
1894 imdct_and_windowing(AACContext *ac, SingleChannelElement *sce) argument
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/ffmpeg-2.3.4/libavcodec/
H A Daaccoder.c312 static void encode_window_bands_info(AACEncContext *s, SingleChannelElement *sce, argument
318 const int max_sfb = sce->ics.max_sfb;
319 const int run_bits = sce->ics.num_windows == 1 ? 5 : 3;
326 abs_pow34_v(s->scoefs, sce->coeffs, 1024);
334 size = sce->ics.swb_sizes[swb];
335 if (sce->zeroes[win*16 + swb]) {
351 rd += quantize_band_cost(s, sce->coeffs + start + w*128,
353 sce->sf_idx[(win+w)*16+swb], cb,
358 if ( run_value_bits[sce->ics.num_windows == 8][path[swb][cb].run]
359 != run_value_bits[sce
413 codebook_trellis_rate(AACEncContext *s, SingleChannelElement *sce, int win, int group_len, const float lambda) argument
554 search_for_quantizers_anmr(AVCodecContext *avctx, AACEncContext *s, SingleChannelElement *sce, const float lambda) argument
707 search_for_quantizers_twoloop(AVCodecContext *avctx, AACEncContext *s, SingleChannelElement *sce, const float lambda) argument
852 search_for_quantizers_faac(AVCodecContext *avctx, AACEncContext *s, SingleChannelElement *sce, const float lambda) argument
1020 search_for_quantizers_fast(AVCodecContext *avctx, AACEncContext *s, SingleChannelElement *sce, const float lambda) argument
[all...]
H A Daacenc.c186 SingleChannelElement *sce, \
191 const float *lwindow = sce->ics.use_kb_window[0] ? ff_aac_kbd_long_1024 : ff_sine_1024;
192 const float *pwindow = sce->ics.use_kb_window[1] ? ff_aac_kbd_long_1024 : ff_sine_1024;
193 float *out = sce->ret_buf;
201 const float *lwindow = sce->ics.use_kb_window[1] ? ff_aac_kbd_long_1024 : ff_sine_1024;
202 const float *swindow = sce->ics.use_kb_window[0] ? ff_aac_kbd_short_128 : ff_sine_128;
203 float *out = sce->ret_buf;
213 const float *lwindow = sce->ics.use_kb_window[0] ? ff_aac_kbd_long_1024 : ff_sine_1024;
214 const float *swindow = sce->ics.use_kb_window[1] ? ff_aac_kbd_short_128 : ff_sine_128;
215 float *out = sce
249 apply_window_and_mdct(AACEncContext *s, SingleChannelElement *sce, float *audio) argument
366 encode_band_info(AACEncContext *s, SingleChannelElement *sce) argument
377 encode_scale_factors(AVCodecContext *avctx, AACEncContext *s, SingleChannelElement *sce) argument
417 encode_spectral_coeffs(AACEncContext *s, SingleChannelElement *sce) argument
442 encode_individual_channel(AVCodecContext *avctx, AACEncContext *s, SingleChannelElement *sce, int common_window) argument
[all...]
H A Daacenc.h51 SingleChannelElement *sce, const float lambda);
52 void (*encode_window_bands_info)(struct AACEncContext *s, SingleChannelElement *sce,
H A Dlibfdk-aacenc.c112 int sce = 0, cpe = 0; local
146 case 1: mode = MODE_1; sce = 1; cpe = 0; break;
147 case 2: mode = MODE_2; sce = 0; cpe = 1; break;
148 case 3: mode = MODE_1_2; sce = 1; cpe = 1; break;
149 case 4: mode = MODE_1_2_1; sce = 2; cpe = 1; break;
150 case 5: mode = MODE_1_2_2; sce = 1; cpe = 2; break;
151 case 6: mode = MODE_1_2_2_1; sce = 2; cpe = 2; break;
156 sce = 2;
206 sce = 1;
209 avctx->bit_rate = (96*sce
[all...]
H A Daac.h322 void (*imdct_and_windowing)(AACContext *ac, SingleChannelElement *sce);
323 void (*apply_ltp)(AACContext *ac, SingleChannelElement *sce);
328 void (*update_ltp)(AACContext *ac, SingleChannelElement *sce);
H A Daacdec.c1856 static void apply_prediction(AACContext *ac, SingleChannelElement *sce) argument
1860 if (!sce->ics.predictor_initialized) {
1861 reset_all_predictors(sce->predictor_state);
1862 sce->ics.predictor_initialized = 1;
1865 if (sce->ics.window_sequence[0] != EIGHT_SHORT_SEQUENCE) {
1869 for (k = sce->ics.swb_offset[sfb];
1870 k < sce->ics.swb_offset[sfb + 1];
1872 predict(&sce->predictor_state[k], &sce->coeffs[k],
1873 sce
1892 decode_ics(AACContext *ac, SingleChannelElement *sce, GetBitContext *gb, int common_window, int scale_flag) argument
2101 SingleChannelElement *sce = &che->ch[0]; local
2401 apply_ltp(AACContext *ac, SingleChannelElement *sce) argument
2433 update_ltp(AACContext *ac, SingleChannelElement *sce) argument
2468 imdct_and_windowing(AACContext *ac, SingleChannelElement *sce) argument
2528 imdct_and_windowing_ld(AACContext *ac, SingleChannelElement *sce) argument
2553 imdct_and_windowing_eld(AACContext *ac, SingleChannelElement *sce) argument
[all...]
H A Dalacenc.c449 int ch, element, sce, cpe; local
453 ch = element = sce = cpe = 0;
461 write_element(s, TYPE_SCE, sce, samples[ch_map[ch]], NULL);
462 sce++;
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/ffmpeg-2.3.4/libavcodec/mips/
H A Daacdec_mips.c67 static void imdct_and_windowing_mips(AACContext *ac, SingleChannelElement *sce) argument
69 IndividualChannelStream *ics = &sce->ics;
70 float *in = sce->coeffs;
71 float *out = sce->ret;
72 float *saved = sce->saved;
427 static void apply_ltp_mips(AACContext *ac, SingleChannelElement *sce) argument
429 const LongTermPrediction *ltp = &sce->ics.ltp;
430 const uint16_t *offsets = sce->ics.swb_offset;
434 if (sce->ics.window_sequence[0] != EIGHT_SHORT_SEQUENCE) {
435 float *predTime = sce
488 update_ltp_mips(AACContext *ac, SingleChannelElement *sce) argument
[all...]
H A Daaccoder_mips.c2113 SingleChannelElement *sce,
2126 for (w = 0; w < sce->ics.num_windows; w += sce->ics.group_len[w]) {
2127 for (g = 0; g < sce->ics.num_swb; g++) {
2130 for (w2 = 0; w2 < sce->ics.group_len[w]; w2++) {
2134 sce->zeroes[(w+w2)*16+g] = 1;
2140 sce->zeroes[w*16+g] = !nz;
2146 for (w = 0; w < sce->ics.num_windows; w += sce->ics.group_len[w]) {
2147 for (g = 0; g < sce
2111 search_for_quantizers_twoloop_mips(AVCodecContext *avctx, AACEncContext *s, SingleChannelElement *sce, const float lambda) argument
2362 codebook_trellis_rate_mips(AACEncContext *s, SingleChannelElement *sce, int win, int group_len, const float lambda) argument
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/src/router/iputils/racoon/
H A Dhandler.h116 struct sched *sce; /* schedule for expire */ member in struct:ph1handle
220 struct sched *sce; /* schedule for expire */ member in struct:ph2handle
H A Disakmp.c619 iph1->sce = sched_new(iph1->approval->lifetime,
1500 SCHED_KILL(iph1->sce);
1508 iph1->sce = sched_new(1, isakmp_ph1expire_stub, iph1);
1512 iph1->sce = sched_new(1, isakmp_ph1delete_stub, iph1);
1530 SCHED_KILL(iph1->sce);
1533 iph1->sce = sched_new(1, isakmp_ph1delete_stub, iph1);
1573 SCHED_KILL(iph2->sce);
1584 iph2->sce = sched_new(1, isakmp_ph2delete_stub, iph2);
1604 SCHED_KILL(iph2->sce);
H A Dhandler.c220 iph1->sce = NULL;
441 iph2->sce = NULL;
H A Disakmp_inf.c805 if (iph1->sce)
806 SCHED_KILL(iph1->sce);
808 iph1->sce = sched_new(1, isakmp_ph1delete_stub, iph1);
H A Dpfkey.c734 SCHED_KILL(iph2->sce);
1111 SCHED_KILL(iph2->sce);
1131 iph2->sce = sched_new(iph2->approval->lifetime,
1385 SCHED_KILL(iph2->sce);
H A Disakmp_quick.c131 iph2->sce = sched_new(lcconf->wait_ph2complete,
1142 iph2->sce = sched_new(lcconf->wait_ph2complete,
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/Micromax/Linux/lib/
H A Dcommons-logging-1.1.1.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/apache/commons/ org/apache/commons/logging/ ...
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/dma/ipu/
H A Dipu_idmac.c217 u32 sce:1; member in struct:chan_param_mem_interleaved

Completed in 214 milliseconds