Searched refs:FLAC__int64 (Results 1 - 24 of 24) sorted by relevance

/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/flac-1.2.1/src/libFLAC/include/private/
H A Dbitmath.h40 unsigned FLAC__bitmath_silog2_wide(FLAC__int64 v);
H A Dfloat.h72 #define FLAC__fixedpoint_mul(x, y) ( (FLAC__fixedpoint) ( ((FLAC__int64)(x)*(FLAC__int64)(y)) >> 16 ) )
74 #define FLAC__fixedpoint_div(x, y) ( (FLAC__fixedpoint) ( ( ((FLAC__int64)(x)<<32) / (FLAC__int64)(y) ) >> 16 ) )
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/flac-1.2.1/src/libFLAC/
H A Dlpc.c268 FLAC__int64 sumo;
287 sumo += (FLAC__int64)qlp_coeff[j] * (FLAC__int64)(*history);
535 FLAC__int64 sum;
550 sum += (FLAC__int64)qlp_coeff[j] * (FLAC__int64)(*(--history));
559 if(FLAC__bitmath_silog2_wide((FLAC__int64)(*data) - (sum >> lp_quantization)) > 32) {
561 fprintf(stderr,"FLAC__lpc_compute_residual_from_qlp_coefficients_wide: OVERFLOW, i=%u, data=%d, sum=%I64d, residual=%I64d\n", i, *data, sum >> lp_quantization, (FLAC__int64)(*data) - (sum >> lp_quantization));
563 fprintf(stderr,"FLAC__lpc_compute_residual_from_qlp_coefficients_wide: OVERFLOW, i=%u, data=%d, sum=%lld, residual=%lld\n", i, *data, (long long)(sum >> lp_quantization), (long long)((FLAC__int64)(*data) - (sum >> lp_quantization)));
573 FLAC__int64 su
[all...]
H A Dbitmath.c127 unsigned FLAC__bitmath_silog2_wide(FLAC__int64 v)
H A Dmemory.c54 *aligned_address = (void*)(((FLAC__uint64)x + 31) & (FLAC__uint64)(-((FLAC__int64)32)));
63 *aligned_address = (void*)(((FLAC__uint64)x + 31) & (FLAC__uint64)(-((FLAC__int64)32)));
H A Dfixed.c329 residual_bits_per_sample[0] = (FLAC__float)((total_error_0 > 0) ? log(M_LN2 * (FLAC__double)(FLAC__int64)total_error_0 / (FLAC__double)data_len) / M_LN2 : 0.0);
330 residual_bits_per_sample[1] = (FLAC__float)((total_error_1 > 0) ? log(M_LN2 * (FLAC__double)(FLAC__int64)total_error_1 / (FLAC__double)data_len) / M_LN2 : 0.0);
331 residual_bits_per_sample[2] = (FLAC__float)((total_error_2 > 0) ? log(M_LN2 * (FLAC__double)(FLAC__int64)total_error_2 / (FLAC__double)data_len) / M_LN2 : 0.0);
332 residual_bits_per_sample[3] = (FLAC__float)((total_error_3 > 0) ? log(M_LN2 * (FLAC__double)(FLAC__int64)total_error_3 / (FLAC__double)data_len) / M_LN2 : 0.0);
333 residual_bits_per_sample[4] = (FLAC__float)((total_error_4 > 0) ? log(M_LN2 * (FLAC__double)(FLAC__int64)total_error_4 / (FLAC__double)data_len) / M_LN2 : 0.0);
H A Dstream_decoder.c2975 FLAC__int64 pos = -1;
3097 pos = (FLAC__int64)lower_bound + (FLAC__int64)((FLAC__double)(FLAC__int64)(target_sample - lower_bound_sample) / (FLAC__double)(FLAC__int64)(upper_bound_sample - lower_bound_sample) * (FLAC__double)(FLAC__int64)(upper_bound - lower_bound)) - approx_bytes_per_frame;
3099 pos = (FLAC__int64)lower_bound + (FLAC__int64)((FLAC__double)(target_sample - lower_bound_sample) / (FLAC__double)(upper_bound_sample - lower_bound_sample) * (FLAC__double)(upper_bound - lower_bound)) - approx_bytes_per_frame;
3104 pos = (FLAC__int64)lower_bound + (FLAC__int64)(((target_sampl
[all...]
H A Dmetadata_iterators.c142 static int fseek_wrapper_(FLAC__IOHandle handle, FLAC__int64 offset, int whence);
143 static FLAC__int64 ftell_wrapper_(FLAC__IOHandle handle);
1199 FLAC__int64 pos = tell_cb(handle);
1244 FLAC__int64 pos = tell_cb(handle);
3322 int fseek_wrapper_(FLAC__IOHandle handle, FLAC__int64 offset, int whence)
3327 FLAC__int64 ftell_wrapper_(FLAC__IOHandle handle)
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/flac-1.2.1/include/FLAC/
H A Dordinals.h45 typedef __int64 FLAC__int64; typedef
52 typedef long long FLAC__int64; typedef
59 typedef int64_t FLAC__int64; typedef
H A Dcallback.h127 typedef int (*FLAC__IOCallback_Seek) (FLAC__IOHandle handle, FLAC__int64 offset, int whence);
135 * \retval FLAC__int64
138 typedef FLAC__int64 (*FLAC__IOCallback_Tell) (FLAC__IOHandle handle);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/flac-1.2.1/src/share/grabbag/
H A Dseektable.c30 static FLAC__int64 local__strtoll(const char *src, char **endptr)
33 FLAC__int64 ret = 0;
111 const FLAC__int64 n = local__strtoll(pt, &endptr);
113 const FLAC__int64 n = (FLAC__int64)strtoll(pt, &endptr, 10);
H A Dcuesheet.c62 static FLAC__int64 local__parse_int64_(const char *s)
64 FLAC__int64 ret = 0;
82 static FLAC__int64 local__parse_msf_(const char *s)
84 FLAC__int64 ret, field;
267 FLAC__int64 xx;
439 FLAC__int64 xx;
457 FLAC__int64 offset;
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/flac-1.2.1/src/share/replaygain_synthesis/
H A Dreplaygain_synthesis.c231 d->Dither = 0.01f*default_dither[index] / (((FLAC__int64)1) << bits);
239 static FLaC__INLINE FLAC__int64 dither_output_(DitherContext *d, FLAC__bool do_dithering, int shapingtype, int i, double Sum, int k)
243 FLAC__int64 i;
246 FLAC__int64 val;
248 #define ROUND64(x) ( doubletmp.d = (x) + d->Add + (FLAC__int64)FLAC__I64L(0x001FFFFD80000000), doubletmp.i - (FLAC__int64)FLAC__I64L(0x433FFFFD80000000) )
341 static const FLAC__int64 hard_clip_factors_[33] = {
374 (FLAC__int64)(-1073741824) * 2 /* 32 bits-per-sample */
377 const FLAC__int64 hard_clip_factor = hard_clip_factors_[target_bps];
393 FLAC__int64 val6
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/flac-1.2.1/src/flac/
H A Dutils.h35 FLAC__int64 samples;
H A Dutils.c192 spec->value.samples = (FLAC__int64)val;
214 spec->value.samples = (FLAC__int64)(spec->value.seconds * (double)sample_rate);
H A Dmain.c91 static FLAC__int64 local__strtoll(const char *src, char **endptr);
685 FLAC__int64 i;
2159 FLAC__int64 local__strtoll(const char *src, char **endptr)
2162 FLAC__int64 ret = 0;
H A Ddecode.c575 spec->value.samples += (FLAC__int64)total_samples_in_input;
1361 const double progress = (double)(FLAC__int64)decoder_session->samples_processed / (double)(FLAC__int64)decoder_session->total_samples * 100.0;
H A Dencode.c2304 spec->value.samples += (FLAC__int64)total_samples_in_input;
2649 const double progress = (double)(FLAC__int64)samples_written / (double)(FLAC__int64)encoder_session->total_samples_to_encode;
2650 const double ratio = (double)(FLAC__int64)encoder_session->bytes_written / ((double)(FLAC__int64)encoder_session->unencoded_size * min(1.0, progress));
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/flac-1.2.1/src/plugin_winamp2/
H A Dplayback.h80 FLAC__bool FLAC_plugin__decoder_init(FLAC__StreamDecoder *decoder, const char *filename, FLAC__int64 filesize, stream_data_struct *stream_data, output_config_t *config);
H A Dplayback.c36 static FLAC__int64 decode_position, decode_position_last;
82 FLAC__uint64 l = (FLAC__uint64)((double)(FLAC__int64)stream_data->total_samples / (double)stream_data->sample_rate * 1000.0 + 0.5);
112 FLAC__bool FLAC_plugin__decoder_init(FLAC__StreamDecoder *decoder, const char *filename, FLAC__int64 filesize, stream_data_struct *stream_data, output_config_t *config)
154 stream_data->average_bps = (unsigned)(filesize / (125.*(double)(FLAC__int64)stream_data->total_samples/(double)stream_data->sample_rate));
H A Din_flac.c357 FLAC__uint64 l = (FLAC__uint64)((double)(FLAC__int64)streaminfo.data.stream_info.total_samples / (double)streaminfo.data.stream_info.sample_rate * 1000.0 + 0.5);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/flac-1.2.1/src/test_seeking/
H A Dmain.c268 static FLAC__bool seek_barrage(FLAC__bool is_ogg, const char *filename, off_t filesize, unsigned count, FLAC__int64 total_samples, unsigned read_mode, FLAC__int32 **pcm)
424 FLAC__int64 samples = -1;
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/flac-1.2.1/src/test_libFLAC/
H A Dmetadata_manip.c282 static int chain_seek_cb_(FLAC__IOHandle handle, FLAC__int64 offset, int whence)
289 static FLAC__int64 chain_tell_cb_(FLAC__IOHandle handle)
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/flac-1.2.1/src/test_libFLAC++/
H A Dmetadata_manip.cpp297 static int chain_seek_cb_(::FLAC__IOHandle handle, FLAC__int64 offset, int whence)
304 static FLAC__int64 chain_tell_cb_(::FLAC__IOHandle handle)

Completed in 227 milliseconds