Unified the spelling of "progress".

This commit is contained in:
Moritz Bunkus 2003-09-09 20:18:57 +00:00
parent 70f0a7c452
commit 5b1d7a9786
7 changed files with 7 additions and 7 deletions

View File

@ -318,7 +318,7 @@ int main(int argc, char **argv) {
extract_tracks(input_file);
if (verbose == 0)
mxinfo("Progress: 100%%\n");
mxinfo("progress: 100%%\n");
} else if (mode == MODE_TAGS)
extract_tags(input_file);

View File

@ -1113,7 +1113,7 @@ bool extract_tracks(const char *file_name) {
cluster = (KaxCluster *)l1;
if (verbose == 0)
mxinfo("Progress: %d%%\r", (int)(in->getFilePointer() * 100 /
mxinfo("progress: %d%%\r", (int)(in->getFilePointer() * 100 /
file_size));
upper_lvl_el = 0;

View File

@ -161,7 +161,7 @@ int aac_reader_c::display_priority() {
}
void aac_reader_c::display_progress() {
mxinfo("Progress: %lld/%lld bytes (%d%%)\r",
mxinfo("progress: %lld/%lld bytes (%d%%)\r",
bytes_processed, size,
(int)(bytes_processed * 100L / size));
fflush(stdout);

View File

@ -112,7 +112,7 @@ int ac3_reader_c::display_priority() {
}
void ac3_reader_c::display_progress() {
mxinfo("Progress: %lld/%lld bytes (%d%%)\r",
mxinfo("progress: %lld/%lld bytes (%d%%)\r",
bytes_processed, size,
(int)(bytes_processed * 100L / size));
}

View File

@ -444,7 +444,7 @@ void avi_reader_c::display_progress() {
int myframes = frames;
if (frames == (maxframes + 1))
myframes--;
mxinfo("Progress: %d/%ld frames (%ld%%)\r",
mxinfo("progress: %d/%ld frames (%ld%%)\r",
myframes, AVI_video_frames(avi),
myframes * 100 / AVI_video_frames(avi));
} else {

View File

@ -113,7 +113,7 @@ int dts_reader_c::display_priority() {
}
void dts_reader_c::display_progress() {
mxinfo("Progress: %lld/%lld bytes (%d%%)\r",
mxinfo("progress: %lld/%lld bytes (%d%%)\r",
bytes_processed, size,
(int)(bytes_processed * 100L / size));
fflush(stdout);

View File

@ -1445,7 +1445,7 @@ void kax_reader_c::display_progress() {
int i;
if (segment_duration != 0.0) {
mxinfo("Progress: %.3fs/%.3fs (%d%%)\r",
mxinfo("progress: %.3fs/%.3fs (%d%%)\r",
(last_timecode - first_timecode) / 1000.0, segment_duration,
(int)((last_timecode - first_timecode) / 10 / segment_duration));
return;