Home
last modified time | relevance | path

Searched refs:total_samples_to_encode (Results 1 – 3 of 3) sorted by relevance

/external/flac/src/share/grabbag/
Dseektable.c30 … char *spec, FLAC__bool only_explicit_placeholders, FLAC__uint64 total_samples_to_encode, uint32_t… in grabbag__seektable_convert_specification_to_template() argument
52 …if(total_samples_to_encode > 0) { /* we can only do these if we know the number of samples to enco… in grabbag__seektable_convert_specification_to_template()
58 …_seektable_template_append_spaced_points(seektable_template, (uint32_t)n, total_samples_to_encode)) in grabbag__seektable_convert_specification_to_template()
64 …if(total_samples_to_encode > 0) { /* we can only do these if we know the number of samples to enco… in grabbag__seektable_convert_specification_to_template()
76 …ble_template_append_spaced_points_by_samples(seektable_template, samples, total_samples_to_encode)) in grabbag__seektable_convert_specification_to_template()
91 …(total_samples_to_encode == 0 || (FLAC__uint64)n < total_samples_to_encode) /* number is not >= th… in grabbag__seektable_convert_specification_to_template()
/external/flac/src/flac/
Dencode.c90 …FLAC__uint64 total_samples_to_encode; /* (i.e. "wide samples" aka "sample frames") WATCHOUT: may b… member
1039 encoder_session.total_samples_to_encode = total_samples_in_input - skip; in flac__encode_file()
1048 encoder_session.total_samples_to_encode = 0; in flac__encode_file()
1052 encoder_session.total_samples_to_encode = total_samples_in_input - skip; in flac__encode_file()
1057 encoder_session.total_samples_to_encode = total_samples_in_input - skip; in flac__encode_file()
1072 encoder_session.total_samples_to_encode -= trim; in flac__encode_file()
1076 align_remainder = (uint32_t)(encoder_session.total_samples_to_encode % 588); in flac__encode_file()
1078 encoder_session.total_samples_to_encode += (588-align_remainder); /* will pad with zeroes */ in flac__encode_file()
1080 …encoder_session.total_samples_to_encode -= align_remainder; /* will stop short and carry over to n… in flac__encode_file()
1084 …encoder_session.unencoded_size = encoder_session.total_samples_to_encode * encoder_session.info.by… in flac__encode_file()
[all …]
/external/flac/include/share/grabbag/
Dseektable.h33 … char *spec, FLAC__bool only_explicit_placeholders, FLAC__uint64 total_samples_to_encode, uint32_t…