Change Log Report

Total number of changed sets: 1

Changes between 2008-01-31 and 2008-03-02

Total commits: 19
Total number of files changed: 18

Timestamp Author Details
2008-02-21 22:25:21 bmacnaughton src/java/org/kc7bfi/jflac/metadata/VorbisString.java v 1.10

Perform UTF-8 conversion for Vorbis comment strings
2008-02-21 22:24:01 bmacnaughton src/java/org/kc7bfi/jflac/metadata/VorbisComment.java v 1.15

Added VendorString to the toString method
2008-02-21 22:22:59 bmacnaughton src/java/org/kc7bfi/jflac/metadata/Picture.java v 1.1

Implemented PICTURE metadata block
2008-02-21 22:21:44 bmacnaughton src/java/org/kc7bfi/jflac/metadata/Metadata.java v 1.5

Change metadata UNKNOWN to PICTURE
2008-02-21 22:18:54 bmacnaughton src/java/org/kc7bfi/jflac/FLACDecoder.java v 1.13

Added PICTURE type metadata processing
2008-02-16 15:44:25 florian .cvsignore v 1.6

ignore the build directory
2008-02-16 15:44:08 florian .classpath v 1.5

for now, do not use the unit tests that aren't implemented
2008-02-16 15:43:35 florian META-INF/services/javax.sound.sampled.spi.FormatConversionProvider v 1.2

fix typo
2008-02-16 15:43:00 florian src/test/unit_tests/TestJavaSoundSPI.java v 1.1

add a unit test for testing the consistency of the conversion provider discovery through Java Sound. Also verifies the bug that 24-bit FLAC files couldn't be decoded with Java Sound.
2008-02-16 15:42:04 florian src/java/org/kc7bfi/jflac/util/RingBuffer.java v 1.5

make multi-threaded variables volatile
2008-02-16 15:41:39 florian src/java/org/kc7bfi/jflac/util/ByteData.java v 1.3

add a setLen() method in order to be able to reuse this array
2008-02-16 15:41:12 florian src/java/org/kc7bfi/jflac/sound/spi/RingedAudioInputStream.java v 1.4

allow synchronous use of the fill() method
2008-02-16 15:40:42 florian src/java/org/kc7bfi/jflac/sound/spi/FlacFormatConvertionProvider.java v 1.5

- rename to FlacFormatConversionProvider
2008-02-16 15:40:20 florian src/java/org/kc7bfi/jflac/sound/spi/FlacFormatConversionProvider.java v 1.1

- redesign the format matching:
- harden it to not erronously support illegal formats
- do not report 16-bits even for other bit depths
- rename from FlacFormatConvertionProvider
2008-02-16 15:38:29 florian src/java/org/kc7bfi/jflac/sound/spi/FlacAudioFormat.java v 1.1

add for Java 5.0-style properties support
2008-02-16 15:38:00 florian src/java/org/kc7bfi/jflac/sound/spi/FlacAudioFileReader.java v 1.8

add debugging
2008-02-16 15:37:39 florian src/java/org/kc7bfi/jflac/sound/spi/Flac2PcmAudioInputStream.java v 1.6

- do not use a thread for decoding, do it synchronously in the fill() method
- use optimized frame-by-frame decoding
- cleanup
2008-02-16 15:35:59 florian src/java/org/kc7bfi/jflac/metadata/StreamInfo.java v 1.21

fix typo
2008-02-16 15:35:41 florian src/java/org/kc7bfi/jflac/FLACDecoder.java v 1.12

- allow more optimized access to the decoder
- allow frame by frame decoding