Searched refs:curr_max (Results 1 – 2 of 2) sorted by relevance
/external/freetype/src/tools/ |
D | afblue.pl | 37 my $curr_max; # Name of the current maximum value. 133 my $max = pop @{$diversions{$curr_max}}; 135 push @{$diversions{$curr_max}}, $max; 255 $curr_max = $3; 264 Warn("overwriting already defined maximum value \`$curr_max'") 265 if exists($diversions{$curr_max}); 269 $diversions{$curr_max} = []; 271 push @{$diversions{$curr_max}}, 0;
|
/external/libopus/src/ |
D | opus_multistream_encoder.c | 931 int curr_max; in opus_multistream_encode_native() local 975 curr_max = max_data_bytes - tot_size; in opus_multistream_encode_native() 977 curr_max -= IMAX(0,2*(st->layout.nb_streams-s-1)-1); in opus_multistream_encode_native() 980 curr_max -= st->layout.nb_streams-s-1; in opus_multistream_encode_native() 981 curr_max = IMIN(curr_max,MS_FRAME_TMP); in opus_multistream_encode_native() 983 if (s != st->layout.nb_streams-1) curr_max -= curr_max>253 ? 2 : 1; in opus_multistream_encode_native() 985 opus_encoder_ctl(enc, OPUS_SET_BITRATE(curr_max*(8*Fs/frame_size))); in opus_multistream_encode_native() 986 len = opus_encode_native(enc, buf, frame_size, tmp_data, curr_max, lsb_depth, in opus_multistream_encode_native()
|