Short: Lossless audio codec Author: Josh Coalson Uploader: Diego Casorran Type: mus/edit Version: 1.1.0 Requires: ixemul.library Architecture: m68k-amigaos FLAC (http://flac.sourceforge.net/) is an Open Source lossless audio codec developed by Josh Coalson. FLAC is comprised of * `libFLAC', a library which implements reference encoders and decoders, and a metadata interface * `libFLAC++', a C++ object wrapper library around libFLAC * `libOggFLAC' and `libOggFLAC++', which provide encoders and decoders for FLAC streams in an Ogg container * `flac', a command-line program for encoding and decoding files * `metaflac', a command-line program for editing FLAC metadata * player plugins for XMMS and Winamp * user and API documentation The libraries (libFLAC, libFLAC++, libOggFLAC, and libOggFLAC++) are licensed under the GNU Lesser General Public License (LGPL). All other programs and plugins are licensed under the GNU General Public License (GPL). The documentation is licensed under the GNU Free Documentation License (GFDL). =============================================================================== FLAC - 1.0.5_beta2 - Contents =============================================================================== - Introduction - Building in a GNU environment - Building with Makefile.lite - Building with MSVC - Building on Mac OS X - Note to embedded developers =============================================================================== Introduction =============================================================================== @@@@ NOTE @@@@ This is a beta release. The CUESHEET metadata block specification has not been finalized. This is the source release for the FLAC project. See doc/index.html for full documentation. A brief description of the directory tree: doc/ the HTML documentation flac.pbproj/ the Mac OS X Project Builder project include/ public include files for libFLAC and libFLAC++ man/ the man page for `flac' src/ the source code and private headers test/ the test scripts =============================================================================== Building in a GNU environment =============================================================================== FLAC uses autoconf and libtool for configuring and building. Better documentation for these will be forthcoming, but in general, this should work: ./configure && make && make check && make install The 'make check' step is optional; omit it to skip all the tests, which can take several hours and use around 70-80 megs of disk space. NOTE: Despite our best efforts it's entirely possible to have problems when using older versions of autoconf, automake, or libtool. If you have the latest versions and still can't get it to work, see the next section on Makefile.lite. There are a few FLAC-specific arguments you can give to `configure': --enable-debug : Builds everything with debug symbols and some extra (and more verbose) error checking. --disable-asm-optimizations : Disables the compilation of the assembly routines. Many routines have assembly versions for speed and `configure' is pretty good about knowing what is supported, but you can use this option to build only from the C sources. --enable-sse : If you are building for an x86 CPU that supports SSE instructions, you can enable some of the faster routines if your operating system also supports SSE instructions. flac can tell if the CPU supports the instructions but currently has no way to test if the OS does, so if it does, you must pass this argument to configure to use the SSE routines. If flac crashes when built with this option you will have to go back and configure without --enable-sse. Note that --disable-asm-optimizations implies --disable-sse. --enable-local-xmms-plugin : Installs the FLAC XMMS plugin in $HOME/.xmms/Plugins, instead of the global XMMS plugin area (usually /usr/lib/xmms/Input). --with-ogg= --with-id3lib= --with-xmms-prefix= --with-libiconv-prefix= Use these if you have these packages but configure can't find them. If you want to build completely from scratch (i.e. starting with just configure.in and Makefile.am) you should be able to just run 'autogen.sh' but make sure and read the comments in that file first. =============================================================================== Building with Makefile.lite =============================================================================== There is a more lightweight build system for do-it-yourself-ers. It is also useful if configure isn't working, which may be the case since lately we've had some problems with different versions of automake and libtool. The Makefile.lite system should work on GNU systems with few or no adjustments. From the top level just 'make -f Makefile.lite'. You can specify zero or one optional target from 'release', 'debug', 'test', or 'clean'. The default is 'release'. There is no 'install' target but everything you need will end up in the obj/ directory. If you are not on an x86 system or you don't have nasm, you may have to change the DEFINES in src/libFLAC/Makefile.lite. If you don't have nasm, remove -DFLAC__HAS_NASM. If your target is not an x86, change -DFLAC__CPU_IA32 to -DFLAC__CPU_UNKNOWN. =============================================================================== Building with MSVC =============================================================================== There are two ways to build with MSVC: 1. Project Files ---------------- Prerequisite: you must have the Ogg libraries installed as described later. Prerequisite: you must have nasm installed, and have the environment variable FLAC_NASM set to the full path to nasmw.exe, e.g C:\nasm\nasmw.exe To build everything, run Developer Studio, do File|Open Workspace, and open FLAC.dsw. Switch to the 'Files' tab, select 'all files' from the tree, do right-mouse-button and 'Set as active project'. The default build mode will probably be Debug; to change to release do Build|Set Active Configuration and select 'all - Win32 Release'. Then do Project|Build. This will build all libraries both statically (e.g. obj\debug\lib\libFLAC_static.lib) and as DLLs (e.g. obj\debug\bin\libFLAC.dll), and it will build all binaries, statically linked (e.g. obj\debug\bin\flac.exe). 2. nmake -------- Prerequisite: you must have the Ogg libraries installed as described later. Prerequisite: you must have nasm installed and nasmw.exe must be in your path. To build everything, open a Command window, cd to the top-level directory (where this README is) and do nmake /f Makefile.vc This will recur into all the source directories in the right order and build everything. The libraries will be build only as static libs. You need only to install the binaries. To clean up everything you can do nmake /f Makefile.vc clean from the top level directory, or any directory which has a Makefile.vc Everything will end up in the 'obj' directory. DLLs and .exe files are all that are needed and can be copied to an installation area and added to the PATH. The plugins have to be copied to their appropriate place in the player area. For Winamp2 this is \Plugins and for Winamp3 this is \Wacs. By default the code is configured with Ogg support. Before building FLAC you will need to get the Ogg source distribution (see http://xiph.org/ogg/vorbis/download/), build ogg_static.lib (load and build win32\ogg_static.dsp), copy ogg_static.lib into FLAC's 'obj\release\lib' directory, and copy the entire include\ogg tree into FLAC's 'include' directory (so that there is an 'ogg' directory in FLAC's 'include' directory with the files ogg.h, os_types.h and config_types.h). =============================================================================== Building on Mac OS X =============================================================================== If you have Fink, the GNU flow above should work. Otherwise, there is a Project Builder project in the top-level source directory to build libFLAC and the command-line utilities on Mac OS X. In a terminal, cd to the top-level directory (the one that contains this README file) and type: pbxbuild -alltargets This will create everything and leave it in the build/ directory. Don't worry about the rest of the stuff that is in build/ or the stuff that was already there before building. There currently is no install procedure; you will have to manually copy the tools to wherever you need them. =============================================================================== Note to embedded developers =============================================================================== libFLAC has grown larger over time as more functionality has been included, but much of it may be unnecessary for a particular embedded implementation. Unused parts may be pruned by some simple editing of configure.in and src/libFLAC/Makefile.am; the following dependency graph shows which modules may be pruned without breaking things further down: file_encoder.h stream_encoder.h format.h file_decoder.h seekable_stream_decoder.h stream_decoder.h format.h metadata.h format.h There is a section dedicated to embedded use in the libFLAC API HTML documentation (see doc/html/api/index.html). ø°`ø°`ø°`ø°`ø°`ø°`ø°`ø°`ø°`ø°`ø°`ø°`ø°`ø°`ø°`ø°`ø°`ø°`ø°`ø°`ø°`ø°`ø°`ø°`ø°`ø°` `°ø`°ø`°ø`°ø`°ø`°ø`°ø`°ø`°ø`°ø`°ø`°ø`°ø`°ø`°ø`°ø`°ø`°ø`°ø`°ø`°ø`°ø`°ø`°ø`°ø`°ø Latest update of this package can be found at http://amiga.sourceforge.net/ ø°`ø°`ø°`ø°`ø°`ø°`ø°`ø°`ø°`ø°`ø°`ø°`ø°`ø°`ø°`ø°`ø°`ø°`ø°`ø°`ø°`ø°`ø°`ø°`ø°`ø°` `°ø`°ø`°ø`°ø`°ø`°ø`°ø`°ø`°ø`°ø`°ø`°ø`°ø`°ø`°ø`°ø`°ø`°ø`°ø`°ø`°ø`°ø`°ø`°ø`°ø`°ø ·············································A·r·c·h·i·v·e··C·o·n·t·e·n·t·s·· LhA Freeware Version 2.2 Copyright © 1991-94 by Stefan Boberg. Copyright © 1998-2000 by Jim Cooper and David Tritscher. Listing of archive 'flac-1.1.0.lha': Original Packed Ratio Date Time Name -------- ------- ----- --------- -------- ------------- 5576 1061 80.9% 23-Nov-02 01:07:16 +cuesheet.ok 1955 807 58.7% 10-Jan-03 21:25:38 +Makefile.am 14552 4511 69.0% 25-Jan-03 18:42:56 +Makefile.in 1929 730 62.1% 02-Jan-03 07:19:02 +Makefile.lite 667 189 71.6% 15-Jan-03 06:40:54 +metaflac.flac.in 617 145 76.4% 15-Jan-03 21:01:36 +metaflac.flac.ok 1308 734 43.8% 14-Jan-03 07:18:16 +test_libFLAC.sh 32228 14939 53.6% 15-Mar-03 00:55:12 +test_cuesheet 312748 114607 63.3% 15-Mar-03 01:12:36 +test_libFLAC 392108 144095 63.2% 15-Mar-03 01:31:32 +test_libFLAC++ 164172 62159 62.1% 15-Mar-03 01:35:50 +test_libOggFLAC 200660 78629 60.8% 15-Mar-03 01:40:02 +test_libOggFLAC++ 41364 13322 67.7% 15-Mar-03 01:41:54 +test_streams 2511 916 63.5% 02-Jan-03 07:19:02 +Makefile.am 9029 3165 64.9% 25-Jan-03 18:42:56 +Makefile.in 3196 1382 56.7% 14-Jan-03 07:17:56 +test_bins.sh 22914 3723 83.7% 14-Jan-03 07:18:00 +test_flac.sh 2737 1141 58.3% 14-Jan-03 07:18:04 +test_grabbag.sh 1340 739 44.8% 14-Jan-03 07:18:08 +test_libFLAC++.sh 1388 746 46.2% 14-Jan-03 07:18:22 +test_libOggFLAC++.sh 1347 738 45.2% 14-Jan-03 07:18:26 +test_libOggFLAC.sh 8411 1935 76.9% 15-Jan-03 21:02:06 +test_metaflac.sh 9010 2120 76.4% 14-Jan-03 07:18:38 +test_streams.sh 101 81 19.8% 23-Nov-02 00:48:50 +bad.000.CATALOG_multiple.cue 66 66 0.0% 23-Nov-02 00:48:52 +bad.001.CATALOG_missing_number.cue 196 79 59.6% 23-Nov-02 00:48:54 +bad.002.CATALOG_number_too_long.cue 79 76 3.7% 23-Nov-02 00:48:54 +bad.003.CATALOG_not_13_digits.cue 85 74 12.9% 23-Nov-02 00:48:56 +bad.030.FLAGS_multiple.cue 67 67 0.0% 23-Nov-02 00:48:58 +bad.031.FLAGS_wrong_place_1.cue 71 68 4.2% 23-Nov-02 00:48:58 +bad.032.FLAGS_wrong_place_2.cue 89 74 16.8% 23-Nov-02 00:49:00 +bad.060.INDEX_wrong_place.cue 60 60 0.0% 23-Nov-02 00:49:00 +bad.061.INDEX_missing_number.cue 66 66 0.0% 23-Nov-02 00:49:02 +bad.062.INDEX_invalid_number_1.cue 71 70 1.4% 23-Nov-02 00:49:04 +bad.063.first_INDEX_not_0_or_1.cue 93 73 21.5% 23-Nov-02 00:49:04 +bad.064.INDEX_num_non_sequential.cue 2272 482 78.7% 23-Nov-02 00:49:06 +bad.065.INDEX_num_out_of_range.cue 63 63 0.0% 23-Nov-02 00:49:08 +bad.066.INDEX_missing_offset.cue 71 69 2.8% 23-Nov-02 00:49:08 +bad.067.INDEX_illegal_offset.cue 66 66 0.0% 23-Nov-02 00:49:10 +bad.068.INDEX_cdda_illegal_offset.cue 71 70 1.4% 23-Nov-02 00:49:12 +bad.069.nonzero_first_INDEX.cue 95 76 20.0% 23-Nov-02 00:49:12 +bad.070.INDEX_offset_not_ascending_1.cue 118 78 33.8% 23-Nov-02 00:49:14 +bad.071.INDEX_offset_not_ascending_2.cue 101 79 21.7% 23-Nov-02 00:49:14 +bad.110.ISRC_multiple.cue 75 73 2.6% 23-Nov-02 00:49:16 +bad.111.ISRC_wrong_place_1.cue 79 73 7.5% 23-Nov-02 00:49:18 +bad.112.ISRC_wrong_place_2.cue 66 65 1.5% 23-Nov-02 00:49:18 +bad.113.ISRC_missing_number.cue 79 75 5.0% 23-Nov-02 00:49:20 +bad.114.ISRC_invalid_number.cue 35 35 0.0% 23-Nov-02 00:49:20 +bad.130.TRACK_missing_INDEX_01_1.cue 57 57 0.0% 23-Nov-02 00:49:22 +bad.131.TRACK_missing_INDEX_01_2.cue 74 66 10.8% 23-Nov-02 00:49:22 +bad.132.TRACK_missing_INDEX_01_3.cue 96 71 26.0% 23-Nov-02 00:49:26 +bad.133.TRACK_missing_INDEX_01_4.cue 27 27 0.0% 23-Nov-02 00:49:26 +bad.134.TRACK_missing_number.cue 39 39 0.0% 23-Nov-02 00:51:08 +bad.135.TRACK_invalid_number_1.cue 34 34 0.0% 23-Nov-02 00:51:10 +bad.136.TRACK_invalid_number_2.cue 36 36 0.0% 23-Nov-02 00:51:14 +bad.137.TRACK_cdda_out_of_range.cue 107 72 32.7% 23-Nov-02 01:03:32 +bad.138.TRACK_num_non_sequential.cue 29 29 0.0% 23-Nov-02 00:51:30 +bad.139.TRACK_missing_type.cue 18 18 0.0% 23-Nov-02 00:52:42 +bad.140.no_TRACKs.cue 18 18 0.0% 23-Nov-02 00:55:44 +bad.200.FLAC_leadin_missing_offset.cue 25 25 0.0% 23-Nov-02 00:56:10 +bad.201.FLAC_leadin_illegal_offset.cue 22 22 0.0% 23-Nov-02 00:56:32 +bad.202.FLAC_leadin_cdda_illegal_offset.cue 90 61 32.2% 23-Nov-02 00:57:40 +bad.230.FLAC_leadout_multiple.cue 20 20 0.0% 23-Nov-02 00:59:24 +bad.231.FLAC_leadout_missing_track.cue 26 26 0.0% 23-Nov-02 00:59:22 +bad.232.FLAC_leadout_illegal_track.cue 23 23 0.0% 23-Nov-02 01:00:34 +bad.233.FLAC_leadout_missing_offset.cue 30 30 0.0% 23-Nov-02 01:00:44 +bad.234.FLAC_leadout_illegal_offset.cue 33 33 0.0% 23-Nov-02 01:02:06 +bad.235.FLAC_leadout_offset_not_211680000.cue 11231 4488 60.0% 15-Mar-03 02:10:34 +flac.1 7762 2851 63.2% 15-Mar-03 02:10:36 +metaflac.1 4086 1394 65.8% 15-Mar-03 02:12:52 +libFLAC++.m4 3836 1348 64.8% 15-Mar-03 02:11:52 +libFLAC.m4 4311 1408 67.3% 15-Mar-03 02:16:54 +libOggFLAC++.m4 4072 1368 66.4% 15-Mar-03 02:16:18 +libOggFLAC.m4 43020 4810 88.8% 15-Jan-03 20:56:14 +project.pbxproj 57 57 0.0% 23-Nov-02 01:06:46 +good.000.cue 3901 951 75.6% 23-Nov-02 00:49:32 +good.001.cue 9150 3254 64.4% 14-Mar-03 23:55:54 +Makefile 14484 4563 68.4% 14-Mar-03 23:55:46 +Makefile 6073 2396 60.5% 15-Mar-03 02:09:28 +all.h 1200 640 46.6% 15-Mar-03 02:09:28 +assert.h 1183 635 46.3% 15-Mar-03 02:09:30 +export.h 23801 4565 80.8% 15-Mar-03 02:09:32 +file_decoder.h 506452 125555 75.2% 15-Mar-03 02:12:40 +libFLAC++.a 653 379 41.9% 15-Mar-03 02:12:32 +libFLAC++.la 759586 260009 65.7% 15-Mar-03 02:11:38 +libFLAC.a 647 375 42.0% 15-Mar-03 02:11:30 +libFLAC.la 119098 28773 75.8% 15-Mar-03 02:16:44 +libOggFLAC++.a 662 381 42.4% 15-Mar-03 02:16:42 +libOggFLAC++.la 67160 21225 68.3% 15-Mar-03 02:16:06 +libOggFLAC.a 686 393 42.7% 15-Mar-03 02:16:04 +libOggFLAC.la 1424 776 45.5% 15-Mar-03 02:09:50 +all.h 12448 2363 81.0% 15-Mar-03 02:09:50 +decoder.h 32316 5411 83.2% 15-Mar-03 02:09:34 +file_encoder.h 30001 7232 75.8% 15-Mar-03 02:09:36 +format.h 67616 13092 80.6% 15-Mar-03 02:09:38 +metadata.h 1616 707 56.2% 15-Mar-03 02:09:38 +ordinals.h 35796 6099 82.9% 15-Mar-03 02:09:40 +seekable_stream_decoder.h 36100 6091 83.1% 15-Mar-03 02:09:42 +seekable_stream_encoder.h 33312 7168 78.4% 15-Mar-03 02:09:42 +stream_decoder.h 41650 9452 77.3% 15-Mar-03 02:09:44 +stream_encoder.h 13571 2324 82.8% 15-Mar-03 02:09:52 +encoder.h 1189 636 46.5% 15-Mar-03 02:09:54 +export.h 34691 5942 82.8% 15-Mar-03 02:09:56 +metadata.h 1157 626 45.8% 15-Mar-03 02:10:12 +all.h 5164 1782 65.4% 15-Mar-03 02:10:14 +decoder.h 5928 1961 66.9% 15-Mar-03 02:10:14 +encoder.h 1319 702 46.7% 15-Mar-03 02:10:02 +all.h 1203 637 47.0% 15-Mar-03 02:10:02 +export.h 22473 3857 82.8% 15-Mar-03 02:10:04 +stream_decoder.h 29396 4627 84.2% 15-Mar-03 02:10:06 +stream_encoder.h 1540 879 42.9% 15-Jan-03 06:33:42 +AUTHORS 18109 6541 63.8% 08-Jun-01 00:12:28 +COPYING.FDL 17985 7007 61.0% 10-Dec-00 04:10:10 +COPYING.GPL 25264 9292 63.2% 18-Jun-01 02:34:08 +COPYING.LGPL 1219 641 47.4% 15-Mar-03 02:10:16 +export.h 37783 10709 71.6% 15-Jan-03 20:56:10 +Doxyfile 455092 35039 92.3% 25-Jan-03 18:45:04 +FLAC.tag 70707 13176 81.3% 16-Jan-03 08:58:22 +comparison.html 8351 2078 75.1% 21-Jan-03 05:50:06 +developers.html 1202204 784080 34.7% 15-Mar-03 00:46:02 +flac 11231 4488 60.0% 15-Jan-03 06:42:42 +flac.1 22972 5883 74.3% 11-Jan-03 06:09:06 +flac.sgml 1117688 744559 33.3% 15-Mar-03 00:51:00 +metaflac 7762 2851 63.2% 15-Jan-03 06:42:42 +metaflac.1 16009 3956 75.2% 02-Jan-03 23:34:16 +metaflac.sgml 9232 3641 60.5% 25-Jan-03 18:13:56 +README 2378 2378 0.0% 25-Jan-03 18:44:44 +doxygen.gif 7063 1289 81.7% 25-Jan-03 18:44:44 +files.html 27048 4110 84.8% 25-Jan-03 18:44:46 +FLAC++_2decoder_8h-source.html 5616 2298 59.0% 25-Jan-03 18:44:44 +index.html 54832 14295 73.9% 22-Jan-03 23:02:14 +documentation.html 9041 2303 74.5% 22-Jan-03 22:25:14 +download.html 10389 3343 67.8% 14-Jan-03 09:04:28 +features.html 59619 14115 76.3% 14-Jan-03 21:00:00 +format.html 6771 1770 73.8% 13-Jan-03 19:37:50 +goals.html 8830 2019 77.1% 02-Jan-03 07:18:50 +id.html 23404 4540 80.6% 15-Jan-03 20:54:54 +index.html 30052 9542 68.2% 15-Jan-03 20:55:06 +news.html 3867 1391 64.0% 25-Jan-03 18:44:46 +assert_8h-source.html 3365 1298 61.4% 25-Jan-03 18:44:46 +FLAC++_2all_8h-source.html 31034 4848 84.3% 25-Jan-03 18:44:46 +FLAC++_2encoder_8h-source.html 4121 1391 66.2% 25-Jan-03 18:44:46 +FLAC_2all_8h-source.html 3277 1285 60.7% 25-Jan-03 18:44:46 +OggFLAC++_2all_8h-source.html 10753 2566 76.1% 25-Jan-03 18:44:46 +OggFLAC++_2decoder_8h-source.html 12765 2797 78.0% 25-Jan-03 18:44:46 +OggFLAC++_2encoder_8h-source.html 3502 1345 61.5% 25-Jan-03 18:44:46 +OggFLAC_2all_8h-source.html 17243 3147 81.7% 25-Jan-03 18:44:46 +file__decoder_8h-source.html 21244 3430 83.8% 25-Jan-03 18:44:46 +file__encoder_8h-source.html 4163 1394 66.5% 25-Jan-03 18:44:46 +FLAC++_2export_8h-source.html 4157 1395 66.4% 25-Jan-03 18:44:46 +FLAC_2export_8h-source.html 47381 6650 85.9% 25-Jan-03 18:44:46 +format_8h-source.html 29781 4249 85.7% 25-Jan-03 18:44:46 +metadata_8h-source.html 4201 1403 66.6% 25-Jan-03 18:44:46 +OggFLAC++_2export_8h-source.html 4177 1397 66.5% 25-Jan-03 18:44:46 +OggFLAC_2export_8h-source.html 71299 7602 89.3% 25-Jan-03 18:44:46 ++_2metadata_8h-source.html 19728 3299 83.2% 25-Jan-03 18:44:48 +FLAC_2stream__decoder_8h-source.html 24763 3794 84.6% 25-Jan-03 18:44:48 +FLAC_2stream__encoder_8h-source.html 17792 3021 83.0% 25-Jan-03 18:44:48 +OggFLAC_2stream__decoder_8h-source.html 5929 1594 73.1% 25-Jan-03 18:44:46 +ordinals_8h-source.html 27304 3761 86.2% 25-Jan-03 18:44:48 +seekable__stream__decoder_8h-source.html 25387 3681 85.5% 25-Jan-03 18:44:48 +seekable__stream__encoder_8h-source.html 14582 2056 85.9% 25-Jan-03 18:44:48 +file__decoder_8h.html 18810 2332 87.6% 25-Jan-03 18:44:48 +file__encoder_8h.html 2341 947 59.5% 25-Jan-03 18:44:48 +FLAC++_2decoder_8h.html 2435 957 60.6% 25-Jan-03 18:44:48 +FLAC++_2encoder_8h.html 26097 3103 88.1% 25-Jan-03 18:44:48 +format_8h.html 29367 3065 89.5% 25-Jan-03 18:44:48 +metadata_8h.html 2236 932 58.3% 25-Jan-03 18:44:48 +OggFLAC++_2decoder_8h.html 2333 944 59.5% 25-Jan-03 18:44:48 +OggFLAC++_2encoder_8h.html 22270 3346 84.9% 25-Jan-03 18:44:48 +OggFLAC_2stream__encoder_8h-source.html 2352 976 58.5% 25-Jan-03 18:44:48 ++_2metadata_8h.html 9431 1318 86.0% 25-Jan-03 18:44:50 +annotated.html 15669 2113 86.5% 25-Jan-03 18:44:50 +FLAC_2stream__decoder_8h.html 21400 2569 87.9% 25-Jan-03 18:44:50 +FLAC_2stream__encoder_8h.html 14846 1987 86.6% 25-Jan-03 18:44:50 +OggFLAC_2stream__decoder_8h.html 19802 2261 88.5% 25-Jan-03 18:44:50 +OggFLAC_2stream__encoder_8h.html 23220 2424 89.5% 25-Jan-03 18:44:48 +seekable__stream__decoder_8h.html 22480 2502 88.8% 25-Jan-03 18:44:48 +seekable__stream__encoder_8h.html 8683 1431 83.5% 25-Jan-03 18:44:50 +classes.html 16689 2507 84.9% 25-Jan-03 18:44:50 +functions.html 6687 1329 80.1% 25-Jan-03 18:44:50 +hierarchy.html 2159 737 65.8% 25-Jan-03 18:44:50 +structFLAC____EntropyCodingMethod-members.html 2549 1059 58.4% 25-Jan-03 18:44:50 +structFLAC____EntropyCodingMethod.html 1955 733 62.5% 25-Jan-03 18:44:50 +structFLAC____EntropyCodingMethod__PartitionedRice-members.html 3888 1250 67.8% 25-Jan-03 18:44:50 +structFLAC____EntropyCodingMethod__PartitionedRice.html 2336 768 67.1% 25-Jan-03 18:44:50 +structFLAC____EntropyCodingMethod__PartitionedRiceContents-members.html 4707 1304 72.2% 25-Jan-03 18:44:50 +structFLAC____EntropyCodingMethod__PartitionedRiceContents.html 1809 720 60.1% 25-Jan-03 18:44:50 +structFLAC____FileDecoder-members.html 2383 1001 57.9% 25-Jan-03 18:44:50 +structFLAC____FileDecoder.html 1809 721 60.1% 25-Jan-03 18:44:50 +structFLAC____FileEncoder-members.html 2383 1001 57.9% 25-Jan-03 18:44:50 +structFLAC____FileEncoder.html 1946 723 62.8% 25-Jan-03 18:44:50 +structFLAC____Frame-members.html 2535 1038 59.0% 25-Jan-03 18:44:50 +structFLAC____Frame.html 1535 696 54.6% 25-Jan-03 18:44:50 +structFLAC____FrameFooter-members.html 2710 1184 56.3% 25-Jan-03 18:44:50 +structFLAC____FrameFooter.html 3409 831 75.6% 25-Jan-03 18:44:50 +structFLAC____FrameHeader-members.html 8019 1654 79.3% 25-Jan-03 18:44:50 +structFLAC____FrameHeader.html 2567 1022 60.1% 25-Jan-03 18:44:50 +structFLAC____SeekableStreamDecoder.html 1919 730 61.9% 25-Jan-03 18:44:50 +structFLAC____SeekableStreamDecoder-members.html 1919 732 61.8% 25-Jan-03 18:44:50 +structFLAC____SeekableStreamEncoder-members.html 2567 1023 60.1% 25-Jan-03 18:44:50 +structFLAC____SeekableStreamEncoder.html 1831 723 60.5% 25-Jan-03 18:44:50 +structFLAC____StreamDecoder-members.html 2429 1010 58.4% 25-Jan-03 18:44:50 +structFLAC____StreamDecoder.html 2429 1009 58.4% 25-Jan-03 18:44:50 +structFLAC____StreamEncoder.html 1831 723 60.5% 25-Jan-03 18:44:50 +structFLAC____StreamEncoder-members.html 3887 830 78.6% 25-Jan-03 18:44:50 +structFLAC____StreamMetadata-members.html 6399 1602 74.9% 25-Jan-03 18:44:50 +structFLAC____StreamMetadata.html 1967 730 62.8% 25-Jan-03 18:44:50 +structFLAC____StreamMetadata__Application-members.html 2303 1010 56.1% 25-Jan-03 18:44:50 +structFLAC____StreamMetadata__Application.html 5974 1541 74.2% 25-Jan-03 18:44:50 +structFLAC____StreamMetadata__CueSheet.html 2676 1106 58.6% 25-Jan-03 18:44:56 +group__flacpp.html 2563 768 70.0% 25-Jan-03 18:44:50 +structFLAC____StreamMetadata__CueSheet-members.html 1905 733 61.5% 25-Jan-03 18:44:50 +structFLAC____StreamMetadata__CueSheet__Index-members.html 3515 1243 64.6% 25-Jan-03 18:44:50 +structFLAC____StreamMetadata__CueSheet__Index.html 3178 786 75.2% 25-Jan-03 18:44:50 +structFLAC____StreamMetadata__CueSheet__Track-members.html 7393 1585 78.5% 25-Jan-03 18:44:50 +structFLAC____StreamMetadata__CueSheet__Track.html 1606 710 55.7% 25-Jan-03 18:44:50 +structFLAC____StreamMetadata__Padding-members.html 2771 1186 57.1% 25-Jan-03 18:44:50 +structFLAC____StreamMetadata__Padding.html 2112 751 64.4% 25-Jan-03 18:44:50 +structFLAC____StreamMetadata__SeekPoint-members.html 4223 1279 69.7% 25-Jan-03 18:44:50 +structFLAC____StreamMetadata__SeekPoint.html 1955 732 62.5% 25-Jan-03 18:44:50 +structFLAC____StreamMetadata__SeekTable-members.html 2877 1230 57.2% 25-Jan-03 18:44:50 +structFLAC____StreamMetadata__SeekTable.html 2952 1105 62.5% 25-Jan-03 18:44:52 +group__flac.html 133281 13081 90.1% 25-Jan-03 18:44:56 +group__flac__stream__encoder.html 4029 811 79.8% 25-Jan-03 18:44:50 +structFLAC____StreamMetadata__StreamInfo-members.html 3580 1146 67.9% 25-Jan-03 18:44:50 +structFLAC____StreamMetadata__StreamInfo.html 1651 719 56.4% 25-Jan-03 18:44:50 +structFLAC____StreamMetadata__Unknown-members.html 2182 1013 53.5% 25-Jan-03 18:44:50 +structFLAC____StreamMetadata__Unknown.html 3051 1117 63.3% 25-Jan-03 18:44:50 +structFLAC____Subframe.html 2310 755 67.3% 25-Jan-03 18:44:50 +structFLAC____StreamMetadata__VorbisComment-members.html 2753 1073 61.0% 25-Jan-03 18:44:50 +structFLAC____StreamMetadata__VorbisComment.html 2065 741 64.1% 25-Jan-03 18:44:50 +structFLAC____StreamMetadata__VorbisComment__Entry-members.html 2389 1045 56.2% 25-Jan-03 18:44:50 +structFLAC____StreamMetadata__VorbisComment__Entry.html 2861 757 73.5% 25-Jan-03 18:44:50 +structFLAC____Subframe-members.html 2629 1119 57.4% 25-Jan-03 18:44:50 +structFLAC____Subframe__Constant.html 1576 708 55.0% 25-Jan-03 18:44:50 +structFLAC____Subframe__Constant-members.html 2193 753 65.6% 25-Jan-03 18:44:52 +structFLAC____Subframe__Fixed-members.html 4910 1368 72.1% 25-Jan-03 18:44:52 +structFLAC____Subframe__Fixed.html 2791 796 71.4% 25-Jan-03 18:44:52 +structFLAC____Subframe__LPC-members.html 6956 1511 78.2% 25-Jan-03 18:44:52 +structFLAC____Subframe__LPC.html 2644 1131 57.2% 25-Jan-03 18:44:52 +structFLAC____Subframe__Verbatim.html 84610 7243 91.4% 25-Jan-03 18:44:52 +group__flac__file__decoder.html 124177 8792 92.9% 25-Jan-03 18:44:52 +group__flac__file__encoder.html 1575 707 55.1% 25-Jan-03 18:44:52 +structFLAC____Subframe__Verbatim-members.html 1864 726 61.0% 25-Jan-03 18:44:52 +structOggFLAC____StreamDecoder-members.html 2468 1016 58.8% 25-Jan-03 18:44:52 +structOggFLAC____StreamDecoder.html 1864 727 60.9% 25-Jan-03 18:44:52 +structOggFLAC____StreamEncoder-members.html 2468 1016 58.8% 25-Jan-03 18:44:52 +structOggFLAC____StreamEncoder.html 86478 8340 90.3% 25-Jan-03 18:44:52 +group__flac__format.html 5387 1945 63.8% 25-Jan-03 18:44:52 +group__flac__metadata.html 4140 1420 65.7% 25-Jan-03 18:44:52 +group__flac__metadata__level0.html 42913 5685 86.7% 25-Jan-03 18:44:54 +group__flac__metadata__level1.html 52561 6373 87.8% 25-Jan-03 18:44:54 +group__flac__metadata__level2.html 101506 8498 91.6% 25-Jan-03 18:44:54 +group__flac__metadata__object.html 122983 9685 92.1% 25-Jan-03 18:44:54 +group__flac__seekable__stream__decoder.html 2998 1143 61.8% 25-Jan-03 18:44:56 +group__flacpp__decoder.html 1946 846 56.5% 25-Jan-03 18:44:56 +group__flacpp__seekable__stream__decoder.html 1877 831 55.7% 25-Jan-03 18:44:56 +group__flacpp__stream__decoder.html 3595 1248 65.2% 25-Jan-03 18:44:56 +group__flac__decoder.html 3161 1134 64.1% 25-Jan-03 18:44:56 +group__flac__encoder.html 135019 9740 92.7% 25-Jan-03 18:44:56 +group__flac__seekable__stream__encoder.html 89925 9525 89.4% 25-Jan-03 18:44:56 +group__flac__stream__decoder.html 2998 1144 61.8% 25-Jan-03 18:44:56 +group__flacpp__encoder.html 1861 829 55.4% 25-Jan-03 18:44:56 +group__flacpp__file__decoder.html 1861 829 55.4% 25-Jan-03 18:44:56 +group__flacpp__file__encoder.html 2979 1016 65.8% 25-Jan-03 18:44:58 +group__flacpp__metadata.html 13045 1908 85.3% 25-Jan-03 18:44:58 +group__flacpp__metadata__object.html 1946 847 56.4% 25-Jan-03 18:44:56 +group__flacpp__seekable__stream__encoder.html 1877 832 55.6% 25-Jan-03 18:44:56 +group__flacpp__stream__encoder.html 2161 944 56.3% 25-Jan-03 18:44:58 +group__flacpp__metadata__level0.html 2542 1148 54.8% 25-Jan-03 18:44:58 +group__flacpp__metadata__level1.html 3064 1289 57.9% 25-Jan-03 18:44:58 +group__flacpp__metadata__level2.html 2078 878 57.7% 25-Jan-03 18:44:58 +group__oggflac.html 2140 936 56.2% 25-Jan-03 18:44:58 +group__oggflac__decoder.html 2147 941 56.1% 25-Jan-03 18:44:58 +group__oggflac__encoder.html 79222 6184 92.1% 25-Jan-03 18:44:58 +group__oggflac__stream__decoder.html 8747 1943 77.7% 25-Jan-03 18:44:58 +classFLAC_1_1Decoder_1_1Stream.html 2026 854 57.8% 25-Jan-03 18:44:58 +group__oggflacpp.html 2461 1094 55.5% 25-Jan-03 18:44:58 +group__oggflacpp__decoder.html 2464 1097 55.4% 25-Jan-03 18:44:58 +group__oggflacpp__encoder.html 1907 837 56.1% 25-Jan-03 18:44:58 +group__oggflacpp__stream__decoder.html 1907 838 56.0% 25-Jan-03 18:44:58 +group__oggflacpp__stream__encoder.html 119592 7610 93.6% 25-Jan-03 18:44:58 +group__oggflac__stream__encoder.html 9676 1218 87.4% 25-Jan-03 18:44:58 +classFLAC_1_1Decoder_1_1File-members.html 8455 1813 78.5% 25-Jan-03 18:44:58 +classFLAC_1_1Decoder_1_1File.html 12728 1309 89.7% 25-Jan-03 18:44:58 +classFLAC_1_1Decoder_1_1SeekableStream-members.html 10101 1916 81.0% 25-Jan-03 18:44:58 +classFLAC_1_1Decoder_1_1SeekableStream.html 9125 1172 87.1% 25-Jan-03 18:44:58 +classFLAC_1_1Decoder_1_1Stream-members.html 12022 2104 82.4% 25-Jan-03 18:45:00 +classFLAC_1_1Encoder_1_1Stream.html 15235 1422 90.6% 25-Jan-03 18:45:00 +classFLAC_1_1Encoder_1_1File-members.html 12243 2094 82.8% 25-Jan-03 18:45:00 +classFLAC_1_1Encoder_1_1File.html 17042 1560 90.8% 25-Jan-03 18:45:00 +classFLAC_1_1Encoder_1_1SeekableStream-members.html 12824 2145 83.2% 25-Jan-03 18:45:00 +classFLAC_1_1Encoder_1_1SeekableStream.html 15136 1386 90.8% 25-Jan-03 18:45:00 +classFLAC_1_1Encoder_1_1Stream-members.html 20794 2765 86.7% 25-Jan-03 18:45:00 +classFLAC_1_1Metadata_1_1Prototype.html 19091 2127 88.8% 25-Jan-03 18:45:02 +classFLAC_1_1Metadata_1_1Padding.html 7580 1093 85.5% 25-Jan-03 18:45:00 +classFLAC_1_1Metadata_1_1Prototype-members.html 3358 3358 0.0% 25-Jan-03 18:45:00 +classFLAC_1_1Metadata_1_1Prototype.gif 14777 1489 89.9% 25-Jan-03 18:45:02 +classFLAC_1_1Metadata_1_1StreamInfo-members.html 902 902 0.0% 25-Jan-03 18:45:02 +classFLAC_1_1Metadata_1_1StreamInfo.gif 38043 2816 92.5% 25-Jan-03 18:45:02 +classFLAC_1_1Metadata_1_1StreamInfo.html 11818 1334 88.7% 25-Jan-03 18:45:02 +classFLAC_1_1Metadata_1_1Application-members.html 915 915 0.0% 25-Jan-03 18:45:02 +classFLAC_1_1Metadata_1_1Application.gif 20355 2278 88.8% 25-Jan-03 18:45:02 +classFLAC_1_1Metadata_1_1Application.html 10401 1256 87.9% 25-Jan-03 18:45:02 +classFLAC_1_1Metadata_1_1Padding-members.html 895 895 0.0% 25-Jan-03 18:45:02 +classFLAC_1_1Metadata_1_1Padding.gif 21337 2373 88.8% 25-Jan-03 18:45:02 +classFLAC_1_1Metadata_1_1SeekTable.html 11873 1359 88.5% 25-Jan-03 18:45:02 +classFLAC_1_1Metadata_1_1SeekTable-members.html 904 904 0.0% 25-Jan-03 18:45:02 +classFLAC_1_1Metadata_1_1SeekTable.gif 12475 1372 89.0% 25-Jan-03 18:45:02 +classFLAC_1_1Metadata_1_1VorbisComment-members.html 971 971 0.0% 25-Jan-03 18:45:02 +classFLAC_1_1Metadata_1_1VorbisComment.gif 22357 2459 89.0% 25-Jan-03 18:45:02 +classFLAC_1_1Metadata_1_1VorbisComment.html 7641 1765 76.9% 25-Jan-03 18:45:02 +classFLAC_1_1Metadata_1_1VorbisComment_1_1Entry.html 14418 1565 89.1% 25-Jan-03 18:45:02 +classFLAC_1_1Metadata_1_1CueSheet-members.html 896 896 0.0% 25-Jan-03 18:45:02 +classFLAC_1_1Metadata_1_1CueSheet.gif 23688 2665 88.7% 25-Jan-03 18:45:02 +classFLAC_1_1Metadata_1_1CueSheet.html 6263 1502 76.0% 25-Jan-03 18:45:04 +classFLAC_1_1Metadata_1_1CueSheet_1_1Track.html 9255 1018 89.0% 25-Jan-03 18:45:02 +classFLAC_1_1Metadata_1_1VorbisComment_1_1Entry-members.html 5327 1085 79.6% 25-Jan-03 18:45:04 +modules.html 8216 1049 87.2% 25-Jan-03 18:45:04 +classFLAC_1_1Metadata_1_1CueSheet_1_1Track-members.html 5975 974 83.6% 25-Jan-03 18:45:04 +classFLAC_1_1Metadata_1_1SimpleIterator-members.html 5318 1389 73.8% 25-Jan-03 18:45:04 +classFLAC_1_1Metadata_1_1SimpleIterator.html 10955 1310 88.0% 25-Jan-03 18:45:04 +classFLAC_1_1Metadata_1_1Unknown-members.html 889 889 0.0% 25-Jan-03 18:45:04 +classFLAC_1_1Metadata_1_1Unknown.gif 19771 2294 88.3% 25-Jan-03 18:45:04 +classFLAC_1_1Metadata_1_1Unknown.html 4297 900 79.0% 25-Jan-03 18:45:04 +classFLAC_1_1Metadata_1_1Chain-members.html 4104 1265 69.1% 25-Jan-03 18:45:04 +classFLAC_1_1Metadata_1_1Chain.html 5262 929 82.3% 25-Jan-03 18:45:04 +classFLAC_1_1Metadata_1_1Iterator-members.html 5077 1354 73.3% 25-Jan-03 18:45:04 +classFLAC_1_1Metadata_1_1Iterator.html 10082 1207 88.0% 25-Jan-03 18:45:04 +classOggFLAC_1_1Decoder_1_1Stream-members.html 8334 1723 79.3% 25-Jan-03 18:45:04 +classOggFLAC_1_1Decoder_1_1Stream.html 15956 1448 90.9% 25-Jan-03 18:45:04 +classOggFLAC_1_1Encoder_1_1Stream-members.html 12408 2119 82.9% 25-Jan-03 18:45:04 +classOggFLAC_1_1Encoder_1_1Stream.html 1802 525 70.8% 25-Jan-03 18:45:04 +doxygen.css 83315 8236 90.1% 25-Jan-03 18:45:04 +globals.html 3356 1304 61.1% 24-Jan-03 05:11:52 +authors.html 64192 13121 79.5% 24-Jan-03 05:11:54 +comparison.html 4074 1673 58.9% 24-Jan-03 05:11:54 +developers.html 37564 13832 63.1% 24-Jan-03 05:11:54 +documentation.html 4737 2007 57.6% 24-Jan-03 05:11:54 +download.html 7617 3272 57.0% 24-Jan-03 05:11:54 +features.html 61 61 0.0% 16-Jul-02 16:09:52 +1x1.gif 2371 2371 0.0% 16-Jul-02 16:09:52 +cafebug.gif 3059 3059 0.0% 16-Jul-02 16:09:52 +logo.jpg 47364 14619 69.1% 24-Jan-03 05:11:54 +format.html 3936 1615 58.9% 24-Jan-03 05:11:54 +goals.html 4399 1759 60.0% 24-Jan-03 05:11:54 +id.html 6281 2685 57.2% 24-Jan-03 05:11:54 +index.html 5796 2135 63.1% 24-Jan-03 05:11:54 +links.html 15719 6141 60.9% 24-Jan-03 05:11:54 +news.html -------- ------- ----- --------- -------- 9458920 3159527 66.5% Operation successful. _____________________________ .Readme created with: MRea \ ============================================================================== >»>»>»>»> Some additional info about this archive: Source: http://prdownloads.sf.net/amiga/flac-1.1.0.lha?download FileSize: 3186490 Bytes CRC: F4B494A6 MD5: 97FF5FD8F9DB2599FC0BA820B37F1056 SHA: 80CEE3A8FB653FD7AD7026D1C3A4FF6E1E9A1AAE ==============================================================================