1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251
|
2026-01-15 David Bryant <david@wavpack.com>
* cli/utils.c:
fix --pause option (Windows-only feature)
- this was broken when used with the WavPack frontend and in other situations
- now uses the Windows "pause" command rather than calling kbhit() repeatedly
2026-01-13 David Bryant <david@wavpack.com>
* src/pack_dns.c:
a couple minor tweaks to the DNS (dynamic noise shaping) algorithm
- eliminate discontinuities in shaping weight stream triggered by low levels
- increase block sizes to slightly improve hybrid lossless compression ratio
2026-01-07 David Bryant <david@wavpack.com>
* cli/riff.c, cli/aiff.c:
handle a few specific non-standard WAV and AIFF files that other programs allow
2025-12-23 David Bryant <david@wavpack.com>
* src/open_raw.c:
fix another potential read beyond buffer provided by caller of WavpackOpenRawDecoder()
- this time the buffer for the correction data
2025-11-10 David Bryant <david@wavpack.com>
* src/open_raw.c:
fix potential read beyond buffer provided by caller of WavpackOpenRawDecoder()
2025-10-23 David Bryant <david@wavpack.com>
* cli/wvtag.c:
add --import-file option to copy tags from one WavPack file to another WavPack file
2025-04-02 David Bryant <david@wavpack.com>
* src/common_utils.c, cli/wavpack.c:
- fixes related to encoding from an unknown length (e.g., pipes)
- enhanced reporting of bitrate and compression ratio
2025-02-12 David Bryant <david@wavpack.com>
* src/unpack_utils.c:
fixes for multiple oss-fuzz issues caught by newly-enabled multithreaded fuzzing
2025-02-07 David Bryant <david@wavpack.com>
* fuzzing/fuzzer.cc:
enable threading on fuzzer to improve coverage
2025-01-15 David Bryant <david@wavpack.com>
* CMakeLists.txt, wavpackdll/wavpackdll.rc, cli/utils.h, configure.ac, src/wavpack_version.h:
bump versions to 5.8.0
2025-01-15 David Bryant <david@wavpack.com>
* src/pack.c, src/pack_dns.c, src/pack_utils.c, src/extra[12].c:
numerous enhancements to hybrid/lossy quality, the "extra" modes, and multithreading
2025-01-13 David Bryant <david@wavpack.com>
* cli/utils.[ch], cli/wavpack.c, cli/wvunpack.c, cli/wvgain.c:
use multiple cores by default if we can verify their existence (cli programs only)
2024-11-20 Ozkan Sezer <sezeroz@gmail.com>
* CMakeLists.txt:
set maximum CMake policy to 3.10
2024-11-20 Anonymous Maarten <anonymous.maarten@gmail.com>
* cmake/wavpackcpu.cmake:
fix wavpackcpu.cmake for C89 compilers
2024-10-31 Anonymous Maarten <anonymous.maarten@gmail.com>
* CMakeList.txt, cmake/wavpackcpu.cmake:
CMAKE_SYSTEM_PROCESSOR is the architecture of the build machine
2024-09-30 David Bryant <david@wavpack.com>
* cli/utils.c:
fix syntax error caught with MinGW
2024-08-10 David Bryant <david@wavpack.com>
* cli/wavpack.c:
fix option parsing error triggered by strtod() recognizing hex input
2024-08-09 David Bryant <david@wavpack.com>
* cli/wvtag.c, cli/wvunpack.c, src/read_words.c, src/unpack_dsd.c:
issue #184: fixes related to using Visual Studio 2022 with clang-cl
2024-07-16 David Bryant <david@wavpack.com>
* cli/wvunpack.c:
copy "--no-overwrite" option functionality from wavpack.c
2024-07-15 David Bryant <david@wavpack.com>
* cli/import_id3.c:
add TSOC (ComposerSort) to list of ID3v2 imported tags
2024-07-09 David Bryant <david@wavpack.com>
* cli/utils.c:
fix our DoGetFileSize() on Windows to return zero on anything other than a real file
2024-04-15 David Bryant <david@wavpack.com>
* cli/wavpack.c, cli/wvunpack.c, cli/riff.c, audition/cool_wv4.c:
better fix for WAV files containing unpacked samples
2024-04-13 David Bryant <david@wavpack.com>
* audition/cool_wv4.c:
fixed bug with files of over 24 channels
2024-04-01 David Bryant <david@wavpack.com>
* CMakeLists.txt:
fix dependency on libgcc when building shared Windows libs (wavpackdll.dll)
2024-03-28 David Bryant <david@wavpack.com>
* cli/riff.c:
do not allow unpacked audio samples in WAV (e.g., 24-bit samples in 32-bit container)
2024-03-15 David Bryant <david@wavpack.com>
* cli/write_caff.c:
issue #180: fix inconsequential memory leak found in static analysis
2024-03-11 David Bryant <david@wavpack.com>
* src/open_utils.c:
suppress gcc/clang fallthrough warnings (thanks Justin!)
2024-03-01 David Bryant <david@wavpack.com>
* src/unpack_seek.c:
issue #178: fix use-after-free warning from gcc 13.2 (false positive)
2024-02-27 David Bryant <david@wavpack.com>
* cli/import_id3.c:
don't parse past the indicated length of an ID3 tag
2024-02-25 David Bryant <david@wavpack.com>
* cli/wvtest.c, cli/fast-tests, cli/all-tests:
- improve coverage of multithreading test with bigger buffers
- fix possible threading deadlock with small transfer buffer
- add testing for the new --optimize-int32 option
2024-02-22 David Bryant <david@wavpack.com>
* src/open_utils.c, src/unpack_utils.c:
issue #177: fix crash and false errors when decoding mchan files with OPEN_2CH_MAX
2024-02-16 David Bryant <david@wavpack.com>
* doc/WavPack5LibraryDoc.*, doc/wavpack_doc.html, man/*.1, include/wavpack.h:
update docs for 5.7.0
2024-02-07 David Bryant <david@wavpack.com>
* cli/wavpack.c, include/wavpack.h, src/pack[_floats].c:
remove the recent encoding optimization pertaining to floating point audio
2024-02-07 David Bryant <david@wavpack.com>
* src/open_utils.c:
allow non-compliant multichannel FFmpeg files to decode
2024-02-07 David Bryant <david@wavpack.com>
* cli/wavpack.c:
add "BW64" to fourcc headers recognized for WAV files
2024-02-06 David Bryant <david@wavpack.com>
* cli/riff.c, src/entropy_utils.c:
fix MSVC warnings
2024-01-23 David Bryant <david@wavpack.com>
* src/entropy_utils.c:
issue #175: fix undefined behavior (UB) caught by fuzzing
2023-12-20 David Bryant <david@wavpack.com>
* cli/riff.c:
check the cbSize in the wave format header before using the extraData fields
2023-12-03 Ozkan Sezer <sezeroz@gmail.com>
* decorr_utils.c, extra[12].c, open_utils.c, pack.c, read_words.c, unpack3.[ch],
unpack3_seek.c, write_words.c:
eliminate use of '&' address-of operator on arrays
2023-11-27 David Bryant <david@wavpack.com>
* src/pack_utils.c:
fix issue causing multithreading to mistakenly work with --merge-blocks
2023-11-09 David Bryant <david@wavpack.com>
* src/pack_utils.c, src/unpack_utils.c, wavpack_local.h:
gracefully handle failures in creating worker threads (by not using them)
2023-11-09 Ozkan Sezer <sezeroz@gmail.com>
* src/open_filename.c:
use _fstati64 in can_seek and get_length for windows (or with watcom)
2023-10-29 David Bryant <david@wavpack.com>
* src/open_filename.c:
fix VS 2019 seeking issue on very large files (Windows only since 5.4.0)
2023-10-23 Ozkan Sezer <sezeroz@gmail.com>
* Makefile.am, acinclude.m4:
add src/wavpack.exports to EXTRA_DIST and remove acinclude.m4
2023-10-13 Ozkan Sezer <sezeroz@gmail.com>
* CMakeLists.txt, Makefile.am:
build updates for wvtest building on Windows
2023-10-12 David Bryant <david@wavpack.com>
* cli/wvtest.c, wavpack.sln, w*exe/w*.vcxproj:
- use the typedefs and macros defined in src/wavpack_local.h to allow native Windows threading
- add wvtest project to MSVC and add ENABLE_THREADS to command-line programs
2023-10-12 Ozkan Sezer <sezeroz@gmail.com>
* CMakeLists.txt, Makefile.am, configure.ac, cli/md5.[ch]:
many Cmake and autoconf fixes, including removing openssl libcrypt for MD5
2023-10-10 David Bryant <david@wavpack.com>
* cli/aiff.c:
reduced pedantism (based on a non-compliant SoundCloud file that others accept)
2023-08-30 Anonymous Maarten <anonymous.maarten@gmail.com>
* CMakeList.txt:
- don't enable tests and programs when building wavpack as a subproject
2023-08-29 David Bryant <david@wavpack.com>
* CMakeLists.txt
issue #162: add <max> version (3.5) to silence CMake deprecation warning
2023-07-04 David Bryant <david@wavpack.com>
* audition/cool_wv4.c:
move reading of different float normalizations to inside plugin, ver 4.1
2023-06-22 David Bryant <david@wavpack.com>
* audition/cool_wv4.c:
update for multithreading, bump version to 4.0
2023-06-22 David Bryant <david@wavpack.com>
* src/pack_utils.c, src/unpack_utils.c, src/wavpack_local.h:
for Windows threading use _beginthreadex()/_endthreadex() in libwavpack
- Google says CreateThread()/ExitThread() should not be used with the CRT
2023-06-15 David Bryant <david@wavpack.com>
* src/pack.c, cli/wavpack.c, cli/wvunpack.c, cli/wvgain.c:
- fix "--disable-threads" configure option and add appropriate messaging to CLI programs
- error on attempt to use "--optimize-32bit" with lossy; update help text
2023-06-15 David Bryant <david@wavpack.com>
* src/pack.c, src/pack_utils.c:
improve -x1 and -x2 compression under temporal multithreading
2023-06-14 David Bryant <david@wavpack.com>
* src/pack_utils.c:
don't reset packing code on threading discontinuities in 'extra' modes
2023-06-02 David Bryant <david@wavpack.com>
* cli/wavpack.c:
add option --optimize-32bit to enable new optimized compression for 32-bit audio
2023-06-01 David Bryant <david@wavpack.com>
* src/wavpack.h, src/open_utils.c, src/pack[_floats].c, src/unpack[_floats].c, src/wavpack_local.h:
new optional optimizations in libwavpack for specific 32-bit float and integer files
2023-05-19 David Bryant <david@wavpack.com>
* cli/wavpack.c, cli/wvunpack.c, cli/wvgain.c:
use large buffers when --threads is selected to allow "temporal" multithreading
- also add -t option to wvgain to enable threads
2023-05-18 David Bryant <david@wavpack.com>
* src/common_utils.c, src/pack.c, src/pack_dsd.c, src/pack_utils.c, src/wavpack_local.h:
extend multithreaded encoding to stereo and mono files in libwavpack
2023-05-18 David Bryant <david@wavpack.com>
* src/common_utils.c, src/open_utils.c, src/unpack.c, src/unpack_dsd.c, src/unpack_utils.c,
src/wavpack_local.h:
extend multithreaded decoding to stereo and mono files in libwavpack
2023-05-17 David Bryant <david@wavpack.com>
* cli/aiff.c:
allow AIFF files with a non-zero "offset" or a non-zero but valid "blockSize" in the sound chunk
2023-04-22 David Bryant <david@wavpack.com>
* cli/wavpack.c, cli/wvunpack.c, cli/wvtest.c, src/libwavpack.vcxproj:
add options to select multithreaded operation
2023-04-22 David Bryant <david@wavpack.com>
* include/wavpack.h, src/common_utils.c, src/open_utils.c, src/pack_utils.c, src/unpack_utils.c,
src/wavpack_local.h, CMakeLists.txt, configure.ac, Makefile.am:
add support for multithreaded encoding and decoding to libwavpack
2023-04-11 David Bryant <david@wavpack.com>
* include/wavpack.h, src/common_utils.c, src/extra?.c, src/open_utils.c, src/pack*.c, src/unpack*.c,
src/wavpack_local.h:
refactor to aid implementation of threading of multichannel audio
2023-03-13 David Bryant <david@wavpack.com>
* cli/wavpack.c, cli/wvunpack.c, cli/wvgain.c, cli/wvtag.c, cli/utils.h, cli/aiff[_write].c,
cli/caff.c, cli/dsdiff.c, cli/dsf.c, cli/riff.c, cli/wave64.c:
don't delete source files with certain warnings that could cause data loss
2023-03-11 David Bryant <david@wavpack.com>
* cli/wavpack.c, cli/dsdiff.c, cli/dsf.c:
round up DSD sample rates to avoid falsely detecting zero
2023-03-10 David Bryant <david@wavpack.com>
* cli/wavpack.c, man/wavpack.1, doc/wavpack_doc.html:
allow hybrid bitrate to be specified with "-c" option (not just "-b" option)
2023-03-07 David Bryant <david@wavpack.com>
* cli/wvtest.c:
issue #161, add another check for invalid WavPack files to the seeking test harness
2023-03-01 David Bryant <david@wavpack.com>
* cli/import_id3.c:
do not reject ID3v2 tags with footers
2023-02-11 David Bryant <david@wavpack.com>
* cli/wavpack.c:
delay display of tag import until after verify
2023-02-11 David Bryant <david@wavpack.com>
* cli/utils.c:
FillConsoleOutputCharacter() is cleaner and more reliable under Wine than spewing spaces
2023-02-10 David Bryant <david@wavpack.com>
* cli/wavpack.c:
don't allow a WavPack source file with --raw-pcm (makes no sense)
2023-01-27 David Bryant <david@wavpack.com>
* cli/import_id3.c, cli/wavpack.c, cli/wvtag.c:
improvements to ID3v2 tag import, including ID3v2.4 support
2023-01-27 David Bryant <david@wavpack.com>
* cli/wavpack.c:
after creating a solitary .wv file, delete any similarly-named, now obsolete, .wvc file
2023-01-21 Ozkan Sezer <sezeroz@gmail.com>
* CMakeLists.txt, configure.ac:
add -Wall to CFLAGS for gcc (or clang)
2023-01-21 Ozkan Sezer <sezeroz@gmail.com>
* cli/wavpack.c, cli/wvunpack.c:
Silence gcc-9 -Wstringop-truncation warnings
2023-01-13 David Bryant <david@wavpack.com>
* man/wavpack.1, man/wvunpack.1, man/wvgain.1, man/wvtag.1, CMakeLists.txt:
tweaks to man pages
2023-01-09 Jan Starý <hans@stare.cz>
* man/wavpack.1, man/wvunpack.1, man/wvgain.1, man/wvtag.1, CMakeLists.txt, configure.ac, Makefile.am:
update man pages to mdoc(7)
2022-12-09 Anonymous Maarten <anonymous.maarten@gmail.com>
* CMakeList.txt:
- calculate macho current/compatibility version
- fix dll filename of mingw library
- set SOVERSION and VERSION property of wavpack
- extract libtool from configure.ac and convert to SOVERSION
- allow wavpack to be installed by a master project
2022-11-24 Anonymous Maarten <anonymous.maarten@gmail.com>
* CMakeList.txt:
- too many semicolons in libwavpack.map + escape string
2022-11-23 David Bryant <david@wavpack.com>
* cli/aiff.c, cli/caff.c, cli/riff.c, cli/wave64.c, cli/wavpack.c, include/wavpack.h:
- add --force-even-byte-depth option for rounding up bit depths
- detect and report PCM files having non-zero padding bits
* cli/wavpack.c:
- add new input format (AIFF) to "--help"
- delete unused static variable
* cli/wvunpack.c:
- fix AIFF format name typo
2022-11-21 David Bryant <david@wavpack.com>
* CMakeLists.txt, wavpackdll/wavpackdll.rc, cli/utils.h, configure.ac, src/wavpack_version.h:
bump versions to 5.6.0
* winamp/in_wv.c:
bring in mingw+ftelli64() fix and remove tabs
2022-11-21 Ozkan Sezer <sezeroz@gmail.com>
* winamp/in_wv.c, winamp/wa_ipc.h:
- use prototyped function ptrs instead of an opaque FARPROC
- replace UNREFERENCED_PARAMETER(item) with (void)(item)
- Watcom clib support for truncate_here()
* audition/Makefile.wat:
- add OpenWatcom makefile to build Win32 CoolEdit plugin
2022-11-20 David Bryant <david@wavpack.com>
* cli/aiff.c:
simplify conversion from extended precision to double and squash MSVC warning
* CMakeList.txt:
- suppress __stdcall fixup warnings when building Cooledit filter on mingw
- add static libgcc and wavpack library to Audition/Cooledit filter
- add winamp/wavpack.rc to in_wv.dll to enable dialogs and text
- revert to linking plugins with static libwavpack
2022-11-19 Anonymous Maarten <anonymous.maarten@gmail.com>
* CMakeList.txt:
- Build winamp plugin with static libgcc and libstdc++ runtime
- need to set OUTPUT_NAME on MODULE target
- add objects of wavpack to in_wv.dll
* wavpackdll/wavpackdll.vcxproj:
- WavpackFloatNormalize was not exported for all MSVC build configurations
* wavpackdll/wavpackdll.rc:
- Include winresrc.h instead of afxres.h to allow building without MFC installed
2022-11-17 David Bryant <david@wavpack.com>
* CMakeList.txt:
- Add -mwindows to the link options to change (console) into (GUI) for Audition & Winamp plugins
- if we aren't building shared libs, don't check if the compiler supports symbol maps
2022-11-17 Anonymous Maarten <anonymous.maarten@gmail.com>
* CMakeList.txt:
- build winamp and cooledit libraries as module
- Create a WavPack::WavPack when exporting + used as subproject
- Cannot run an executable when cross compiling
- version script cannot contain "\;"
2022-11-16 David Bryant <david@wavpack.com>
* cli/aiff.c:
- improve handling of nonintegral sample rates in AIF and CAF files; squash warnings
- allow command-line specification of channel assignments for AIFF files
* cli/wvtest.c, cli/wvunpack.c, src/unpack3_open.c, audition/cool_wv4.c:
fix warnings
2022-11-15 Ozkan Sezer <sezeroz@gmail.com>
* src/open_filename.c:
check presence of DosSetFileSizeL before use (OS/2)
* Makefile.am:
add resource.h to EXTRA_DIST (needed by wavpackdll.rc)
2022-11-12 Ozkan Sezer <sezeroz@gmail.com>
* CMakeLists.txt, winamp/in_wv.c:
Cmake fixes to winamp build (still untested!)
2022-11-10 Ozkan Sezer <sezeroz@gmail.com>
* src/read_words.c, src/wavpack_local.h:
enable clz and ctz optimizations for watcom builds
* cli/utils.c:
- use prototyped function pointers instead of an opaque FARPROC
- fixed success check for SHGetSpecialFolderPathA()
2022-11-09 David Bryant <david@wavpack.com>
* cli/wvunpack.c:
don't error out completely just because a header can't be formatted correctly
* cli/aiff[_write].c:
fix some undefined behavior in AIFF extended numerical processing
2022-11-09 Ozkan Sezer <sezeroz@gmail.com>
* cli/wavpack.c, cli/wvunpack.c, src/open_filename.c, src/tag_utils.c, src/wavpack_local.h:
Watcom fixes
2022-11-07 David Bryant <david@wavpack.com>
* cli/aiff[_write].c, cli/wavpack.c, cli/wvunpack.c:
add import/export support for uncompressed Apple AIFF files
2022-11-07 Ozkan Sezer <sezeroz@gmail.com>
* extra[12].c, pack.c, unpack.c, wavpack_local.h:
mark x86 asm functions as __cdecl for Watcom compiler
* CMakeLists.txt, wavpack_local.h, winamp/*:
cmake and windows build fixes (mostly winamp plugin, which is untested!)
2022-11-05 Ozkan Sezer <sezeroz@gmail.com>
* extra[12].c, tag_utils.c, wavpack_local.h:
eliminate use of '&' address-of operator on arrays (Watcom warning)
2022-11-01 David Bryant <david@wavpack.com>
* cli/wvunpack.c:
several fixes for edge-case file format behavior bugs
- big-endian-sourced "raw" files give big-endian "wav"s (unless --wav added)
- future "unknown" big-endian formats don't properly verify MD5 hashes
- stop allowing verification mode (-v) with skip/until specifiers
2022-11-01 evpobr <evpobr@gmail.com>
* CMakeLists.txt:
make the names of features and options match
2022-08-16 David Bryant <david@wavpack.com>
* cli/wvunpack.c:
avoid string overflow when displaying channel assignments
* cli/wvtest.c:
issue #127: make sure that target WavPack file for "seektest" is not longer than its header claims
2022-07-13 Ben Brown <ben@demerara.io>
* autogen.sh:
Honour NOCONFIGURE=1
2022-07-11 Daniel Engberg <daniel.engberg.lists@pyret.net>
* CMakeLists.txt:
Install header in same location as GNU Autotools
2022-07-10 David Bryant <david@wavpack.com>
* cli/wvtest.c:
don't print pthread_join() result b/c we're not setting it anyway
2022-07-07 David Bryant <david@wavpack.com>
* src/pack_utils.c:
fix length update in library-generated WAV headers on big-endian machines
2022-07-05 David Bryant <david@wavpack.com>
* cli/wvunpack.c, src/open_utils.c:
issue #121: fix NULL deference in wvunpack.c and sanitize custom extensions
2022-07-03 David Bryant <david@wavpack.com>
* src/pack_utils.c:
fix an undefined behavior (UB) in pack_streams()
* cli/wvtest.c:
fix a warning about attempting to print the termination value of pthread_join()
2022-07-02 David Bryant <david@wavpack.com>
* cli/wavpack.c:
- add --raw-pcm-ex option increasing maximum available channel count (4096 vs 256)
- add -g option (general/normal) to cancel previously specified -f or -h
- failure to rewind stdout to update header no longer generates an error
2022-06-28 David Bryant <david@wavpack.com>
* cli/wavpack.c, cli/wvunpack.c:
include "--drop" option more explicitly in the "help" displays
2022-06-27 David Bryant <david@wavpack.com>
* cli/wavpack.c, cli/wvunpack.c:
minor improvements, especially regarding filename-specified options
- allow -y to override restrictions around using pipes for input and output
- allow -x0 to cancel previously specified -x values (and means no extra)
- allow -f and -h to override each other instead of generating an error
* cli/utils.c, cli/utils.h, cli/wavpack.c, cli/wvunpack.c, cli/wvtag.c:
- new "--drop" option allows multiple input files for "drag and drop" operations
- for "--pause", try to detect if it's doable first, and don't peg a core if it is
2022-06-26 David Bryant <david@wavpack.com>
* cli/wvunpack.c:
add brace-delimited options to wvunpack also
2022-06-23 David Bryant <david@wavpack.com>
* Makefile.am, man/wavpack.xml, man/wvunpack.xml, man/wvgain.xml, man/wvtag.xml:
update the man pages and fix Makefile.am to put the converted man pages in man/
* src/pack_utils.c:
sanitize total sample count in WavpackSetConfiguration64()
2022-06-23 David Bryant <david@wavpack.com>
* cli/wavpack.c, cli/wvunpack.c:
clear up a few minor issues related to use of piped I/O, updated --help
2022-06-22 David Bryant <david@wavpack.com>
* cli/wvunpack.c:
add --raw-pcm option and add information about concatenating files to --help
2022-06-20 David Bryant <david@wavpack.com>
* cli/wavpack.c, cli/riff.c:
two improvements related to the -i option (ignore header length)
- when we error on invalid WAV file lengths, message the user about -i option
- always attempt to correct the stored headers of WAV files encoded with -i
2022-06-19 David Bryant <david@wavpack.com>
* cli/wavpack.c:
for security, only allow options to be included in filename (no filenames, etc.)
2022-06-19 David Bryant <david@wavpack.com>
* src/unpack_dsd.c:
fix two minor issues with the DSD to PCM decimation
- eliminate sometimes audible clicks at the start of files
- eliminate a very small DC offset
2022-06-06 David Bryant <david@wavpack.com>
* cli/wavpack.c:
add --no-overwrite option to silently skip when the destination file already exists
* cli/utils.c, src/open_filename.c:
mingw32's _fseeki64() / _ftelli64() are broken on i686; use fseeko64() and ftello64() instead
2022-06-05 David Bryant <david@wavpack.com>
* cli/wavpack.c:
allow CLI options to be added to filename in braces to modify Windows drag-and-drop (e.g., wavpack{-hxvm}{--pause}.exe)
2022-06-01 David Bryant <david@wavpack.com>
* cli/wavpack.c:
- fixed issue of not detecting an incorrect length when transcoding a WavPack file
- fixed issue where raw DSD audio from pipes failed if length was unknown
2022-05-29 David Bryant <david@wavpack.com>
* Makefile.am:
issue #116: include wavpackdll.rc in tarball for building on MSVC
2022-05-12 David Bryant <david@wavpack.com>
* cli/caff.c, cli/dsdiff.c, cli/riff.c, cli/wave64.c, cli/wavpack.c, include/wavpack.h, src/pack_utils.c:
issue #117: clarify and enforce channel count limits in library and CLI utilities
- add WAVPACK_MAX_CHANS (4096) and WAVPACK_MAX_CLI_CHANS (256) constants to wavpack.h
- fix issue where an invalid 4096+ channel file could be created (should not be allowed)
2021-11-23 David Bryant <david@wavpack.com>
* cli/dsdiff.c, cli/dsf.c:
issue #110: sanitize DSD file types for invalid lengths (CVE-2021-44269)
2021-07-30 evpobr <evpobr@gmail.com>
* CMakeLists.txt:
- use OpenSSL::Crypto target if possible
- use target_link_options() for CMake >= 3.13 only
2021-05-16 David Seifert <soap@gentoo.org>
* configure.ac:
avoid obsolescent `test -a` constructs
2021-05-10 David Bryant <david@wavpack.com>
* configure.ac:
iconv is not used in Windows builds, so don't require in configure
2021-05-09 Colugo <colugomusic@gmail.com>
* CMakeLists.txt:
- use target_link_options() to add exported symbol lists
- fix exported symbol list linker options
- removed single quotes around file paths for exported symbol lists
2021-05-09 David Seifert <soap@gentoo.org>
* Makefile.am, cli/Makefile.am, cli/all-tests, cli/fast-tests, configure.ac,
include/Makefile.am, man/Makefile.am, src/Makefile.am:
make buildsystem non-recursive
2021-05-08 David Bryant <david@wavpack.com>
* src/common_utils.h:
fix possible strict aliasing violations
2021-04-25 David Seifert <soap@gentoo.org>
* configure.ac, Makefile.am, autogen.sh, build-regressors.sh, cli/Makefile.am:
clean up Autotools
2021-04-25 David Seifert <soap@gentoo.org>
* configure.ac, cli/Makefile.am, cli/all-tests, cli/fast_tests:
use canonical Automake test harness
2021-04-25 David Seifert <soap@gentoo.org>
* configure.ac, Makefile.am, man/Makefile.am:
various POSIX-compatability fixes including bug: https://bugs.gentoo.org/773955
2021-03-12 David Bryant <david@wavpack.com>
* cli/utils.c:
issue #99: stack buffer overflow in command-line programs with pathological filename
2021-01-04 David Bryant <david@wavpack.com>
* wavpack.sln, *.vcxproj:
update Visual Studio project files to 2019 version
2020-12-31 David Bryant <david@wavpack.com>
* configure.ac:
disable assembly code for ARM64 (which does not exist yet) for Apple silicon build
2020-12-29 David Bryant <david@wavpack.com>
* src/pack_utils.c:
- issue #91: fix integer overflows resulting in buffer overruns (CVE-2020-35738)
- sanitize configuration parameters better (improves clarity and aids debugging)
2020-12-22 David Bryant <david@wavpack.com>
* cli/wavpack.c:
fix memory leaks when errors are encountered creating WavPack files
2020-06-06 David Bryant <david@wavpack.com>
* src/common_utils.c:
always have WavpackGetFloatNormExp() report normalized audio when OPEN_NORMALIZE
is specified in open call (which makes more sense than reporting what's in file)
2020-06-06 David Bryant <david@wavpack.com>
* cli/caff_write.c, cli/riff.c, cli/riff_write.c, cli/wave64_write.c, cli/wvunpack.c:
- add --normalize-floats switch to enable writing Adobe floating-point files to
standard formats that don't support un-normalized audio
- stop ignoring errors when writing audio file headers
- stop refusing to encode files in Adobe 24.0 format
2020-06-06 David Bryant <david@wavpack.com>
* cli/wvunpack.c:
add quick verify command (-vv) that relies on block checksums instead of decoding audio
2020-05-07 David Bryant <david@wavpack.com>
* cli/wvunpack.c:
display "help" options on command-line errors
2020-04-14 David Bryant <david@wavpack.com>
* cli/wvunpack.c, cli/wvtag.c:
use _snprintf() on Windows and make sure output is NULL terminated
2020-04-13 David Bryant <david@wavpack.com>
* cli/wavpack.c, cli/wvunpack.c, cli/wvgain.c, cli/wvtag.c, cli/wvtest.c:
reformat wvunpack "help" and split into long and short versions
minor "help" edits for other programs and bump copyright dates
2020-04-12 David Bryant <david@wavpack.com>
* include/wavpack.h, src/wavpack_local.h:
clean up some duplication in the header files
2020-04-11 David Bryant <david@wavpack.com>
* cli/caff_write.c:
avoid left-shifting negative value (undefined behavior)
2020-04-08 David Bryant <david@wavpack.com>
* cli/wavpack.c:
issue #81: avoid left-shifting negative values (undefined behavior)
2020-03-31 David Bryant <david@wavpack.com>
* cli/wvunpack.c, cli/wvtag.c:
sanitize tag extraction names for length and path inclusion
2020-01-31 David Bryant <david@wavpack.com>
* src/unpack_dsd.c, src/wavpack_local.h:
OSS-Fuzz issue 20448: fix regression from a recent undefined-behavior fix
2020-01-27 David Bryant <david@wavpack.com>
* cli/import_id3.c:
fix trailing garbage characters on imported ID3v2 TXXX tags
2020-01-22 David Bryant <david@wavpack.com>
* src/common_utils.c:
fix for fuzz-triggered divide by zero (bad sample rate)
2020-01-20 David Bryant <david@wavpack.com>
* cli/wvtest.c, src/common_utils.c, src/decorr_utils.c, src/entropy_utils.c, src/open_utils.c,
src/pack.c, src/pack_dsd.c, src/pack_utils.c, src/tag_utils.c, src/unpack.c, src/unpack_dsd.c,
src/unpack_floats.c, src/wavpack_local.h:
undefined behavior fixes, mostly left-shifting negative values or shifting >= target width
2020-01-13 David Bryant <david@wavpack.com>
* src/tag_utils.c:
OSS-Fuzz issue 20060: fix for uninitialized memory access
2020-01-09 David Bryant <david@wavpack.com>
* src/tags.c:
fix bad malloc() triggered by corrupt APEv2 tag (fuzz testing)
2020-01-09 David Bryant <david@wavpack.com>
* src/unpack_seek.c, src/unpack_utils.c:
several fixes for uninitialized memory access
2019-12-21 David Bryant <david@wavpack.com>
* src/unpack.c:
fix for uninitialized memory access (unexpected EOF from get_word())
2019-12-14 David Bryant <david@wavpack.com>
* cli/wvunpack.c
-s option: add "5.1 surround side" and "7.1 surround" to reported channel configurations
2019-12-13 David Bryant <david@wavpack.com>
* cli/riff[_write].c, cli/wave64[_write].c, cli/caff[_write].c, cli/dsf[_write].c, cli/dsdiff[_write].c:
split header readers & writers so that wvunpack doesn't link libwavpack encoder
2019-12-12 David Bryant <david@wavpack.com>
* cli/riff.c, cli/wave64.c, cli/caff.c:
-i option: display warning when dropping PCM samples from end of file
2019-12-11 David Bryant <david@wavpack.com>
* cli/wavpack.c:
fix a WAV header if user specified -i (to ignore length) and we can make it valid
2019-12-08 David Bryant <david@wavpack.com>
* fuzzing/fuzzer.cc, fuzzing/fuzzer_seed_corpus.zip, etc...:
add fuzzing directory with corpus and other files for oss-fuzz
2019-12-08 David Bryant <david@wavpack.com>
* src/open_utils.c:
fix possible memory leak on opening corrupted files
2019-12-08 David Bryant <david@wavpack.com>
* src/common_utils.c, src/pack_dsd.c, src/unpack_dsd.c, src/wavpack_local.h:
- fix potential memory leak when seeking in DSD files
- simplify DSD fast mode lookup buffer allocations
2019-12-08 David Bryant <david@wavpack.com>
* src/unpack.c, src/unpack_dsd.c, src/unpack_seek.c:
seeking fixes:
- fix crash during seek to corrupted block
- check header size before malloc()
- fix overlapping memcpy()
2019-11-30 David Bryant <david@wavpack.com>
* src/pack.c:
- provide more configuration sanity checks to aid application debugging
- force max_blocksize even so bitstream buffer overflow detection works
2019-04-09 David Bryant <david@wavpack.com>
* cli/import_id3.c:
issue #69: add TPUB (Publisher) to accepted ID3v2 tag fields
2019-03-05 David Bryant <david@wavpack.com>
* cli/wave64.c:
issue #68: clear WaveHeader at start to prevent uninitialized read
2019-03-05 David Bryant <david@wavpack.com>
* cli/dsdiff.c:
issue #67: make sure sample rate is specified and non-zero in DFF files
2019-03-04 David Bryant <david@wavpack.com>
* cli/caff.c:
issue #66: make sure CAF files have a "desc" chunk
2019-03-02 David Bryant <david@wavpack.com>
* cli/dsdiff.c:
issue #65: makre sure DSDIFF files have a valid channel count
2018-12-23 evpobr <evpobr@gmail.com>
* include/wavpack.h src/wavpack_local.h:
remove duplication so that wavpack_local.h can include wavpack.h
2018-12-16 evpobr <evpobr@gmail.com>
* Makefile.am, CMakeLists.txt:
add CMake project
2018-12-09 orbea <orbea@fredslev.dk>
* cli/Makefile.am:
fix command-line builds with slibtool
2018-12-08 Ørjan Malde <foxyred333@gmail.com>
* src/extra[12].c, src/pack.c, src/pack_x64.S, src/unpack.c, src/unpack_x64.S, src/wavpack_local.h:
x64 ASM support for midipix
2018-11-29 David Bryant <david@wavpack.com>
* src/pack_utils.c:
issue #53: error on zero sample rate
- CVE-2018-19840
2018-11-29 David Bryant <david@wavpack.com>
* src/open_utils.c:
issue #54: fix potential out-of-bounds heap read
- CVE-2018-19841
2018-11-29 David Bryant <david@wavpack.com>
* src/open_filename.c:
Windows only: use wvc file when verifying encode when source is stdin
2018-09-03 Mike Tzou <Chocobo1@users.noreply.github.com>
* cli/import_id3.c, cli/wvgain.c, cli/open_raw.c, cli/wvparser.c, cli/wvunpack.c, winamp/in_wv.c:
printf() format specifiers
memory leaks
2018-08-26 David Bryant <david@wavpack.com>
* cli/dsdiff.c, cli/dsf.c, cli/caff.c:
issue #41 issue #42 issue #43: sanitize input files to prevent crashes
2018-06-02 David Bryant <david@wavpack.com>
* src/unpack_armv7.S:
fix thumb interworking on ARM by adding .type for assembly functions
2018-04-30 David Bryant <david@wavpack.com>
* cli/import_id3.c, cli/wavpack.c:
allow ID3v2.3 tag import from any file type (not just DSF)
2018-04-29 David Bryant <david@wavpack.com>
* cli/import_id3.c:
handle ID3v2.3 TXXX tags using description for APEv2 item name (w/ case formatting)
2018-04-24 David Bryant <david@wavpack.com>
* cli/riff.c, cli/wave64.c:
issue #30 issue #31 issue #32: no multiple format chunks in WAV or W64
- CVE-2018-10536
- CVE-2018-10537
* cli/dsdiff.c, cli/riff.c, cli/wave64.c:
issue #33, sanitize size of unknown chunks before malloc()
- CVE-2018-10538
- CVE-2018-10539
- CVE-2018-10540
2018-04-17 David Bryant <david@wavpack.com>
* cli/import_id3.c:
add a bunch more ID3v2.3 tag entries
make ImportID3v2() more robust (e.g. always set bytes_used)
2018-04-08 David Bryant <david@wavpack.com>
* src/common_utils.c:
fix memory leaks
2018-02-11 David Bryant <david@wavpack.com>
* cli/caff.c:
issue #26, fix buffer overflows and bad allocs on corrupt CAF files
- CVE-2018-7254
2018-02-10 David Bryant <david@wavpack.com>
* cli/dsdiff.c:
issue #28, do not overwrite heap on corrupt DSDIFF file
- CVE-2018-7253
2018-02-04 David Bryant <david@wavpack.com>
* cli/riff.c:
issue #27, do not overwrite stack on corrupt RF64 file
- CVE-2018-6767
2017-10-29 David Bryant <david@wavpack.com>
* src/read_words.c:
issue #24, another C++ compiler fix, this time for _BitScanForward()
2017-10-28 David Bryant <david@wavpack.com>
* Makefile.am:
add README.md to extra distribution files
2017-10-20 Joël R. Langlois <joel.r.langlois@gmail.com>
* README, README.md:
Updated README to Markdown format.
2017-10-12 Joël R. Langlois <joel.r.langlois@gmail.com>
* src/decorr_utils.c, src/entropy_utils.c, src/open_legacy.c,
src/open_utils.c, src/tag_utils.c, src/tags.c, src/unpack3.c,
src/unpack3_open.c, src/unpack_dsd.c, src/unpack_seek.c,
src/unpack_utils.c:
Fixed errors when compiling using a C++ compiler.
2017-09-30 David Bryant <david@wavpack.com>
* cli/import_id3.c:
experimental fix to handle ID3v2.3 tags that [incorrectly] use synchsafe for the frame size
2017-08-31 David Bryant <david@wavpack.com>
* cli/wavpack.c:
briefly describe other utilities in help displays for wavpack
2017-07-24 David Bryant <david@wavpack.com>
* cli/md5.h:
do not try to use libcrypto on OS X
2017-07-23 David Bryant <david@wavpack.com>
* cli/md5.c, cli/md5.h, cli/wavpack.c, cli/wvtest.c, cli/wvunpack.c, configure.ac:
use Alexander Peslyak's MD5 implementation (or libcrypto if present) to fix
unaligned access coredump on OpenBSD/sparc64 (reported on openbsd-ports)
2017-03-19 David Bryant <david@wavpack.com>
* src/write_words.c:
improve quality of scan_word() results on very short blocks (via multiple passes)
2017-03-01 David Bryant <david@wavpack.com>
* cli/wavpack.c, cli/wvgain.c, cli/wvtag.c, cli/wvunpack.c:
add required parens to correct precedence error/warning
2017-02-26 David Bryant <david@wavpack.com>
* cli/wavpack.c, cli/wvgain.c, cli/wvtag.c, cli/wvunpack.c:
refactor debug logging mode so that we can turn on a forced arg dump
* src/common_utils.c, src/wavpack_local.h:
provide for a "close" callback to be installed for dumping accumulated statistics
* configure.ac, src/unpack_armv7.S:
SSAT instruction required armv6, now we should work on all ARMs using a pair of shifts instead
2017-02-18 Alexis Ballier <aballier@gentoo.org>
* configure.ac:
configure: Restrict arm assembly to armv7 only.
ARM assembly in wavpack is armv7 only it seems.
I have reports this causes build failures on armv5: https://bugs.gentoo.org/show_bug.cgi?id=609168
2017-02-16 David Bryant <david@wavpack.com>
* cli/import_id3.c, cli/wvtag.c:
fix GitHub issue #19 (new dependency on wchar_t) by removing dependency
2017-01-22 David Bryant <david@wavpack.com>
* .travis.yml:
do more exhaustive testing for Travis (but should be faster)
2017-01-22 Stephen <stephengroat@users.noreply.github.com>
* .travis.yml:
enable travis ci build and testing (#17)
Create .travis.yml
fix for running tests
limit to smaller test suite
add quotes to get spaces in arg
remove linux clang builds
move to trusty for clang
2017-01-18 David Bryant <david@wavpack.com>
* ChangeLog:
refine change log and add updated plugins
* audition/cool_wv4.c, audition/readme.odt, audition/readme.pdf:
update Cool Edit / Audition filter to 3.1
* COPYING, license.txt, winamp/in_wv.c, winamp/installer/WavPackPlugin1.nsi:
update winamp to 2.8.0.3 and license dates
2017-01-17 David Bryant <david@wavpack.com>
* ChangeLog:
first pass at 5.1.0 changelog
* cli/Makefile.am, cli/import_id3.c, cli/wavpack.c:
fix Darwin build (iconv) and ptr warnings
improve --import-id3 console messaging
2017-01-16 David Bryant <david@wavpack.com>
* wavpackdll/wavpackdll.rc, wavpackexe/wavpack.vcproj, winamp/in_wv.c:
bump DLL version and fix MSVC build
* cli/utils.h, cli/wavpack.c, cli/wvgain.c, cli/wvtag.c, cli/wvunpack.c,
configure.ac, src/wavpack_version.h:
update version to 5.1.0 and bump some copyright dates
* src/pack.c:
do not write data in NEW_CONFIG_BLOCK for "do not care" bits in qmode
* src/unpack_dsd.c:
shorter DSD decimation filter with less HF rolloff and lower CPU use
2017-01-15 David Bryant <david@wavpack.com>
* doc/wavpack_doc.html:
update user manual for 5.1.0 and wvtag
2017-01-14 David Bryant <david@wavpack.com>
* cli/wvtag.c:
allow multiple files on Windows, update "help"
* man/Makefile.am, man/wavpack.1, man/wavpack.xml, man/wvgain.1, man/wvgain.xml,
man/wvtag.1, man/wvtag.xml, man/wvunpack.1, man/wvunpack.xml:
add man page for wvtag and update the other man pages (--import-id3)
2017-01-13 David Bryant <david@wavpack.com>
* cli/Makefile.am, cli/wavpack.c:
add --import-id3 option to wavpack executable
(works with original DSF files and when transcoding)
* cli/import_id3.c, cli/wvtag.c:
refactor ID3 import code to calculate the total number of bytes being imported
- allow total size and item count to be returned even on dry runs
- plug a memory leak in the dry run
2017-01-11 David Bryant <david@wavpack.com>
* src/pack.c, src/unpack.c:
fix issue where noise-shaping falsely triggers lossy muting
- only in very rare cases (detected with pathological testing)
- also fix (again) macro that disables lossy muting
2017-01-08 David Bryant <david@wavpack.com>
* src/pack_utils.c:
fix regression causing non-byte-aligned audio (e.g., 12-bit)
to lose the actual reduced bit-depth indication (although
there was no effect on integrity or compression ratio)
2017-01-07 David Bryant <david@wavpack.com>
* cli/import_id3.c, cli/wvtag.c, wavpack.sln, wvtagexe/wvtag.vcproj:
add wvtag to MSVC build and fix warnings (and one mistake)
* src/open_filename.c:
fix MSVC build (broken by portability enhancements...sigh)
2017-01-06 David Bryant <david@wavpack.com>
* cli/Makefile.am, cli/import_id3.c, cli/wvtag.c:
new cli tool "wvtag" to manipulate APEv2 tags on existing WavPack files
(includes new facility to import ID3v2.3 tag items from Sony DSF files)
* cli/wavpack.c:
add --pre-quantize-round to settings tag
* cli/wvgain.c, cli/wvunpack.c:
copy TextToUTF8() BOM fix into other modules that use it for filename lists
|