From: LoRd_MuldeR Date: Tue, 12 Dec 2023 14:54:46 +0000 (+0100) Subject: Updated patches. X-Git-Tag: Release_421~22 X-Git-Url: http://git.osdn.net/view?a=commitdiff_plain;h=0c64514862874e9360bfe447b3832a0d59ef6612;p=lamexp%2FLameXP.git Updated patches. --- diff --git a/etc/Patches/OpusTools-v0.2-ShowProgress.V13.diff b/etc/Patches/OpusTools-v0.2-ShowProgress.V13.diff new file mode 100644 index 00000000..2ab4af25 --- /dev/null +++ b/etc/Patches/OpusTools-v0.2-ShowProgress.V13.diff @@ -0,0 +1,153 @@ + src/opusdec.c | 35 +++++++++++++++++++++++++++-------- + src/opusenc.c | 18 ++++++++++-------- + 2 files changed, 37 insertions(+), 16 deletions(-) + +diff --git a/src/opusdec.c b/src/opusdec.c +index a0882a4..2effff8 100644 +--- a/src/opusdec.c ++++ b/src/opusdec.c +@@ -41,6 +41,7 @@ + #include + #include + #include /*tolower()*/ ++#include + + #include + #include +@@ -482,7 +483,7 @@ void usage(void) + + void version(void) + { +- printf("opusdec %s %s (using %s)\n",PACKAGE_NAME,PACKAGE_VERSION,opus_get_version_string()); ++ printf("opusdec %s %s\n using %s\n", PACKAGE_NAME, PACKAGE_VERSION, opus_get_version_string()); + printf("Copyright (C) 2008-2018 Xiph.Org Foundation\n"); + } + +@@ -689,8 +690,10 @@ int main(int argc, char **argv) + int quiet = 0; + int forcewav = 0; + ogg_int64_t nb_read_total=0; ++ ogg_int64_t nb_total_length=0; + ogg_int64_t link_read=0; + ogg_int64_t link_out=0; ++ time_t last_update=0; + struct option long_options[] = + { + {"help", no_argument, NULL, 0}, +@@ -882,6 +885,7 @@ int main(int argc, char **argv) + /*If we have a seekable file, we can make some intelligent decisions + about how to decode.*/ + nlinks = op_link_count(st); ++ nb_total_length = op_pcm_total(st, -1); + if (rate==0) + { + opus_uint32 initial_rate; +@@ -1123,15 +1127,30 @@ int main(int argc, char **argv) + opus_int64 coded_seconds = nb_read_total/48000; + if (coded_seconds > last_coded_seconds || li != old_li) + { +- if (coded_seconds > last_coded_seconds) ++ const time_t now = time(NULL); ++ if (now != last_update) + { +- last_spin++; +- last_coded_seconds = coded_seconds; ++ if (coded_seconds > last_coded_seconds) ++ { ++ last_spin++; ++ last_coded_seconds = coded_seconds; ++ } ++ if (nb_total_length > 0) ++ { ++ const double progress = (nb_read_total / (double)nb_total_length) * 100.0; ++ fprintf(stderr, "\r[%c] %02" I64FORMAT ":%02d:%02d (%.1f%%)", ++ spinner[last_spin & 3], coded_seconds / 3600, ++ (int)((coded_seconds / 60) % 60), (int)(coded_seconds % 60), progress); ++ } ++ else ++ { ++ fprintf(stderr, "\r[%c] %02" I64FORMAT ":%02d:%02d", ++ spinner[last_spin & 3], coded_seconds / 3600, ++ (int)((coded_seconds / 60) % 60), (int)(coded_seconds % 60)); ++ } ++ fflush(stderr); ++ last_update = now; + } +- fprintf(stderr,"\r[%c] %02" I64FORMAT ":%02d:%02d", +- spinner[last_spin&3], coded_seconds/3600, +- (int)((coded_seconds/60)%60), (int)(coded_seconds%60)); +- fflush(stderr); + } + } + old_li=li; +diff --git a/src/opusenc.c b/src/opusenc.c +index c09eca8..9b59dda 100644 +--- a/src/opusenc.c ++++ b/src/opusenc.c +@@ -104,15 +104,15 @@ static void fatal(const char *format, ...) + exit(1); + } + +-static void opustoolsversion(const char *opusversion) ++static void opustoolsversion(const char *opusversion, const char * opeversion) + { +- printf("opusenc %s %s (using %s)\n",PACKAGE_NAME,PACKAGE_VERSION,opusversion); ++ printf("opusenc %s %s\n using %s\n using %s\n", PACKAGE_NAME, PACKAGE_VERSION, opusversion, opeversion); + printf("Copyright (C) 2008-2018 Xiph.Org Foundation\n"); + } + +-static void opustoolsversion_short(const char *opusversion) ++static void opustoolsversion_short(const char *opusversion, const char* opeversion) + { +- opustoolsversion(opusversion); ++ opustoolsversion(opusversion, opeversion); + } + + static void usage(void) +@@ -436,6 +436,7 @@ int main(int argc, char **argv) + OggOpusEnc *enc; + EncData data; + const char *opus_version; ++ const char *ope_version; + float *input; + /*I/O*/ + oe_enc_opt inopt; +@@ -515,6 +516,7 @@ int main(int argc, char **argv) + inopt.comments = ope_comments_create(); + if (inopt.comments == NULL) fatal("Error: failed to allocate memory for comments\n"); + opus_version=opus_get_version_string(); ++ ope_version = ope_get_version_string(); + /*Vendor string should just be the encoder library, + the ENCODER comment specifies the tool used.*/ + snprintf(ENCODER_string, sizeof(ENCODER_string), "opusenc from %s %s",PACKAGE_NAME,PACKAGE_VERSION); +@@ -574,10 +576,10 @@ int main(int argc, char **argv) + help_picture(); + exit(0); + } else if (strcmp(optname, "version")==0) { +- opustoolsversion(opus_version); ++ opustoolsversion(opus_version, ope_version); + exit(0); + } else if (strcmp(optname, "version-short")==0) { +- opustoolsversion_short(opus_version); ++ opustoolsversion_short(opus_version, ope_version); + exit(0); + } else if (strcmp(optname, "ignorelength")==0) { + inopt.ignorelength=1; +@@ -835,7 +837,7 @@ int main(int argc, char **argv) + exit(0); + break; + case 'V': +- opustoolsversion(opus_version); ++ opustoolsversion(opus_version, ope_version); + exit(0); + break; + case '?': +@@ -1067,7 +1069,7 @@ int main(int argc, char **argv) + + if (!quiet) { + int opus_app; +- fprintf(stderr, "Encoding using %s", opus_version); ++ fprintf(stderr, "Encoding using %s (%s)", opus_version, ope_version); + ret = ope_encoder_ctl(enc, OPUS_GET_APPLICATION(&opus_app)); + if (ret != OPE_OK) fprintf(stderr, "\n"); + else if (opus_app==OPUS_APPLICATION_VOIP) fprintf(stderr, " (VoIP)\n"); \ No newline at end of file diff --git a/etc/Patches/OpusTools-v0.1.10-Progress+NoResample.V7.diff b/etc/Patches/deprecated/OpusTools-v0.1.10-Progress+NoResample.V7.diff similarity index 100% rename from etc/Patches/OpusTools-v0.1.10-Progress+NoResample.V7.diff rename to etc/Patches/deprecated/OpusTools-v0.1.10-Progress+NoResample.V7.diff diff --git a/etc/Patches/mpg123-FlushProgressFix.V1.diff b/etc/Patches/deprecated/mpg123-FlushProgressFix.V1.diff similarity index 100% rename from etc/Patches/mpg123-FlushProgressFix.V1.diff rename to etc/Patches/deprecated/mpg123-FlushProgressFix.V1.diff diff --git a/etc/Patches/mpg123-FlushProgressFix.V2.diff b/etc/Patches/mpg123-FlushProgressFix.V2.diff new file mode 100644 index 00000000..afec975f --- /dev/null +++ b/etc/Patches/mpg123-FlushProgressFix.V2.diff @@ -0,0 +1,49 @@ +diff --git "a/src/common.c" "b/src/common.c" +index 89b6680..738c194 100644 +--- "a/src/common.c" ++++ "b/src/common.c" +@@ -93,6 +93,7 @@ void print_header(mpg123_handle *mh) + default: fprintf(stderr, "???"); + } + fprintf(stderr, " Extension value: %d\n", i.flags & MPG123_PRIVATE ? 1 : 0); ++ fflush(stderr); + print_stat_disabled=FALSE; + } + +@@ -116,6 +117,7 @@ void print_header_compact(mpg123_handle *mh) + default: fprintf(stderr, "???"); + } + fprintf(stderr," %ld %s\n", i.rate, smodes[i.mode]); ++ fflush(stderr); + print_stat_disabled=FALSE; + } + +@@ -161,8 +163,9 @@ void print_buf(const char* prefix, out123_handle *ao) + return; + tim = (double)(buffsize/framesize)/rate; + settle_time(tim, times, ×ep); +- fprintf( stderr, "\r%s[%02lu:%02lu%c%02lu]" +- , prefix, times[0], times[1], timesep, times[2] ); ++ fprintf( stderr, "\r%s[%02lu:%02lu%c%02lu]", ++ prefix, times[0], times[1], timesep, times[2] ); ++ fflush(stderr); + } + + // This is a massively complicated function just for telling where we are. +@@ -444,7 +447,8 @@ void print_stat(mpg123_handle *fr, long offset, out123_handle *ao, int draw_bar + fprintf(stderr, "%s", line+barlen); + } + else +- fprintf(stderr, "\r%s", line); ++ fprintf(stderr, "\r%s", line); ++ fflush(stderr); + } + } + if(line && line != linebuf) +@@ -461,5 +465,6 @@ void clear_stat() + if( (flen=snprintf(fmt, sizeof(fmt), "\r%%%ds\r", len)) > 0 + && flen < sizeof(fmt) ) + fprintf(stderr, fmt, " "); ++ fflush(stderr); + } + }