mirror of
https://gitlab.com/mbunkus/mkvtoolnix.git
synced 2024-12-25 04:11:44 +00:00
Unified the spelling of "progress".
This commit is contained in:
parent
70f0a7c452
commit
5b1d7a9786
@ -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);
|
||||
|
@ -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;
|
||||
|
@ -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);
|
||||
|
@ -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));
|
||||
}
|
||||
|
@ -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 {
|
||||
|
@ -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);
|
||||
|
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user